Mercurial > code > home > repos > infra
diff tasks.py @ 155:522f26c8f691
split apt.py from system.py
author | drewp@bigasterisk.com |
---|---|
date | Thu, 16 Mar 2023 17:42:17 -0700 |
parents | ae13e608b105 |
children | a5399e8b47b6 |
line wrap: on
line diff
--- a/tasks.py Sat Mar 11 12:34:04 2023 -0800 +++ b/tasks.py Thu Mar 16 17:42:17 2023 -0700 @@ -21,6 +21,9 @@ def system(ctx): _run(ctx, 'system.py') @task +def apt(ctx): _run(ctx, 'apt.py') + +@task def packages(ctx): _run(ctx, 'packages.py') @task @@ -76,6 +79,7 @@ 'users.py', 'ssh.py', 'system.py', + 'apt.py', 'packages.py', 'net.py', 'dns.py',