Remove the container update script

This commit is contained in:
Mo 2023-08-18 00:32:07 +02:00
parent 7ef34c76ea
commit 29a72ce939

View file

@ -1,26 +0,0 @@
#!/usr/bin/env python3
import subprocess
from pathlib import Path
home = Path.home()
container_scripts_dir = home / "sync/containers"
volumes_dir = home / "volumes"
commands = (
"fish " + str(container_scripts_dir / "gitea.fish"),
"fish " + str(container_scripts_dir / "webhook.fish"),
"python "
+ str(volumes_dir / "advlabdb/repo/podman/deploy.py --skip-traefik --skip-nginx"),
"fish " + str(container_scripts_dir / "nginx.fish"),
"podman auto-update",
)
for command in commands:
subprocess.run(
command,
shell=True,
check=True,
)
print("\nDONE!\n")