From 88945cb8cd27a11295159cb85944d00180280d61 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 5 Aug 2002 13:29:39 +0000 Subject: replace "kill USR1" with "kill 'USR1'" (and same for USR2) (so that 'use strict' works) --- perl-install/standalone/draksec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/standalone/draksec') diff --git a/perl-install/standalone/draksec b/perl-install/standalone/draksec index 9f4002e96..a14049097 100755 --- a/perl-install/standalone/draksec +++ b/perl-install/standalone/draksec @@ -18,9 +18,9 @@ $::expert = /-expert/ || cat_("/etc/sysconfig/system") =~ /^CLASS="?expert/m; #" my $in = 'interactive'->vnew('su', 'security'); begin: -$::isEmbedded and kill USR2, $::CCPID; +$::isEmbedded and kill 'USR2', $::CCPID; security::main::main($prefix, $in); -!$::isEmbedded ? $in->exit(0) : kill(USR1, $::CCPID); +!$::isEmbedded ? $in->exit(0) : kill('USR1', $::CCPID); goto begin; -- cgit v1.2.1