diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/auto_installation/manifests/init.pp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/auto_installation/manifests/init.pp b/modules/auto_installation/manifests/init.pp index 86ff186d..f6e39195 100644 --- a/modules/auto_installation/manifests/init.pp +++ b/modules/auto_installation/manifests/init.pp @@ -8,12 +8,15 @@ # - by name, with a valstart clone class auto_installation { - class pxe_menu { + class variables { + $pxe_dir = "/var/lib/pxe" + } + + class pxe_menu inherits variables { package { 'syslinux': } - $pxe_dir = "/var/lib/pxe" file { $pxe_dir: ensure => directory, } |