fix servarr media path
All checks were successful
Deploy Containers / Prepare (push) Successful in 27s

This commit is contained in:
2026-01-10 16:56:13 -05:00
parent 8cfb10a2a9
commit c66daac36a
3 changed files with 228 additions and 231 deletions

View File

@@ -7,7 +7,7 @@ def git_diff():
res = subprocess.run(f"git diff --name-only {args[1]} {args[2]}", capture_output=True, shell=True, text=True)
return [x for x in res.stdout.strip().split("\n") if "tasks/" in x or "roles/" in x]
def construct_command(tags = []):
def construct_command(tags):
command = f"ANSIBLE_CONFIG=ansible.cfg /usr/bin/ansible-playbook main.yml --vault-password-file ~/.vault_pass.txt"
command += f" --tags {",".join(tags)}"