diff options
author | Daniel Baumann <daniel@debian.org> | 2008-08-12 16:20:35 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:39 +0100 |
commit | 9e52973f34463dcef260fb55657ff73a744dfed1 (patch) | |
tree | 8408241f1d17101f590fab481cd517f757676a8d /examples/cron/manpages.sh | |
parent | 1adae413a4728f1a5432e4c5af99d3e39bc98f60 (diff) | |
download | vyos-live-build-9e52973f34463dcef260fb55657ff73a744dfed1.tar.gz vyos-live-build-9e52973f34463dcef260fb55657ff73a744dfed1.zip |
Using signal names rather than signal numbers in trap calls.
Diffstat (limited to 'examples/cron/manpages.sh')
-rwxr-xr-x | examples/cron/manpages.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cron/manpages.sh b/examples/cron/manpages.sh index cd65dc4a6..da58d9410 100755 --- a/examples/cron/manpages.sh +++ b/examples/cron/manpages.sh @@ -24,7 +24,7 @@ then fi # Creating lock trap -trap "test -f ${SERVER}/lock && rm -f ${SERVER}/lock; exit 0" 0 1 2 3 9 15 +trap "test -f ${SERVER}/lock && rm -f ${SERVER}/lock; exit 0" 0 HUP INT QUIT KILL TERM # Creating lock file echo "${DATE_START}" > "${SERVER}"/lock |