mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 17:37:43 -04:00
Adding things for using Puppet
This commit is contained in:
parent
00e63ca7be
commit
bff34cde83
13 changed files with 86 additions and 8 deletions
4
bin/puppet/site/profile/manifests/base.pp
Normal file
4
bin/puppet/site/profile/manifests/base.pp
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# the base profile should include component modules that will be on all nodes
|
||||
class profile::base {
|
||||
|
||||
}
|
||||
7
bin/puppet/site/role/manifests/server.pp
Normal file
7
bin/puppet/site/role/manifests/server.pp
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Includes all the profiles needed for a server.
|
||||
# One big difference between this and the workstation role is that you generally
|
||||
# are not standing in front of the system and / or there is no graphical
|
||||
# interface.
|
||||
class role::workstation {
|
||||
include ::profile::base
|
||||
}
|
||||
4
bin/puppet/site/role/manifests/workstation.pp
Normal file
4
bin/puppet/site/role/manifests/workstation.pp
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# Includes all the profiles needed for a workstation
|
||||
class role::workstation {
|
||||
include ::profile::base
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue