diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-02-24 23:01:25 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-02-24 23:01:25 +0000 |
| commit | 772c7c87ffab1b7a70413fa6bbd20df45490dbf2 (patch) | |
| tree | b86f177abe4dc6526d1ac0a0c537ee9637c784ad /bin/puppetd | |
| parent | 503ad38194b0064de240a1ae0f043b8fb6d40903 (diff) | |
| download | puppet-772c7c87ffab1b7a70413fa6bbd20df45490dbf2.tar.gz puppet-772c7c87ffab1b7a70413fa6bbd20df45490dbf2.tar.xz puppet-772c7c87ffab1b7a70413fa6bbd20df45490dbf2.zip | |
Adding TERM to the signals being trapped
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@945 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'bin/puppetd')
| -rwxr-xr-x | bin/puppetd | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/bin/puppetd b/bin/puppetd index fb8759057..2fabccd69 100755 --- a/bin/puppetd +++ b/bin/puppetd @@ -278,10 +278,12 @@ end # now set up the network client with the certs, now that we have them client.setcerts -trap(:INT) { - Puppet.notice "Caught INT; shutting down" - client.shutdown -} +[:INT, :TERM].each do |signal| + trap(signal) do + Puppet.notice "Caught #{signal}; shutting down" + client.shutdown + end +end if onetime begin |
