diff options
| author | Nate House nathan.house@rackspace.com <> | 2014-02-03 11:37:36 -0600 |
|---|---|---|
| committer | Nate House nathan.house@rackspace.com <> | 2014-02-03 11:37:36 -0600 |
| commit | b997a8cab8b3b10f9be7e915a5ab4c2cc91effb8 (patch) | |
| tree | d16d29a18e484bc5424a3ba5f46d55b09b4b796a /cloudinit/util.py | |
| parent | bc77232588dd587849e8b3b7fc599387b6c905fa (diff) | |
| download | vyos-cloud-init-b997a8cab8b3b10f9be7e915a5ab4c2cc91effb8.tar.gz vyos-cloud-init-b997a8cab8b3b10f9be7e915a5ab4c2cc91effb8.zip | |
Fix sshd restart
Diffstat (limited to 'cloudinit/util.py')
| -rw-r--r-- | cloudinit/util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cloudinit/util.py b/cloudinit/util.py index 3ce54f28..54fdad20 100644 --- a/cloudinit/util.py +++ b/cloudinit/util.py @@ -1483,6 +1483,7 @@ def subp(args, data=None, rcs=None, env=None, capture=True, shell=False, logstring=False): if rcs is None: rcs = [0] + args = filter(None, args) # Remove empty arguments try: if not logstring: |
