summaryrefslogtreecommitdiff
path: root/cloudinit/config
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2014-09-15 20:27:31 -0400
committerScott Moser <smoser@ubuntu.com>2014-09-15 20:27:31 -0400
commit5d51578e5aaa3fd96eb7505a0d625abe65553a67 (patch)
tree2806781d0a1c718cf5adc7c43dd41243a17f5900 /cloudinit/config
parent6093b8b2733814b9265494c47f4268167c9491ab (diff)
parentbea35b7685978804557aada44c819c536ab209b3 (diff)
downloadvyos-cloud-init-5d51578e5aaa3fd96eb7505a0d625abe65553a67.tar.gz
vyos-cloud-init-5d51578e5aaa3fd96eb7505a0d625abe65553a67.zip
resizefs: fix backgrounded resizing
add kwargs to fork_cb, and utilize that to call log_time and pass through the provided args to resize_cmd. LP: #1338614
Diffstat (limited to 'cloudinit/config')
-rw-r--r--cloudinit/config/cc_resizefs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/config/cc_resizefs.py b/cloudinit/config/cc_resizefs.py
index 7e796228..cbc07853 100644
--- a/cloudinit/config/cc_resizefs.py
+++ b/cloudinit/config/cc_resizefs.py
@@ -162,8 +162,8 @@ def handle(name, cfg, _cloud, log, args):
# Fork to a child that will run
# the resize command
util.fork_cb(
- util.log_time(logfunc=log.debug, msg="backgrounded Resizing",
- func=do_resize, args=(resize_cmd, log)))
+ util.log_time, logfunc=log.debug, msg="backgrounded Resizing",
+ func=do_resize, args=(resize_cmd, log))
else:
util.log_time(logfunc=log.debug, msg="Resizing",
func=do_resize, args=(resize_cmd, log))