aboutsummaryrefslogtreecommitdiffstats
path: root/testing/cloudi/cloudi.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/cloudi/cloudi.initd')
-rw-r--r--testing/cloudi/cloudi.initd8
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/cloudi/cloudi.initd b/testing/cloudi/cloudi.initd
index 8fc9ad1377..77fd99b513 100644
--- a/testing/cloudi/cloudi.initd
+++ b/testing/cloudi/cloudi.initd
@@ -15,16 +15,16 @@ depend() {
after firewall
}
start() {
- $command start
+ HOME="/" $command start
}
stop() {
- $command stop
+ HOME="/" $command stop
}
restart() {
- $command restart
+ HOME="/" $command restart
}
status() {
- $command test
+ HOME="/" $command test
if [ $? -eq 0 ]; then
einfo "status: started"
return 0