bundlewrap/bundles/steam/metadata.py
mwiegand 1c330b626e wip
2021-10-13 12:35:39 +02:00

43 lines
1.2 KiB
Python

defaults = {
'apt': {
'packages': {
'lib32gcc-s1': {},
'unzip': {},
},
},
'steam': {
'games': {},
}
}
@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': {
'steam-update.service': {
'Unit': {
'Description': 'steam: install and update games',
'After': 'network.target',
},
'Service': {
'Type': 'oneshot',
'User': 'steam',
'Group': 'steam',
'WorkingDirectory': '/opt/steam',
'ExecStart': f'/opt/steam/steamcmd.sh +login anonymous {install_games} validate +quit',
},
'Install': {
'WantedBy': {'multi-user.target'},
},
},
},
},
}