Initial version of portmap module.
This commit is contained in:
parent
f415d4862b
commit
c1119e4e31
1 changed files with 15 additions and 0 deletions
15
portmap/manifests/init.pp
Normal file
15
portmap/manifests/init.pp
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# Install RPC portmapper service.
|
||||||
|
#
|
||||||
|
class portmap::server {
|
||||||
|
|
||||||
|
package { "portmap":
|
||||||
|
ensure => installed,
|
||||||
|
}
|
||||||
|
|
||||||
|
service { "portmap":
|
||||||
|
ensure => running,
|
||||||
|
enable => true,
|
||||||
|
require => Package["portmap"],
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue