mirror of
https://github.com/zhigang1992/linux-configs.git
synced 2026-06-17 23:05:31 +08:00
Add custom path for temperature device, as it varies from machine to machine. Also clarifies the filenames and paths of mutt and vim files. Tested-on: magrathea <06 Jun 2014>
21 lines
419 B
Puppet
21 lines
419 B
Puppet
#TODO deploy all .vim files from linux-configs
|
|
class vim
|
|
{
|
|
package { 'gvim' :
|
|
ensure => latest,
|
|
}
|
|
|
|
file { 'vimrc file' :
|
|
ensure => present,
|
|
path => '/home/tom/.vimrc',
|
|
source => 'puppet:///modules/vim/vimrc',
|
|
}
|
|
|
|
file { 'vim colorscheme' :
|
|
ensure => present,
|
|
path => '/home/tom/.vim/colors/wombat.vim',
|
|
source => 'puppet:///modules/vim/wombat.vim',
|
|
recurse => inf,
|
|
}
|
|
}
|