This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
spadinastan/tasks.py
Marc Cataford 3de891d537
Feat/monolith auth (#15)
* feat: add monolith, auth check

* chore: tasks, lint

* feat: login portal via django

* fix: url redirect

fix: monolith settings gaps
2022-12-05 00:05:29 -05:00

33 lines
764 B
Python

import invoke
import services.plex.tasks
import services.deluge.tasks
import services.traefik.tasks
import services.monolith.tasks
ns = invoke.Collection()
PYINFRA_COMMON_PREFIX = "pyinfra -vvv pyinfra/inventory.py"
@invoke.task()
def system_updates(ctx):
ctx.run(f"{PYINFRA_COMMON_PREFIX} pyinfra/system_updates.py")
@invoke.task()
def system_reboot(ctx):
ctx.run(f"{PYINFRA_COMMON_PREFIX} pyinfra/reboot.py")
server = invoke.Collection("server")
server.add_task(system_updates, name="update")
server.add_task(system_reboot, name="reboot")
ns.add_collection(server)
ns.add_collection(services.monolith.tasks.ns)
ns.add_collection(services.plex.tasks.ns)
ns.add_collection(services.traefik.tasks.ns)
ns.add_collection(services.deluge.tasks.ns)