mroe steam
This commit is contained in:
parent
da2f3af643
commit
46e180ee96
2 changed files with 16 additions and 6 deletions
|
@ -7,28 +7,37 @@ users = {
|
||||||
directories = {
|
directories = {
|
||||||
'/opt/steam': {
|
'/opt/steam': {
|
||||||
'owner': 'steam',
|
'owner': 'steam',
|
||||||
|
'group': 'steam',
|
||||||
'needs': [
|
'needs': [
|
||||||
'zfs_dataset:tank/steam',
|
'zfs_dataset:tank/steam',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
'/opt/steam/steam': {
|
'/opt/steam/steam': {
|
||||||
'owner': 'steam',
|
'owner': 'steam',
|
||||||
},
|
'group': 'steam',
|
||||||
'/opt/steam/.steam': {
|
|
||||||
'owner': '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 = {
|
files = {
|
||||||
'/opt/steam/steam/steamcmd_linux.tar.gz': {
|
'/opt/steam/steam/steamcmd_linux.tar.gz': {
|
||||||
'content_type': 'download',
|
'content_type': 'download',
|
||||||
'source': 'https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz',
|
'source': 'https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz',
|
||||||
'owner': 'steam',
|
'owner': 'steam',
|
||||||
|
'group': 'steam',
|
||||||
},
|
},
|
||||||
'/opt/steam/workshop-downloader': {
|
'/opt/steam/steam/workshop-downloader': {
|
||||||
'content_type': 'download',
|
'content_type': 'download',
|
||||||
'source': 'https://github.com/SegoCode/swd/releases/download/1.1/swd-linux-amd64',
|
'source': 'https://github.com/SegoCode/swd/releases/download/1.1/swd-linux-amd64',
|
||||||
'owner': 'steam',
|
'owner': 'steam',
|
||||||
|
'group': 'steam',
|
||||||
'mode': '750',
|
'mode': '750',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,7 @@ defaults = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@metadata_reactor.provides(
|
@metadata_reactor.provides(
|
||||||
'systemd/units',
|
'systemd/units',
|
||||||
)
|
)
|
||||||
|
@ -38,8 +39,8 @@ def initial_unit(metadata):
|
||||||
'Group': 'steam',
|
'Group': 'steam',
|
||||||
'WorkingDirectory': '/opt/steam',
|
'WorkingDirectory': '/opt/steam',
|
||||||
'ExecStart': {
|
'ExecStart': {
|
||||||
f'/opt/steam/steam/steamcmd.sh +force_install_dir /opt/steam/{name} +login anonymous +app_update {id} validate +quit'
|
f'/opt/steam/steam/steamcmd.sh +force_install_dir /opt/steam/{game} +login anonymous +app_update {id} validate +quit'
|
||||||
for name, id in metadata.get('steam/games').items()
|
for game, id in metadata.get('steam/games').items()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'Install': {
|
'Install': {
|
||||||
|
|
Loading…
Reference in a new issue