aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-04-05 02:08:01 +0000
committerMichael Scherer <misc@mageia.org>2011-04-05 02:08:01 +0000
commitf1a77958bb386012fd09614a92011617024e00c0 (patch)
tree8edfdd9f1deb69c918b70de9360d16819c6fcf9f /modules
parent405534f7ea5d3a62ca7b22532c65be7368249edd (diff)
downloadpuppet-f1a77958bb386012fd09614a92011617024e00c0.tar
puppet-f1a77958bb386012fd09614a92011617024e00c0.tar.gz
puppet-f1a77958bb386012fd09614a92011617024e00c0.tar.bz2
puppet-f1a77958bb386012fd09614a92011617024e00c0.tar.xz
puppet-f1a77958bb386012fd09614a92011617024e00c0.zip
add a netinst_storage class ( to hold various netinstallation related
file in libvirtd )
Diffstat (limited to 'modules')
-rw-r--r--modules/auto_installation/manifests/init.pp15
1 files changed, 13 insertions, 2 deletions
diff --git a/modules/auto_installation/manifests/init.pp b/modules/auto_installation/manifests/init.pp
index 0e8bdcfd..2789cd6f 100644
--- a/modules/auto_installation/manifests/init.pp
+++ b/modules/auto_installation/manifests/init.pp
@@ -76,12 +76,23 @@ class auto_installation {
# label
# kernel
# append
+ class netinst_storage {
+ # to ease the creation of test iso
+ $netinst_path = "/var/lib/libvirt/netinst"
+
+ file { $netinst_path:
+ ensure => directory,
+ }
+
+ libvirtd::storage { "netinst":
+ path => $netinst_path,
+ require => File[$netinst_path],
+ }
+ }
#
# define a template for autoinst
# - basic installation
# - server installation ( with server name as a parameter )
-
- # TODO move here the downloader of boot.iso from libvirt module
}