Re: [Freeipa-devel] [PATCH] 0085 Don't use bare except: clauses in ipa-client-install

2012-09-27 Thread Martin Kosek
On 09/25/2012 05:59 PM, Petr Viktorin wrote:
 https://fedorahosted.org/freeipa/ticket/2941
 
 Simo, do you remember how you configured resolv.conf and when you pressed
 Ctrl+C? There's a lot of code called from ipa-replica-install that could cause
 the bug.
 
 Here I went for the most obvious places where we ignore KeyboardInterrupt. I
 will look for others.
 
 I'll also do a more thorough audit of the installer code when I work on
 https://fedorahosted.org/freeipa/ticket/2652.
 
 

I did not reproduce the issue either, but the changes you made are OK and
should improve the situation at minimum. The issue may have been fixed during
3.0 development as a side-effect of other patch.

ACK. Pushed to master, ipa-3-0.

Martin

___
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel


[Freeipa-devel] [PATCH] 0085 Don't use bare except: clauses in ipa-client-install

2012-09-25 Thread Petr Viktorin

https://fedorahosted.org/freeipa/ticket/2941

Simo, do you remember how you configured resolv.conf and when you 
pressed Ctrl+C? There's a lot of code called from ipa-replica-install 
that could cause the bug.


Here I went for the most obvious places where we ignore 
KeyboardInterrupt. I will look for others.


I'll also do a more thorough audit of the installer code when I work on 
https://fedorahosted.org/freeipa/ticket/2652.


--
PetrĀ³
From 6be2eff07a1d93d8bf7908fea7166e828e6339f2 Mon Sep 17 00:00:00 2001
From: Petr Viktorin pvikt...@redhat.com
Date: Tue, 25 Sep 2012 08:35:06 -0400
Subject: [PATCH] Don't use bare except: clauses in ipa-client-install

Instead of `except:`, use `except Exception:`. This means that errors
like KeyboardInterrupt are not handled, letting them terminate the
script as expected.

https://fedorahosted.org/freeipa/ticket/2941
---
 ipa-client/ipa-install/ipa-client-install | 26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/ipa-client/ipa-install/ipa-client-install b/ipa-client/ipa-install/ipa-client-install
index a1233fd8ae265df138097757b861163f410b3c92..ee8e5831866e1f5d960cbbca290606a944b0f357 100755
--- a/ipa-client/ipa-install/ipa-client-install
+++ b/ipa-client/ipa-install/ipa-client-install
@@ -464,13 +464,13 @@ def uninstall(options, env):
 if nscd.is_installed():
 try:
 nscd.restart()
-except:
+except Exception:
 root_logger.warning(
 Failed to restart the %s daemon, nscd.service_name)
 
 try:
 nscd.enable()
-except:
+except Exception:
 root_logger.warning(
 Failed to configure automatic startup of the %s daemon,
 nscd.service_name)
@@ -483,13 +483,13 @@ def uninstall(options, env):
 if nslcd.is_installed():
 try:
 nslcd.stop()
-except:
+except Exception:
 root_logger.warning(
 Failed to stop the %s daemon, nslcd.service_name)
 
 try:
 nslcd.disable()
-except:
+except Exception:
 root_logger.warning(
 Failed to disable automatic startup of the %s daemon,
 nslcd.service_name)
@@ -513,7 +513,7 @@ def uninstall(options, env):
 restored |= fstore.restore_file(/etc/sysconfig/ntpd)
 if ntp_step_tickers:
restored |= fstore.restore_file(/etc/ntp/step-tickers)
-except:
+except Exception:
 pass
 
 if not ntp_enabled:
@@ -556,7 +556,7 @@ def uninstall(options, env):
 # Remove the IPA configuration file
 try:
 os.remove(/etc/ipa/default.conf)
-except:
+except Exception:
 pass
 
 root_logger.info(Client uninstall complete.)
@@ -836,7 +836,7 @@ def configure_certmonger(fstore, subject_base, cli_realm, hostname, options):
 subject = DN(('CN', hostname), subject_base)
 try:
 run([ipa-getcert, request, -d, /etc/pki/nssdb, -n, client_nss_nickname, -N, str(subject), -K, principal])
-except:
+except Exception:
 root_logger.error(
 %s request for host certificate failed, cmonger.service_name)
 
@@ -1130,7 +1130,7 @@ def do_nsupdate(update_txt):
 
 try:
 os.remove(UPDATE_FILE)
-except:
+except Exception:
 pass
 
 return result
@@ -1490,7 +1490,7 @@ def install(options, env, fstore, statestore):
 # Remove anything already there so that wget doesn't use its
 # too-clever renaming feature
 os.remove(/etc/ipa/ca.crt)
-except:
+except Exception:
 pass
 
 try:
@@ -1729,7 +1729,7 @@ def install(options, env, fstore, statestore):
 
 try:
 os.remove(CCACHE_FILE)
-except:
+except Exception:
 pass
 
 #Name Server Caching Daemon. Disable for SSSD, use otherwise (if installed)
@@ -1742,7 +1742,7 @@ def install(options, env, fstore, statestore):
 else:
 nscd_service_action = 'restart'
 nscd.restart()
-except:
+except Exception:
 root_logger.warning(Failed to %s the %s daemon,
 nscd_service_action, nscd.service_name)
 if not options.sssd:
@@ -1754,7 +1754,7 @@ def install(options, env, fstore, statestore):
 nscd.disable()
 else:
 nscd.enable()
-except:
+except Exception:
 if not options.sssd:
 root_logger.warning(
 Failed to configure automatic startup of the %s daemon,
@@ -1923,5 +1923,5 @@ except RuntimeError, e:
 finally:
 try:
 os.remove(CCACHE_FILE)
-except:
+except Exception:
 pass
-- 
1.7.11.4

___
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel