Initial version of vim module.
This commit is contained in:
parent
b2a9768b6e
commit
e6cf046de5
1 changed files with 15 additions and 0 deletions
15
vim/manifests/init.pp
Normal file
15
vim/manifests/init.pp
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
|
||||||
|
# Install Vim (Vi IMproved)
|
||||||
|
#
|
||||||
|
class vim {
|
||||||
|
|
||||||
|
package { "vim":
|
||||||
|
name => $operatingsystem ? {
|
||||||
|
centos => "vim-enhanced",
|
||||||
|
fedora => "vim-enhanced",
|
||||||
|
default => "vim",
|
||||||
|
},
|
||||||
|
ensure => installed,
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue