diff options
author | Dan Fandrich <danf@mageia.org> | 2024-01-18 17:51:59 -0800 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-01-18 17:51:59 -0800 |
commit | 82f3da502d17301b8751c3d77da3c4757d75f6bc (patch) | |
tree | 225871d23569471e75454aa1a03d5c58f925935a /modules/libvirtd/files | |
parent | c96e287499d72cb86a15c499f47dc216f5cdc737 (diff) | |
download | puppet-82f3da502d17301b8751c3d77da3c4757d75f6bc.tar puppet-82f3da502d17301b8751c3d77da3c4757d75f6bc.tar.gz puppet-82f3da502d17301b8751c3d77da3c4757d75f6bc.tar.bz2 puppet-82f3da502d17301b8751c3d77da3c4757d75f6bc.tar.xz puppet-82f3da502d17301b8751c3d77da3c4757d75f6bc.zip |
Switch libvirt helpers to Python3
No code changes are needed. Also, drop support for older than mga7 since
the two nodes that need this are running that.
Diffstat (limited to 'modules/libvirtd/files')
-rw-r--r-- | modules/libvirtd/files/network_add.py | 2 | ||||
-rw-r--r-- | modules/libvirtd/files/storage_add.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/libvirtd/files/network_add.py b/modules/libvirtd/files/network_add.py index a7382351..4ed63109 100644 --- a/modules/libvirtd/files/network_add.py +++ b/modules/libvirtd/files/network_add.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 import libvirt import os import IPy diff --git a/modules/libvirtd/files/storage_add.py b/modules/libvirtd/files/storage_add.py index c53b16bd..10369e36 100644 --- a/modules/libvirtd/files/storage_add.py +++ b/modules/libvirtd/files/storage_add.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 import libvirt import sys |