Created
July 15, 2012 05:56
-
-
Save dreid/3115254 to your computer and use it in GitHub Desktop.
beginning of a ufw salt state.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
'22': | |
ufw.allow: | |
- enabled: true | |
- proto: tcp | |
- from: 127.0.0.1 | |
- to: any | |
""" | |
def _make_ufw_args(action, enabled, port, **kwargs): | |
cmd = [] | |
if enabled in ('false', 'False', False): | |
cmd.append('delete') | |
cmd.append(action) | |
proto = kwargs.get('proto') | |
if proto in ['tcp', 'udp']: | |
cmd.extend(['proto', proto]) | |
source = kwargs.get('from', 'any') | |
if source is not None: | |
cmd.extend(['from', source]) | |
destination = kwargs.get('to', 'any') | |
if destination is not None: | |
cmd.extend(['to', destination]) | |
if source and destination: | |
cmd.append('port') | |
cmd.append(port) | |
return cmd | |
def _do_ufw(action, enabled, port, **kwargs): | |
args = _make_ufw_args(action, enabled, port, **kwargs) | |
result = __salt__['cmd.run'](' '.join(['ufw'] + args)) | |
ret = dict( | |
name=port, | |
changes={}, | |
comment='', | |
result=None | |
) | |
if 'Skipping' in result or 'non-existent' in result: | |
ret['result'] = True | |
ret['comment'] = result | |
return ret | |
if __opts__['test']: | |
ret['comment'] = result | |
return ret | |
ret['changes'] = {'rule': ' '.join(args)} | |
ret['comment'] = result | |
ret['result'] = True | |
return ret | |
def allow(name, enabled, **kwargs): | |
return _do_ufw('allow', enabled, name, **kwargs) | |
def deny(name, enabled, **kwargs): | |
return _do_ufw('dey', enabled, name, **kwargs) | |
def default(name, policy): | |
ret_val = __salt__['cmd.run']('ufw default {0}'.format(policy)) | |
return dict( | |
name=name, | |
changes={'policy': policy}, | |
comment=ret_val, | |
result=True | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment