From 38eab209a2f2688aa6a8c5a61bccb3bda8b5f6a7 Mon Sep 17 00:00:00 2001 From: Jacob Babor Date: Tue, 21 May 2024 18:56:46 -0500 Subject: [PATCH] Remove a bunch more unused games --- playbooks/prod_web.yml | 1 - playbooks/tasks/game/css.yml | 19 ------------------- playbooks/tasks/game/gmod.yml | 25 ------------------------- playbooks/tasks/game/satisfactory.yml | 17 ----------------- playbooks/tasks/game/scpsl.yml | 18 ------------------ playbooks/tasks/game/starbound.yml | 15 --------------- 6 files changed, 95 deletions(-) delete mode 100644 playbooks/tasks/game/css.yml delete mode 100644 playbooks/tasks/game/gmod.yml delete mode 100644 playbooks/tasks/game/satisfactory.yml delete mode 100644 playbooks/tasks/game/scpsl.yml delete mode 100644 playbooks/tasks/game/starbound.yml diff --git a/playbooks/prod_web.yml b/playbooks/prod_web.yml index deaf81c..599fd2e 100755 --- a/playbooks/prod_web.yml +++ b/playbooks/prod_web.yml @@ -34,7 +34,6 @@ - game/factorio.yml - game/minecraft-vanilla.yml - game/minecraft-direwolf20.yml - - game/satisfactory.yml - game/zomboid.yml tags: [ always ] roles: diff --git a/playbooks/tasks/game/css.yml b/playbooks/tasks/game/css.yml deleted file mode 100644 index da5e549..0000000 --- a/playbooks/tasks/game/css.yml +++ /dev/null @@ -1,19 +0,0 @@ -# vim:ft=ansible: -- name: docker deploy css - docker_container: - name: css - state: started - image: foxylion/steam-css - restart_policy: unless-stopped - command: "/home/steam/entrypoint.sh update" - pull: yes - ports: - - "1200:1200" - - "26901:26901/udp" - - "27005:27005/udp" - - "27015:27015" - - "27015:27015/udp" - - "27020:27020/udp" - volumes: - - /data/css/server.cfg:/home/steam/css/cstrike/cfg/my-server.cfg - tags: [ docker, css ] diff --git a/playbooks/tasks/game/gmod.yml b/playbooks/tasks/game/gmod.yml deleted file mode 100644 index e08061c..0000000 --- a/playbooks/tasks/game/gmod.yml +++ /dev/null @@ -1,25 +0,0 @@ -# vim:ft=ansible: -- name: docker deploy gmod - docker_container: - name: gmod - state: started - image: hackebein/garrysmod - restart_policy: unless-stopped - pull: yes - tty: yes - env: - AUTHKEY: "{{ steam_apikey }}" - GAMEMODE: prop_hunt - MAP: ph_islandhouse - WORKSHOP: "2155532035" - WORKSHOPDL: "2155532035" - ports: - - "1200:1200" - - "26901:26901/udp" - - "27005:27005/udp" - - "27015:27015" - - "27015:27015/udp" - - "27020:27020/udp" - volumes: - - /data/gmod:/opt/overlay - tags: [ docker, gmod ] diff --git a/playbooks/tasks/game/satisfactory.yml b/playbooks/tasks/game/satisfactory.yml deleted file mode 100644 index c665b8b..0000000 --- a/playbooks/tasks/game/satisfactory.yml +++ /dev/null @@ -1,17 +0,0 @@ -# vim:ft=ansible: -- name: docker deploy satisfactory - docker_container: - name: satisfactory - state: absent - image: wolveix/satisfactory-server:latest - restart_policy: unless-stopped - pull: yes - env: - MAXPLAYERS: "8" - ports: - - '7777:7777/udp' - - '15000:15000/udp' - - '15777:15777/udp' - volumes: - - /data/satisfactory/config:/config - tags: [ docker, satisfactory ] diff --git a/playbooks/tasks/game/scpsl.yml b/playbooks/tasks/game/scpsl.yml deleted file mode 100644 index 87cebce..0000000 --- a/playbooks/tasks/game/scpsl.yml +++ /dev/null @@ -1,18 +0,0 @@ -# vim:ft=ansible: -# https://github.com/mkrupczak3/SCP-SECRET-LAB-DOCKER -# Kinda forked it and changed a few settings tho -- name: docker deploy scpsl - docker_container: - name: scpsl - state: started - image: rehashedsalt/scpsl:latest - restart_policy: unless-stopped - pull: yes - ports: - - "7777-7784:7777-7784/udp" - - "7777-7784:7777-7784" - volumes: - - /etc/localtime:/etc/localtime:ro - - /data/scpsl/steamcmd:/home/steam/steamcmd - - /data/scpsl/scp_server:/home/steam/scp_server - tags: [ docker, scpsl ] diff --git a/playbooks/tasks/game/starbound.yml b/playbooks/tasks/game/starbound.yml deleted file mode 100644 index 28c5380..0000000 --- a/playbooks/tasks/game/starbound.yml +++ /dev/null @@ -1,15 +0,0 @@ -# vim:ft=ansible: -- name: docker deploy starbound - docker_container: - name: starbound - state: absent - image: didstopia/starbound-server - restart_policy: unless-stopped - pull: yes - env: - SKIP_STEAMCMD: "true" - ports: - - "21025:21025" - volumes: - - /data/starbound/main:/steamcmd/starbound - tags: [ docker, starbound ]