sharing new portalclient plugins config

This commit is contained in:
Stefan Midjich 2017-11-20 10:58:21 +01:00
parent e6ad0f676f
commit f8d2a410af
1 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ if args.refresh:
# Sync clients and packet counters from ipset into storage.
proc = run_ipset(
'list',
config.get('ipset', 'ipset_name'),
config.get('portalclient', 'ipset_name'),
'-output',
'save',
use_sudo=use_sudo,
@ -137,7 +137,7 @@ if args.refresh:
client = Client(
storage=sr,
ip_address=client_ip,
ipset_name=config.get('ipset', 'ipset_name'),
ipset_name=config.get('portalclient', 'ipset_name'),
use_sudo=use_sudo
)
except Exception as e:
@ -201,7 +201,7 @@ for src_ip in args.src_ip:
client = Client(
storage=sr,
ip_address=src_ip,
ipset_name=config.get('ipset', 'ipset_name'),
ipset_name=config.get('portalclient', 'ipset_name'),
use_sudo=use_sudo
)