aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/bsdconfig
diff options
context:
space:
mode:
authorDevin Teske <dteske@FreeBSD.org>2016-02-03 03:55:08 +0000
committerDevin Teske <dteske@FreeBSD.org>2016-02-03 03:55:08 +0000
commitd1eef61dae29c4fb265dd53a6ce88f38db5586d4 (patch)
tree3f5eb7443abf41bc29662d80aac6a6132b8e1753 /usr.sbin/bsdconfig
parent9e81c4fb73a2b34bdabda478e99601093c7074fd (diff)
downloadsrc-d1eef61dae29c4fb265dd53a6ce88f38db5586d4.tar.gz
src-d1eef61dae29c4fb265dd53a6ce88f38db5586d4.zip
Remove SIG prefix from trapped signals
Makes traps functional if running under shells/dash
Notes
Notes: svn path=/head/; revision=295196
Diffstat (limited to 'usr.sbin/bsdconfig')
-rw-r--r--usr.sbin/bsdconfig/share/common.subr9
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.sbin/bsdconfig/share/common.subr b/usr.sbin/bsdconfig/share/common.subr
index 599644637922..2b911fcec668 100644
--- a/usr.sbin/bsdconfig/share/common.subr
+++ b/usr.sbin/bsdconfig/share/common.subr
@@ -1,7 +1,7 @@
if [ ! "$_COMMON_SUBR" ]; then _COMMON_SUBR=1
#
# Copyright (c) 2012 Ron McDowell
-# Copyright (c) 2012-2015 Devin Teske
+# Copyright (c) 2012-2016 Devin Teske
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -1015,10 +1015,9 @@ f_count_ifs()
#
# Trap signals so we can recover gracefully
#
-trap 'f_interrupt' SIGINT
-trap 'f_die' SIGTERM SIGPIPE SIGXCPU SIGXFSZ \
- SIGFPE SIGTRAP SIGABRT SIGSEGV
-trap '' SIGALRM SIGPROF SIGUSR1 SIGUSR2 SIGHUP SIGVTALRM
+trap 'f_interrupt' INT
+trap 'f_die' TERM PIPE XCPU XFSZ FPE TRAP ABRT SEGV
+trap '' ALRM PROF USR1 USR2 HUP VTALRM
#
# Clone terminal stdout/stderr so we can redirect to it from within sub-shells