diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rc/rc.c | 2 | ||||
-rw-r--r-- | src/rc/runscript.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/rc/rc.c b/src/rc/rc.c index 102461d5..dbe975de 100644 --- a/src/rc/rc.c +++ b/src/rc/rc.c @@ -760,10 +760,12 @@ int main (int argc, char **argv) newlevel = argv[optind++]; +#ifndef PREFIX /* OK, so we really are the main RC process * Only root should be able to run us */ if (geteuid () != 0) eerrorx ("%s: root access required", applet); +#endif /* Enable logging */ setenv ("EINFO_LOG", "rc", 1); diff --git a/src/rc/runscript.c b/src/rc/runscript.c index 33f814d3..b0982f65 100644 --- a/src/rc/runscript.c +++ b/src/rc/runscript.c @@ -1271,8 +1271,10 @@ int runscript (int argc, char **argv) if (retval & RC_SERVICE_STARTED) retval = 0; } else { +#ifndef PREFIX if (geteuid () != 0) eerrorx ("%s: root access required", applet); +#endif if (strcmp (optarg, "conditionalrestart") == 0 || strcmp (optarg, "condrestart") == 0) |