Sorry if this is described, but I spent most of two days trying to get this to work without merit.
Basically I want to disable ipv6client in both zone internal and zone public, but the system does not allow me to do zone => ['internal','public'].
Also doing
firewalld_service { 'ipv6-client-internal':
ensure => 'absent',
name => 'ipv6-client',
zone => 'internal',
}
}
firewalld_service { 'ipv6-client-public':
ensure => 'absent',
name => 'ipv6-client',
zone => 'public',
}
}
in any variation gives me a error that the service is being re-declared
using it with/without the name, none of it improves. Surely this must be a common thing?
Sorry if this is described, but I spent most of two days trying to get this to work without merit.
Basically I want to disable ipv6client in both zone internal and zone public, but the system does not allow me to do zone => ['internal','public'].
Also doing
firewalld_service { 'ipv6-client-internal':
ensure => 'absent',
name => 'ipv6-client',
zone => 'internal',
}
}
firewalld_service { 'ipv6-client-public':
ensure => 'absent',
name => 'ipv6-client',
zone => 'public',
}
}
in any variation gives me a error that the service is being re-declared
using it with/without the name, none of it improves. Surely this must be a common thing?