ignore rtp pool

This commit is contained in:
Jordan Rodgers 2018-02-01 16:46:46 -05:00
parent 7b4e7fb6e8
commit 6e6e4d5a3d

View file

@ -277,7 +277,7 @@ def get_pools(proxmox):
pools = []
for pool in proxmox.pools.get():
poolid = pool['poolid']
if is_user(poolid):
if is_user(poolid) and poolid != 'rtp':
pools.append(poolid)
pools = sorted(pools)
return pools