Initial version of shell module.
This commit is contained in:
parent
8c69213384
commit
a19dd01750
1 changed files with 32 additions and 0 deletions
32
shell/manifests/init.pp
Normal file
32
shell/manifests/init.pp
Normal 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,
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue