Last active
December 15, 2015 06:39
-
-
Save nisaacson/5218340 to your computer and use it in GitHub Desktop.
Sets up a service to run a persistant fleet drone on SmartOS. On line 26 there is a command to startDrone.sh. This is a simple script which runs a fleet drone and is included here See https://github.com/isaacs/joyent-node-on-smart-example for instructions on how to install a configuration xml file like this one on SmartOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1"> | |
<service_bundle type="manifest" name="fleet-drone-service"> | |
<service name="site/fleet-drone-service" type="service" version="1"> | |
<create_default_instance enabled="true"/> | |
<single_instance/> | |
<dependency name="network" grouping="require_all" restart_on="refresh" type="service"> | |
<service_fmri value="svc:/milestone/network:default"/> | |
</dependency> | |
<dependency name="filesystem" grouping="require_all" restart_on="refresh" type="service"> | |
<service_fmri value="svc:/system/filesystem/local"/> | |
</dependency> | |
<method_context working_directory="/home/node/fleet/drone"> | |
<method_credential user="node" group="staff" privileges='basic,net_privaddr' /> | |
<method_environment> | |
<envvar name="PATH" value="/home/node/local/bin:/opt/local/bin:/usr/local/bin:/usr/bin:/usr/sbin:/bin"/> | |
<envvar name="HOME" value="/home/node"/> | |
</method_environment> | |
</method_context> | |
<exec_method | |
type="method" | |
name="start" | |
exec="/usr/bin/sh /home/node/fleet/drone/startDrone.sh" | |
timeout_seconds="60"/> | |
<exec_method | |
type="method" | |
name="stop" | |
exec=":kill" | |
timeout_seconds="60"/> | |
<property_group name="startd" type="framework"> | |
<propval name="duration" type="astring" value="child"/> | |
<propval name="ignore_error" type="astring" value="core,signal"/> | |
</property_group> | |
<property_group name="application" type="application"> | |
</property_group> | |
<stability value="Evolving"/> | |
<template> | |
<common_name> | |
<loctext xml:lang="C">fleet drone service</loctext> | |
</common_name> | |
</template> | |
</service> | |
</service_bundle> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fleet drone --hub=127.0.0.1:8000 --secret=foobar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment