diff --git a/bundles/steam/items.py b/bundles/steam/items.py index 12d5e1f..9a196ee 100644 --- a/bundles/steam/items.py +++ b/bundles/steam/items.py @@ -7,28 +7,37 @@ users = { directories = { '/opt/steam': { 'owner': 'steam', + 'group': 'steam', 'needs': [ 'zfs_dataset:tank/steam', ], }, '/opt/steam/steam': { 'owner': 'steam', - }, - '/opt/steam/.steam': { - 'owner': 'steam', + 'group': 'steam', }, } +for game in node.metadata.get('steam/games'): + directories[f'/opt/steam/{game}'] = { + 'owner': 'steam', + 'group': 'steam', + 'needed_by': [ + 'svc_systemd:steam-update', + ], + } files = { '/opt/steam/steam/steamcmd_linux.tar.gz': { 'content_type': 'download', 'source': 'https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz', 'owner': 'steam', + 'group': 'steam', }, - '/opt/steam/workshop-downloader': { + '/opt/steam/steam/workshop-downloader': { 'content_type': 'download', 'source': 'https://github.com/SegoCode/swd/releases/download/1.1/swd-linux-amd64', 'owner': 'steam', + 'group': 'steam', 'mode': '750', }, } diff --git a/bundles/steam/metadata.py b/bundles/steam/metadata.py index def65d1..199d35a 100644 --- a/bundles/steam/metadata.py +++ b/bundles/steam/metadata.py @@ -20,6 +20,7 @@ defaults = { }, } + @metadata_reactor.provides( 'systemd/units', ) @@ -38,8 +39,8 @@ def initial_unit(metadata): 'Group': 'steam', 'WorkingDirectory': '/opt/steam', 'ExecStart': { - f'/opt/steam/steam/steamcmd.sh +force_install_dir /opt/steam/{name} +login anonymous +app_update {id} validate +quit' - for name, id in metadata.get('steam/games').items() + f'/opt/steam/steam/steamcmd.sh +force_install_dir /opt/steam/{game} +login anonymous +app_update {id} validate +quit' + for game, id in metadata.get('steam/games').items() } }, 'Install': {