summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZaheer Abbas Merali <zaheerm@gentoo.org>2005-05-20 14:03:54 +0000
committerZaheer Abbas Merali <zaheerm@gentoo.org>2005-05-20 14:03:54 +0000
commit5441acaec59ddaf10c0abc6355de38e01ba72cb5 (patch)
tree5b83fe1ac9495a3ec1049054bfba75d11f84af6c /media-video/flumotion/files
parentNew version that should fix the perl file collisions in bug #82648 (diff)
downloadgentoo-2-5441acaec59ddaf10c0abc6355de38e01ba72cb5.tar.gz
gentoo-2-5441acaec59ddaf10c0abc6355de38e01ba72cb5.tar.bz2
gentoo-2-5441acaec59ddaf10c0abc6355de38e01ba72cb5.zip
New version
(Portage version: 2.0.51.19)
Diffstat (limited to 'media-video/flumotion/files')
-rw-r--r--media-video/flumotion/files/digest-flumotion-0.1.81
-rwxr-xr-xmedia-video/flumotion/files/flumotion-init-0.1.826
2 files changed, 27 insertions, 0 deletions
diff --git a/media-video/flumotion/files/digest-flumotion-0.1.8 b/media-video/flumotion/files/digest-flumotion-0.1.8
new file mode 100644
index 000000000000..5d77a7acee16
--- /dev/null
+++ b/media-video/flumotion/files/digest-flumotion-0.1.8
@@ -0,0 +1 @@
+MD5 33367676b24fe3af328ae6cfca8b63ec flumotion-0.1.8.tar.bz2 637744
diff --git a/media-video/flumotion/files/flumotion-init-0.1.8 b/media-video/flumotion/files/flumotion-init-0.1.8
new file mode 100755
index 000000000000..ff040edc13b4
--- /dev/null
+++ b/media-video/flumotion/files/flumotion-init-0.1.8
@@ -0,0 +1,26 @@
+#!/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 $?
+}