Skip to content

Commit

Permalink
All the remaining till %f
Browse files Browse the repository at this point in the history
  • Loading branch information
unixtech committed Oct 8, 2012
1 parent 289e388 commit c6a7cc2
Showing 1 changed file with 43 additions and 1 deletion.
44 changes: 43 additions & 1 deletion manifests/nodes.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@

file { "/etc/motd" : source => 'puppet:///files/motd', }
file { "/root/.vimrc" : source => 'puppet:///files/vimrc', }
file { "/root/.bashrc" : source => 'puppet:///files/vimrc', }
file { "/root/.bashrc" : source => 'puppet:///files/bashrc', }
file { "/home/$USER/.bashrc" : source => 'puppet:///files/bashrc', }
file { "/home/$USER/.vimrc" : source => 'puppet:///files/vimrc', }
file { "/home/abhay/.vimrc" : source => 'puppet:///files/vimrc', }
file { "/etc/resolv.conf" : source => 'puppet:///files/resolv.conf.generic', }


}
Expand All @@ -17,3 +21,41 @@

node suse1 inherits rserv2 {
}

node bt inherits rserv2 {

$packages = [ "nmap", "ttf-indic-fonts", "ttf-indic-fonts-core" ]
package { $packages: ensure => "installed" }
notify {"Following $packages has been installed.":}
}

node ubuntu inherits rserv2 {
$packages = [ "nmap", "ssh"]
package { $packages: ensure => "installed" }
notify {"Following $packages has been installed.":}

}

node omtechbuilds {
file { "/etc/motd" : source => 'puppet:///files/motd', }
file { "/root/.vimrc" : source => 'puppet:///files/vimrc', }
file { "/root/.bashrc" : source => 'puppet:///files/bashrc', }


}

node rvya1 {
$packages = [ "nmap" ]
package { $packages: ensure => "installed" }
notify {"Following $packages has been installed.":}

}

node storage1 {
$packages = [ "vim" ]
package { $packages: ensure => "installed" }
file { "/etc/motd" : source => 'puppet:///files/motd', }
file { "/root/.vimrc" : source => 'puppet:///files/vimrc', }
file { "/root/.bashrc" : source => 'puppet:///files/bashrc', }
notify {"Following $packages has been installed.":}
}

0 comments on commit c6a7cc2

Please sign in to comment.