comparison tasks.py @ 34:d4fb38f13c79

refactor dns and some other non-net setup
author drewp@bigasterisk.com
date Sat, 15 Jan 2022 15:40:22 -0800
parents 67fc0d4b1859
children dc2100504c45
comparison
equal deleted inserted replaced
33:ea110b6766bd 34:d4fb38f13c79
32 def net(ctx): 32 def net(ctx):
33 ctx.run(cmd + 'inventory.py net.py -v --limit prime', pty=True) 33 ctx.run(cmd + 'inventory.py net.py -v --limit prime', pty=True)
34 34
35 35
36 @task 36 @task
37 def dns(ctx):
38 ctx.run(cmd + 'inventory.py dns.py -v', pty=True)
39
40
41 @task
37 def wireguard(ctx): 42 def wireguard(ctx):
38 ctx.run(cmd + 'inventory.py wireguard.py', pty=True) 43 ctx.run(cmd + 'inventory.py wireguard.py', pty=True)
39 44
40 45
41 @task 46 @task