diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-10-20 00:57:37 +0300 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-10-20 00:57:37 +0300 |
commit | 91d4084fb231126f0604ea049f3d79d22332fd5b (patch) | |
tree | 6b9eae02c0fea64cfd44c89e58eb3214e4138fa3 /modules/libvirtd/files | |
parent | 8baadde40d126419e08b4ece63aba11cbac90182 (diff) | |
download | puppet-91d4084fb231126f0604ea049f3d79d22332fd5b.tar puppet-91d4084fb231126f0604ea049f3d79d22332fd5b.tar.gz puppet-91d4084fb231126f0604ea049f3d79d22332fd5b.tar.bz2 puppet-91d4084fb231126f0604ea049f3d79d22332fd5b.tar.xz puppet-91d4084fb231126f0604ea049f3d79d22332fd5b.zip |
lint fixes for libvirtd
Diffstat (limited to 'modules/libvirtd/files')
-rw-r--r-- | modules/libvirtd/files/network_add.py | 3 | ||||
-rw-r--r-- | modules/libvirtd/files/storage_add.py | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/modules/libvirtd/files/network_add.py b/modules/libvirtd/files/network_add.py index ab40bf0e..a7382351 100644 --- a/modules/libvirtd/files/network_add.py +++ b/modules/libvirtd/files/network_add.py @@ -3,7 +3,7 @@ import libvirt import os import IPy -# bridge_name +# bridge_name # forward -> nat/ route # forward-dev @@ -59,4 +59,3 @@ network_xml = """ c=libvirt.open("qemu:///system") c.networkDefineXML(network_xml) - diff --git a/modules/libvirtd/files/storage_add.py b/modules/libvirtd/files/storage_add.py index 5d95922d..c53b16bd 100644 --- a/modules/libvirtd/files/storage_add.py +++ b/modules/libvirtd/files/storage_add.py @@ -25,4 +25,3 @@ storage_xml = """ c=libvirt.open("qemu:///system") c.storagePoolDefineXML(storage_xml,0) - |