diff options
Diffstat (limited to 'media-video/flumotion/files/flumotion-init-0.1.8')
-rwxr-xr-x | media-video/flumotion/files/flumotion-init-0.1.8 | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/media-video/flumotion/files/flumotion-init-0.1.8 b/media-video/flumotion/files/flumotion-init-0.1.8 deleted file mode 100755 index ff040edc13b4..000000000000 --- a/media-video/flumotion/files/flumotion-init-0.1.8 +++ /dev/null @@ -1,26 +0,0 @@ -#!/sbin/runscript - -flumotion_manager_pidfile=/var/run/flumotion/manager.planet.pid -flumotion_worker_pidfile=/var/run/flumotion/worker.default.pid - -depend() { - need net -} - -start() { - ebegin "Starting Flumotion Manager" - HOME=/usr/share/flumotion start-stop-daemon --start --chuid flumotion:flumotion --pidfile ${flumotion_manager_pidfile} --exec /usr/bin/flumotion-manager -- -D /etc/flumotion/managers/default/planet.xml - eend $? - ebegin "Starting Flumotion Worker" - HOME=/usr/share/flumotion start-stop-daemon --start --chuid flumotion:flumotion --pidfile ${flumotion_worker_pidfile} --exec /usr/bin/flumotion-worker -- -D /etc/flumotion/workers/default.xml -ndefault - eend $? -} - -stop() { - ebegin "Stopping Flumotion Worker" - start-stop-daemon --stop --pidfile ${flumotion_worker_pidfile} - eend $? - ebegin "Stopping Flumotion Manager" - start-stop-daemon --stop --pidfile ${flumotion_manager_pidfile} - eend $? -} |