diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-10 13:38:06 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-10 13:38:42 +0000 |
commit | edcd2fc03278ac8ff6c3cb1c98e33805ada8ce93 (patch) | |
tree | f17b6ac796d464a759e5ddb6e5eb3a64327d4c4f /community/seahub/seahub.initd | |
parent | bf4cf79b81f0ddb0c7c95b8d791ec48a2698f692 (diff) | |
download | aports-edcd2fc03278ac8ff6c3cb1c98e33805ada8ce93.tar.bz2 aports-edcd2fc03278ac8ff6c3cb1c98e33805ada8ce93.tar.xz |
community/seafile (and deps): move from main
Diffstat (limited to 'community/seahub/seahub.initd')
-rw-r--r-- | community/seahub/seahub.initd | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/community/seahub/seahub.initd b/community/seahub/seahub.initd new file mode 100644 index 0000000000..faee878e3b --- /dev/null +++ b/community/seahub/seahub.initd @@ -0,0 +1,19 @@ +#!/sbin/openrc-run + +export SEAHUB_LOG_DIR=/var/lib/seafile/$instance/logs + +depend() { + need net +} + +start() { + ebegin "Starting Seafile $instance instance" + start-stop-daemon --chdir /var/lib/seafile/$instance --user $seafile_user \ + --group $seafile_group /usr/bin/seafile-admin start +} + +stop() { + ebegin "Stopping Seafile $instance instance" + start-stop-daemon --chdir /var/lib/seafile/$instance /usr/bin/seafile-admin \ + stop +} |