diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2007-07-18 18:42:10 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2007-07-18 18:42:10 +0000 |
commit | e21264fd11c7f2e32572467403fda08b0c94fe6d (patch) | |
tree | 16ee638a0cbed77a5d42bc3cad30c2feaa1e44c0 /src/sbin | |
parent | 31f60b31bb69ee1367c2b21c8250d8a0bcb9d526 (diff) | |
download | bcfg2-e21264fd11c7f2e32572467403fda08b0c94fe6d.tar.gz bcfg2-e21264fd11c7f2e32572467403fda08b0c94fe6d.tar.bz2 bcfg2-e21264fd11c7f2e32572467403fda08b0c94fe6d.zip |
Remove double signal handler setup
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@3474 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/sbin')
-rwxr-xr-x | src/sbin/bcfg2-server | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/sbin/bcfg2-server b/src/sbin/bcfg2-server index b5e60328f..46d937c39 100755 --- a/src/sbin/bcfg2-server +++ b/src/sbin/bcfg2-server @@ -77,9 +77,6 @@ class Bcfg2Serv(Bcfg2.Component.Component): except Bcfg2.Component.ComponentInitError: raise SetupError - # set shutdown handlers for sigint and sigterm - signal.signal(signal.SIGINT, self.start_shutdown) - signal.signal(signal.SIGTERM, self.start_shutdown) try: self.Core = Core(setup, setup['configfile']) except CoreInitError, msg: |