From: Jamie Cameron Date: Thu, 29 Sep 2011 23:03:04 +0000 (-0700) Subject: Fail if boot command was missing X-Git-Url: https://iam.tj/gitweb/gitweb.cgi?p=webmin.git;a=commitdiff_plain;h=b4eefd09b43a03c4340cdf9741a306aa4ccd9e52 Fail if boot command was missing --- diff --git a/init/init-lib.pl b/init/init-lib.pl index 833d73c6..f7e5e35a 100755 --- a/init/init-lib.pl +++ b/init/init-lib.pl @@ -622,6 +622,8 @@ if ($init_mode eq "upstart" && (!-r "$config{'init_dir'}/$_[0]" || } else { # Need to create config + $_[2] || &error("Upstart service $_[0] cannot be created ". + "unless a command is given"); &create_upstart_service($_[0], $_[1], $_[2], undef, $_[5]->{'fork'}); &system_logged("insserv ".quotemeta($_[0])." >/dev/null 2>&1");