mroe steam
This commit is contained in:
parent
da2f3af643
commit
46e180ee96
2 changed files with 16 additions and 6 deletions
|
@ -7,16 +7,23 @@ users = {
|
|||
directories = {
|
||||
'/opt/steam': {
|
||||
'owner': 'steam',
|
||||
'group': 'steam',
|
||||
'needs': [
|
||||
'zfs_dataset:tank/steam',
|
||||
],
|
||||
},
|
||||
'/opt/steam/steam': {
|
||||
'owner': 'steam',
|
||||
'group': 'steam',
|
||||
},
|
||||
'/opt/steam/.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 = {
|
||||
|
@ -24,11 +31,13 @@ files = {
|
|||
'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',
|
||||
},
|
||||
}
|
||||
|
|
|
@ -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': {
|
||||
|
|
Loading…
Reference in a new issue