left4me: scaffold bundle (items/metadata/README stubs)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
cc1c6a5767
commit
7547d041a2
3 changed files with 31 additions and 0 deletions
3
bundles/left4me/README.md
Normal file
3
bundles/left4me/README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# left4me
|
||||||
|
|
||||||
|
L4D2 game-server management platform. See Task B12 for the full README.
|
||||||
10
bundles/left4me/items.py
Normal file
10
bundles/left4me/items.py
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
# Items for the left4me bundle. Filled in across Tasks B3-B5.
|
||||||
|
# Systemd units come from metadata via bundles/systemd/ — there are no
|
||||||
|
# .service or .slice files in this bundle's files/ tree.
|
||||||
|
|
||||||
|
directories = {}
|
||||||
|
files = {}
|
||||||
|
actions = {}
|
||||||
|
git_deploy = {}
|
||||||
|
pkg_apt = {}
|
||||||
|
svc_systemd = {}
|
||||||
18
bundles/left4me/metadata.py
Normal file
18
bundles/left4me/metadata.py
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
defaults = {
|
||||||
|
'left4me': {
|
||||||
|
'gunicorn_workers': 1,
|
||||||
|
'gunicorn_threads': 32,
|
||||||
|
'job_worker_threads': 4,
|
||||||
|
'port_range_start': 27015,
|
||||||
|
'port_range_end': 27115,
|
||||||
|
},
|
||||||
|
'apt': {
|
||||||
|
'packages': {
|
||||||
|
'p7zip-full': {},
|
||||||
|
'nftables': {},
|
||||||
|
'iproute2': {},
|
||||||
|
'curl': {},
|
||||||
|
'ca-certificates': {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue