diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/vyatta-comment-config.pl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/vyatta-comment-config.pl b/scripts/vyatta-comment-config.pl index 8ef4cb6..2cbd81d 100644 --- a/scripts/vyatta-comment-config.pl +++ b/scripts/vyatta-comment-config.pl @@ -71,7 +71,13 @@ if ($ARGV[$#ARGV] eq '') { `rm -f $full_path/.comment`; } else { - `echo \"$ARGV[$#ARGV]\" > $full_path/.comment`; + my $cfile; + if (!open($cfile, '>', "$full_path/.comment")) { + print "Failed to set comment\n"; + exit 1; + } + print $cfile $ARGV[$#ARGV]; + close($cfile); } print "Done\n"; |