Displaying 3 results from an estimated 3 matches for "belm".
Did you mean:
bell
2012 Jan 07
3
How can I have a defined resource depend on a resource that is not in the global scope?
I am working on this module:
https://github.com/belminf/puppet-iptables
I have this defined resource:
define iptables::hole ($proto=''tcp'', $port, $source=undef) {
firewall { "100 input: $name":
chain => ''INPUT'',
proto => $proto,
dport => $port,
source => $source,...
2011 Nov 28
2
Using firewall module, how do I clear iptables before rules are applied?
I am currently using Puppet''s firewall module:
http://forge.puppetlabs.com/puppetlabs/firewall
I am trying to have Puppet flush iptables before it applies firewall
rules. I tried the following:
exec { ''clear-firewall'':
command => ''/sbin/iptables -F'',
refreshonly => true,
}
Firewall {
subscribe =>
2011 Nov 29
1
How do I require a resource in a definition based on an array parameter?
I have a define that looks like this:
define user::sys_user($fullname, $uid, $groups, $shell=''/bin/bash'',
$authkey, $authkey_type=rsa) {
$username = "sys_${name}"
group { $username:
gid => $uid,
}
user { $username:
require => Group[$username],
ensure => present,