]> git.proxmox.com Git - dab.git/commitdiff
use new config properties for sample lxc config
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 5 Apr 2018 07:53:21 +0000 (09:53 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 5 Apr 2018 08:05:27 +0000 (10:05 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
DAB.pm

diff --git a/DAB.pm b/DAB.pm
index b686141f153dbd41a90c44bfb30db090bc437073..c52a58991a2a9fcbd5260946c8ad3ba9c79c5d4d 100644 (file)
--- a/DAB.pm
+++ b/DAB.pm
@@ -244,8 +244,8 @@ sub __sample_config {
     } else {
        die "unknown os type '$ostype'\n";
     }
-    $data .= "lxc.utsname = localhost\n";
-    $data .= "lxc.rootfs = $self->{rootfs}\n";
+    $data .= "lxc.uts.name = localhost\n";
+    $data .= "lxc.rootfs.path = $self->{rootfs}\n";
     
     return $data;
 }