aboutsummaryrefslogtreecommitdiffstats
path: root/modules/auto_installation
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-10-19 22:10:28 +0300
committerThomas Backlund <tmb@mageia.org>2015-10-19 22:10:28 +0300
commit0b99207a370212860ccf1d877d8f90f8fc5b7c34 (patch)
tree9b30a223d00ff8b6da08ef6c6c2381d70924ea89 /modules/auto_installation
parente9d95e0776dd39ed8881c40413240d55ca1b5786 (diff)
downloadpuppet-0b99207a370212860ccf1d877d8f90f8fc5b7c34.tar
puppet-0b99207a370212860ccf1d877d8f90f8fc5b7c34.tar.gz
puppet-0b99207a370212860ccf1d877d8f90f8fc5b7c34.tar.bz2
puppet-0b99207a370212860ccf1d877d8f90f8fc5b7c34.tar.xz
puppet-0b99207a370212860ccf1d877d8f90f8fc5b7c34.zip
lint fixes for auto_installation
Diffstat (limited to 'modules/auto_installation')
-rw-r--r--modules/auto_installation/manifests/init.pp86
-rw-r--r--modules/auto_installation/templates/default2
-rw-r--r--modules/auto_installation/templates/menu2
3 files changed, 44 insertions, 46 deletions
diff --git a/modules/auto_installation/manifests/init.pp b/modules/auto_installation/manifests/init.pp
index 1c4fbbd1..062f7f4e 100644
--- a/modules/auto_installation/manifests/init.pp
+++ b/modules/auto_installation/manifests/init.pp
@@ -1,10 +1,10 @@
# what should be possible :
-# install a base system
+# install a base system
# - mandriva
# - mageia
# - others ? ( for testing package ? )
-# install a server
+# install a server
# - by name, with a valstart clone
class auto_installation {
@@ -12,10 +12,10 @@ class auto_installation {
$pxe_dir = "/var/lib/pxe"
# m/ for menu. There is limitation on the path length so
# while we will likely not hit the limit, it may be easier
- $pxe_menu_dir = "$pxe_dir/pxelinux.cfg/m/"
+ $pxe_menu_dir = "${pxe_dir}/pxelinux.cfg/m/"
}
- class download {
+ class download {
import "download.rb"
}
@@ -23,77 +23,77 @@ class auto_installation {
package { 'syslinux':
}
-
+
file { $pxe_dir:
ensure => directory,
}
- file { "$pxe_dir/pxelinux.0":
+ file { "${pxe_dir}/pxelinux.0":
ensure => "/usr/lib/syslinux/pxelinux.0",
}
-
- file { "$pxe_dir/menu.c32":
+
+ file { "${pxe_dir}/menu.c32":
ensure => "/usr/lib/syslinux/menu.c32"
}
-
- file { "$pxe_dir/pxelinux.cfg":
+
+ file { "${pxe_dir}/pxelinux.cfg":
ensure => directory,
}
- # m for menu, there is some limitation on the path lenght so I
- # prefer to
- file { "$pxe_menu_dir":
+ # m for menu, there is some limitation on the path lenght so I
+ # prefer to
+ file { "${pxe_menu_dir}":
ensure => directory,
}
# TODO make it tag aware
$menu_entries = list_exported_ressources('Auto_installation::Pxe_menu_base')
# default file should have exported ressources
- file { "$pxe_dir/pxelinux.cfg/default":
- ensure => present,
+ file { "${pxe_dir}/pxelinux.cfg/default":
+ ensure => present,
content => template('auto_installation/default'),
}
- Auto_installation::Pxe_menu_base <<| tag == $fqdn |>>
+ Auto_installation::Pxe_menu_base <<| tag == $fqdn |>>
}
define pxe_menu_base($content) {
include auto_installation::variables
- file { "$auto_installation::variables::pxe_menu_dir/$name":
- ensure => present,
+ file { "${auto_installation::variables::pxe_menu_dir}/${name}":
+ ensure => present,
content => $content,
}
}
define pxe_menu_entry($kernel_path, $append, $label) {
- @@auto_installation::pxe_menu_base { $name:
- tag => $fqdn,
+ @@auto_installation::pxe_menu_base { $name:
+ tag => $fqdn,
content => template('auto_installation/menu'),
}
}
- # define pxe_linux_entry
+ # define pxe_linux_entry
# meant to be exported
- # name
- # label
+ # name
+ # label
# kernel
# append
class netinst_storage {
- # to ease the creation of test iso
+ # to ease the creation of test iso
$netinst_path = "/var/lib/libvirt/netinst"
file { $netinst_path:
- ensure => directory,
+ ensure => directory,
require => Package[libvirt-utils],
}
libvirtd::storage { "netinst":
- path => $netinst_path,
+ path => $netinst_path,
require => File[$netinst_path],
}
}
define download_file($destination_path, $download_url) {
- exec { "wget -q -O $destination_path/$name $download_url/$name":
- creates => "$destination_path/$name",
+ exec { "wget -q -O ${destination_path}/${name} ${download_url}/${name}":
+ creates => "${destination_path}/${name}",
}
}
@@ -103,36 +103,36 @@ class auto_installation {
$server = "ftp.free.fr"
$mirror_url_base = "/pub/Distributions_Linux/MandrivaLinux/"
$mirror_url_middle = $version ? {
- "cooker" => "devel/cooker/$arch/",
- default => "official/$version/$arch/"
+ "cooker" => "devel/cooker/${arch}/",
+ default => "official/${version}/${arch}/"
}
- $mirror_url = "$mirror_url_base/$mirror_url_middle"
+ $mirror_url = "${mirror_url_base}/${mirror_url_middle}"
$mirror_url_end = "isolinux/alt0"
- $destination_path = "$netinst_storage::netinst_path/$name"
+ $destination_path = "${netinst_storage::netinst_path}/${name}"
- file { "$destination_path":
+ file { "${destination_path}":
ensure => directory,
}
- $download_url = "$protocol\\://$server/$mirror_url/$mirror_url_end"
-
+ $download_url = "${protocol}\\://${server}/${mirror_url}/${mirror_url_end}"
+
download_file { ['all.rdz','vmlinuz']:
destination_path => $destination_path,
- download_url => $download_url,
- require => File[$destination_path],
+ download_url => $download_url,
+ require => File[$destination_path],
}
- pxe_menu_entry { "mandriva_$version_$arch":
- kernel_path => "$name/vmlinuz",
- label => "Mandriva $version $arch",
+ pxe_menu_entry { "mandriva_${version}_${arch}":
+ kernel_path => "${name}/vmlinuz",
+ label => "Mandriva ${version} ${arch}",
#TODO add autoinst.cfg
- append => "$name/all.rdz useless_thing_accepted=1 lang=fr automatic=int:eth0,netw:dhcp,met:$protocol,ser:$server,dir:$mirror_url ",
- }
+ append => "${name}/all.rdz useless_thing_accepted=1 lang=fr automatic=int:eth0,netw:dhcp,met:${protocol},ser:${server},dir:${mirror_url} ",
+ }
}
- #
+ #
# define a template for autoinst
# - basic installation
# - server installation ( with server name as a parameter )
diff --git a/modules/auto_installation/templates/default b/modules/auto_installation/templates/default
index f8b8e82b..a9ea8de3 100644
--- a/modules/auto_installation/templates/default
+++ b/modules/auto_installation/templates/default
@@ -13,5 +13,3 @@ LABEL local
<% for m in menu_entries %>
INCLUDE pxelinux.cfg/m/<%= m %>
<% end %>
-
-
diff --git a/modules/auto_installation/templates/menu b/modules/auto_installation/templates/menu
index b7f6c910..3d0ce6fa 100644
--- a/modules/auto_installation/templates/menu
+++ b/modules/auto_installation/templates/menu
@@ -2,4 +2,4 @@ LABEL <%= name %>
MENU DEFAULT
MENU LABEL Install <%= label %>
kernel <%= kernel_path %>
- append <%= append %>
+ append <%= append %>