mroe steam

This commit is contained in:
cronekorkn 2022-09-24 16:31:06 +02:00
parent da2f3af643
commit 46e180ee96
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
2 changed files with 16 additions and 6 deletions

View file

@ -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',
},
}

View file

@ -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': {