steam
This commit is contained in:
parent
f48ea22a42
commit
da2f3af643
3 changed files with 36 additions and 27 deletions
|
@ -1,12 +1,18 @@
|
||||||
users = {
|
users = {
|
||||||
'steam': {
|
'steam': {
|
||||||
'home': '/opt/steam',
|
'home': '/opt/steam/steam',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
directories = {
|
directories = {
|
||||||
'/opt/steam': {
|
'/opt/steam': {
|
||||||
'owner': 'steam',
|
'owner': 'steam',
|
||||||
|
'needs': [
|
||||||
|
'zfs_dataset:tank/steam',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
'/opt/steam/steam': {
|
||||||
|
'owner': 'steam',
|
||||||
},
|
},
|
||||||
'/opt/steam/.steam': {
|
'/opt/steam/.steam': {
|
||||||
'owner': 'steam',
|
'owner': 'steam',
|
||||||
|
@ -14,12 +20,12 @@ directories = {
|
||||||
}
|
}
|
||||||
|
|
||||||
files = {
|
files = {
|
||||||
'/opt/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',
|
||||||
},
|
},
|
||||||
'/opt/steam-workshop-downloader': {
|
'/opt/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',
|
||||||
|
@ -27,32 +33,26 @@ files = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
symlinks = {
|
# symlinks = {
|
||||||
# /opt/steam/.steam/sdk32/steamclient.so: cannot open shared object file: No such file or directory
|
# # /opt/steam/.steam/sdk32/steamclient.so: cannot open shared object file: No such file or directory
|
||||||
'/opt/steam/.steam/sdk32': {
|
# '/opt/steam/.steam/sdk32': {
|
||||||
'target': '/opt/steam/linux32',
|
# 'target': '/opt/steam/linux32',
|
||||||
}
|
# }
|
||||||
}
|
# }
|
||||||
|
|
||||||
actions = {
|
actions = {
|
||||||
'extract_steamcmd': {
|
'extract_steamcmd': {
|
||||||
'command': 'tar xfvz /opt/steam/steamcmd_linux.tar.gz --directory /opt/steam',
|
'command': """su - steam -c 'tar xfvz /opt/steam/steam/steamcmd_linux.tar.gz --directory /opt/steam/steam'""",
|
||||||
'unless': 'test -f /opt/steam/steamcmd.sh',
|
'unless': 'test -f /opt/steam/steam/steamcmd.sh',
|
||||||
'needs': [
|
'needs': [
|
||||||
'file:/opt/steam/steamcmd_linux.tar.gz',
|
'file:/opt/steam/steam/steamcmd_linux.tar.gz',
|
||||||
],
|
|
||||||
},
|
|
||||||
'chown_steamcmd': {
|
|
||||||
'command': 'chown -R steam /opt/steam',
|
|
||||||
'triggered': True,
|
|
||||||
'triggered_by': [
|
|
||||||
'action:extract_steamcmd',
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
svc_systemd['steam-update'] = {
|
svc_systemd['steam-update'] = {
|
||||||
'running': False,
|
'running': False,
|
||||||
|
'enabled': False,
|
||||||
'needs': {
|
'needs': {
|
||||||
'file:/usr/local/lib/systemd/system/steam-update.service',
|
'file:/usr/local/lib/systemd/system/steam-update.service',
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,19 +6,24 @@ defaults = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'steam': {
|
'steam': {
|
||||||
'games': {},
|
'games': {
|
||||||
}
|
'left4dead2': 222860,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'zfs': {
|
||||||
|
'datasets': {
|
||||||
|
'tank/steam': {
|
||||||
|
'mountpoint': '/opt/steam',
|
||||||
|
'backup': False,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@metadata_reactor.provides(
|
@metadata_reactor.provides(
|
||||||
'systemd/units',
|
'systemd/units',
|
||||||
)
|
)
|
||||||
def initial_unit(metadata):
|
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 {
|
return {
|
||||||
'systemd': {
|
'systemd': {
|
||||||
'units': {
|
'units': {
|
||||||
|
@ -32,7 +37,10 @@ def initial_unit(metadata):
|
||||||
'User': 'steam',
|
'User': 'steam',
|
||||||
'Group': 'steam',
|
'Group': 'steam',
|
||||||
'WorkingDirectory': '/opt/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': {
|
'Install': {
|
||||||
'WantedBy': {'multi-user.target'},
|
'WantedBy': {'multi-user.target'},
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
'zfs',
|
'zfs',
|
||||||
'lonercrew',
|
'lonercrew',
|
||||||
'build-ci',
|
'build-ci',
|
||||||
|
'steam',
|
||||||
],
|
],
|
||||||
'metadata': {
|
'metadata': {
|
||||||
'id': 'ea29bdf0-0b47-4bf4-8346-67d60c9dc4ae',
|
'id': 'ea29bdf0-0b47-4bf4-8346-67d60c9dc4ae',
|
||||||
|
|
Loading…
Reference in a new issue