This commit is contained in:
cronekorkn 2022-09-24 16:09:03 +02:00
parent f48ea22a42
commit da2f3af643
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
3 changed files with 36 additions and 27 deletions

View file

@ -1,12 +1,18 @@
users = {
'steam': {
'home': '/opt/steam',
'home': '/opt/steam/steam',
},
}
directories = {
'/opt/steam': {
'owner': 'steam',
'needs': [
'zfs_dataset:tank/steam',
],
},
'/opt/steam/steam': {
'owner': 'steam',
},
'/opt/steam/.steam': {
'owner': 'steam',
@ -14,12 +20,12 @@ directories = {
}
files = {
'/opt/steam/steamcmd_linux.tar.gz': {
'/opt/steam/steam/steamcmd_linux.tar.gz': {
'content_type': 'download',
'source': 'https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz',
'owner': 'steam',
},
'/opt/steam-workshop-downloader': {
'/opt/steam/workshop-downloader': {
'content_type': 'download',
'source': 'https://github.com/SegoCode/swd/releases/download/1.1/swd-linux-amd64',
'owner': 'steam',
@ -27,32 +33,26 @@ files = {
},
}
symlinks = {
# /opt/steam/.steam/sdk32/steamclient.so: cannot open shared object file: No such file or directory
'/opt/steam/.steam/sdk32': {
'target': '/opt/steam/linux32',
}
}
# symlinks = {
# # /opt/steam/.steam/sdk32/steamclient.so: cannot open shared object file: No such file or directory
# '/opt/steam/.steam/sdk32': {
# 'target': '/opt/steam/linux32',
# }
# }
actions = {
'extract_steamcmd': {
'command': 'tar xfvz /opt/steam/steamcmd_linux.tar.gz --directory /opt/steam',
'unless': 'test -f /opt/steam/steamcmd.sh',
'command': """su - steam -c 'tar xfvz /opt/steam/steam/steamcmd_linux.tar.gz --directory /opt/steam/steam'""",
'unless': 'test -f /opt/steam/steam/steamcmd.sh',
'needs': [
'file:/opt/steam/steamcmd_linux.tar.gz',
],
},
'chown_steamcmd': {
'command': 'chown -R steam /opt/steam',
'triggered': True,
'triggered_by': [
'action:extract_steamcmd',
'file:/opt/steam/steam/steamcmd_linux.tar.gz',
],
},
}
svc_systemd['steam-update'] = {
'running': False,
'enabled': False,
'needs': {
'file:/usr/local/lib/systemd/system/steam-update.service',
}

View file

@ -6,19 +6,24 @@ defaults = {
},
},
'steam': {
'games': {},
}
'games': {
'left4dead2': 222860,
},
},
'zfs': {
'datasets': {
'tank/steam': {
'mountpoint': '/opt/steam',
'backup': False,
},
},
},
}
@metadata_reactor.provides(
'systemd/units',
)
def initial_unit(metadata):
install_games = ' '.join(
f'+force_install_dir /opt/{name} +app_update {id}'
for name, id in metadata.get('steam/games').items()
)
return {
'systemd': {
'units': {
@ -32,7 +37,10 @@ def initial_unit(metadata):
'User': 'steam',
'Group': 'steam',
'WorkingDirectory': '/opt/steam',
'ExecStart': f'/opt/steam/steamcmd.sh +login anonymous {install_games} validate +quit',
'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()
}
},
'Install': {
'WantedBy': {'multi-user.target'},

View file

@ -16,6 +16,7 @@
'zfs',
'lonercrew',
'build-ci',
'steam',
],
'metadata': {
'id': 'ea29bdf0-0b47-4bf4-8346-67d60c9dc4ae',