wip
This commit is contained in:
parent
e26b259009
commit
1c330b626e
4 changed files with 6 additions and 6 deletions
|
@ -47,7 +47,7 @@ defaults = {
|
||||||
'Environment': 'USER=git HOME=/home/git GITEA_WORK_DIR=/var/lib/gitea',
|
'Environment': 'USER=git HOME=/home/git GITEA_WORK_DIR=/var/lib/gitea',
|
||||||
},
|
},
|
||||||
'Install': {
|
'Install': {
|
||||||
'WantedBy': 'multi-user.target',
|
'WantedBy': {'multi-user.target'},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -49,7 +49,7 @@ def workshop(metadata):
|
||||||
'ExecStart': f'/bin/bash -c {quote(command)}',
|
'ExecStart': f'/bin/bash -c {quote(command)}',
|
||||||
},
|
},
|
||||||
'Install': {
|
'Install': {
|
||||||
'WantedBy': ['multi-user.target'],
|
'WantedBy': {'multi-user.target'},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -78,7 +78,7 @@ def server_units(metadata):
|
||||||
'Restart': 'on-failure',
|
'Restart': 'on-failure',
|
||||||
},
|
},
|
||||||
'Install': {
|
'Install': {
|
||||||
'WantedBy': ['multi-user.target'],
|
'WantedBy': {'multi-user.target'},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@ def initial_unit(metadata):
|
||||||
'ExecStart': f'/opt/steam/steamcmd.sh +login anonymous {install_games} validate +quit',
|
'ExecStart': f'/opt/steam/steamcmd.sh +login anonymous {install_games} validate +quit',
|
||||||
},
|
},
|
||||||
'Install': {
|
'Install': {
|
||||||
'WantedBy': 'multi-user.target',
|
'WantedBy': {'multi-user.target'},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -21,13 +21,13 @@ def units(metadata):
|
||||||
if extension == 'service':
|
if extension == 'service':
|
||||||
units[name] = {
|
units[name] = {
|
||||||
'Install': {
|
'Install': {
|
||||||
'WantedBy': ['multi-user.target'],
|
'WantedBy': {'multi-user.target'},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elif extension == 'timer':
|
elif extension == 'timer':
|
||||||
units[name] = {
|
units[name] = {
|
||||||
'Install': {
|
'Install': {
|
||||||
'WantedBy': ['timers.target'],
|
'WantedBy': {'timers.target'},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue