Initial version of shell module.

This commit is contained in:
Timo Mkinen 2013-03-28 11:20:25 +02:00
parent 8c69213384
commit a19dd01750

32
shell/manifests/init.pp Normal file
View file

@ -0,0 +1,32 @@
# Install bash shell
#
class shell::bash {
package { "bash":
ensure => installed,
}
}
# Install tcsh shell
#
class shell::tcsh {
package { "tcsh":
ensure => installed,
}
}
# Install zsh shell
#
class shell::zsh {
package { "zsh":
ensure => installed,
}
}