diff options
Diffstat (limited to 'cloudinit/util.py')
| -rw-r--r-- | cloudinit/util.py | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/cloudinit/util.py b/cloudinit/util.py index 0d21e11b..8d6cbb4b 100644 --- a/cloudinit/util.py +++ b/cloudinit/util.py @@ -288,7 +288,7 @@ def fork_cb(child_cb, *args, **kwargs):          try:              child_cb(*args, **kwargs)              os._exit(0) -        except: +        except Exception:              logexc(LOG, "Failed forking and calling callback %s",                     type_utils.obj_name(child_cb))              os._exit(1) @@ -472,7 +472,7 @@ def is_ipv4(instr):      try:          toks = [x for x in toks if int(x) < 256 and int(x) >= 0] -    except: +    except Exception:          return False      return len(toks) == 4 @@ -1210,7 +1210,7 @@ def get_cmdline():      else:          try:              cmdline = load_file("/proc/cmdline").strip() -        except: +        except Exception:              cmdline = ""      PROC_CMDLINE = cmdline @@ -1380,7 +1380,7 @@ def read_write_cmdline_url(target_fn):      if not os.path.exists(target_fn):          try:              (key, url, content) = get_cmdline_url() -        except: +        except Exception:              logexc(LOG, "Failed fetching command line url")              return          try: @@ -1391,7 +1391,7 @@ def read_write_cmdline_url(target_fn):              elif key and not content:                  LOG.debug(("Command line key %s with url"                            " %s had no contents"), key, url) -        except: +        except Exception:              logexc(LOG, "Failed writing url content to %s", target_fn) @@ -1449,7 +1449,7 @@ def mounts():                      mp = m.group(2)                      fstype = m.group(3)                      opts = m.group(4) -            except: +            except Exception:                  continue              # If the name of the mount point contains spaces these              # can be escaped as '\040', so undo that.. @@ -1575,7 +1575,7 @@ def copy(src, dest):  def time_rfc2822():      try:          ts = time.strftime("%a, %d %b %Y %H:%M:%S %z", time.gmtime()) -    except: +    except Exception:          ts = "??"      return ts @@ -1601,7 +1601,7 @@ def uptime():              bootup = buf.value              uptime_str = now - bootup -    except: +    except Exception:          logexc(LOG, "Unable to read uptime using method: %s" % method)      return uptime_str @@ -2055,7 +2055,7 @@ def log_time(logfunc, msg, func, args=None, kwargs=None, get_uptime=False):                  tmsg += " (N/A)"          try:              logfunc(msg + tmsg) -        except: +        except Exception:              pass      return ret | 
