From b4eefd09b43a03c4340cdf9741a306aa4ccd9e52 Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Thu, 29 Sep 2011 16:03:04 -0700 Subject: [PATCH] Fail if boot command was missing --- init/init-lib.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init/init-lib.pl b/init/init-lib.pl index 833d73c61..f7e5e35a4 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");