summaryrefslogtreecommitdiff
path: root/src/rc/runscript.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-04-08 22:57:42 +0000
committerRoy Marples <roy@marples.name>2008-04-08 22:57:42 +0000
commit87597357116dffd4e1136c16aab431844877a247 (patch)
tree799477bf981dcbd27e8ebd1f31a9b566e80f1013 /src/rc/runscript.c
parent034b9b7a12228bfa9171aae2b578c649ff1de54e (diff)
downloadopenrc-87597357116dffd4e1136c16aab431844877a247.tar.gz
openrc-87597357116dffd4e1136c16aab431844877a247.tar.bz2
openrc-87597357116dffd4e1136c16aab431844877a247.tar.xz
Give an error when running zap as a generic user.
Diffstat (limited to 'src/rc/runscript.c')
-rw-r--r--src/rc/runscript.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rc/runscript.c b/src/rc/runscript.c
index c2cef71..2f96d7a 100644
--- a/src/rc/runscript.c
+++ b/src/rc/runscript.c
@@ -1306,7 +1306,8 @@ int runscript(int argc, char **argv)
}
} else if (strcmp(optarg, "zap") == 0) {
einfo("Manually resetting %s to stopped state", applet);
- rc_service_mark(applet, RC_SERVICE_STOPPED);
+ if (!rc_service_mark(applet, RC_SERVICE_STOPPED))
+ eerrorx("rc_service_mark: %s", strerror(errno));
uncoldplug();
} else
svc_exec(optarg, NULL);