summaryrefslogtreecommitdiff
blob: f536e47979c5b2162e4b51104c74cf24a9973332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/sbin/openrc-run

depend() {
    need net
}

start() {
    ebegin "Starting Flumotion"
    if [ ! -d /var/run/flumotion ] ; then
        mkdir /var/run/flumotion
        chown flumotion:flumotion /var/run/flumotion
        chmod 755 /var/run/flumotion
    fi

    start-stop-daemon -o --start --chuid flumotion:flumotion --exec /usr/sbin/flumotion start
    eend $?
}

stop() {
    ebegin "Stopping Flumotion"
    /usr/sbin/flumotion stop
    eend $?
}