diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-07-07 12:58:44 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-07-07 12:58:44 -0400 |
commit | 93fc41ed689c1380f60ee774fd20101829a5cafb (patch) | |
tree | a6e349e26e8af7b73a83debeca0ed951675135c8 /cloudinit | |
parent | d76fbab6e770d5f93dab155030d9edb3ff583ea8 (diff) | |
download | vyos-cloud-init-93fc41ed689c1380f60ee774fd20101829a5cafb.tar.gz vyos-cloud-init-93fc41ed689c1380f60ee774fd20101829a5cafb.zip |
warn on failed 'mount -a'
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/CloudConfig/cc_mounts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/CloudConfig/cc_mounts.py b/cloudinit/CloudConfig/cc_mounts.py index 14ef1465..ffc647aa 100644 --- a/cloudinit/CloudConfig/cc_mounts.py +++ b/cloudinit/CloudConfig/cc_mounts.py @@ -145,4 +145,4 @@ def handle(name,cfg,cloud,log,args): except: log.warn("Failed to make '%s' config-mount\n",d) try: util.subp(("mount","-a")) - except: pass + except: log.warn("'mount -a' failed") |