Multi-OS Version

This commit is contained in:
Wile E. Coyote 2017-01-24 21:12:53 +00:00
parent 15630ec66a
commit b353f4410b
19 changed files with 3077 additions and 49 deletions

View file

@ -10,7 +10,12 @@
#
# Sample Usage:
#
class rhizo_base::fixes {
include "rhizo_base::fixes::$operatingsystem"
}
class rhizo_base::fixes::ubuntu {
#FSCK at boot
file { '/etc/default/rcS':
ensure => present,
@ -28,4 +33,8 @@ class rhizo_base::fixes {
command => '/usr/sbin/update-grub',
refreshonly => true,
}
}
}
class rhizo_base::fixes::debian {
# Nothing
}