X-Git-Url: http://git.onelab.eu/?p=nodemanager.git;a=blobdiff_plain;f=sliver_lxc.py;h=e54c453f86f3dc30d4d174903ccefc99eece8e35;hp=1b82b45f7ea1054613f0297098b6ac2810479ac9;hb=HEAD;hpb=209b8e50cc9068572cdc0328ac4ea2440d2fa75c diff --git a/sliver_lxc.py b/sliver_lxc.py index 1b82b45..e54c453 100644 --- a/sliver_lxc.py +++ b/sliver_lxc.py @@ -80,8 +80,8 @@ class Sliver_LXC(Sliver_Libvirt, Initscript): .format(self.name) command = plain.split() logger.log_call(command, timeout=3) - - + + @staticmethod def create(name, rec=None): ''' @@ -92,7 +92,7 @@ class Sliver_LXC(Sliver_Libvirt, Initscript): vref = rec['vref'] if vref is None: - vref = "lxc-f18-x86_64" + vref = "lxc-f24-x86_64" logger.log("sliver_libvirt: {}: WARNING - no vref attached, using hard-wired default {}" .format(name, vref)) @@ -151,7 +151,8 @@ class Sliver_LXC(Sliver_Libvirt, Initscript): # this assumes the reference image is in its own subvolume command = ['btrfs', 'subvolume', 'snapshot', refImgDir, containerDir] if not logger.log_call(command, timeout=BTRFS_TIMEOUT): - logger.log('sliver_lxc: ERROR Could not create BTRFS snapshot at', containerDir) + logger.log('sliver_lxc: ERROR Could not create BTRFS snapshot at {}' + .format(containerDir)) return command = ['chmod', '755', containerDir] logger.log_call(command)