diff options
author | Roy Marples <roy@marples.name> | 2008-06-10 15:04:29 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-06-10 15:04:29 +0000 |
commit | 9b1cb4e24690fd08f6eac1579fa2f90c7dea5d33 (patch) | |
tree | 1a4981038569d7aae2ec858f437fdffbcd1d13cc /src | |
parent | 2adc99a8f5919c7266ab1d4f1c33f969f330c6e5 (diff) |
When we have dependant scheduled services, don't error if a need is stopped.
Diffstat (limited to 'src')
-rw-r--r-- | src/rc/runscript.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/runscript.c b/src/rc/runscript.c index 179cd0a1..876503af 100644 --- a/src/rc/runscript.c +++ b/src/rc/runscript.c @@ -792,7 +792,7 @@ static void svc_start(bool deps) if (! tmplist) tmplist = rc_stringlist_new(); rc_stringlist_add(tmplist, svc->value); - } else + } else if (!tmplist) eerrorx("ERROR: cannot start %s as" " %s would not start", applet, svc->value); |