23 lines
463 B
TOML
23 lines
463 B
TOML
name = "common"
|
|
description = "Common set of utilities"
|
|
|
|
[pkgs]
|
|
openssh-server = {}
|
|
openssh-client = {}
|
|
git = {}
|
|
netselect = { distros = ["debian", "ubuntu"] }
|
|
reflector = { distros = ["arch"] }
|
|
|
|
[actions]
|
|
setup_ssh = ["sh", "./scripts/%"]
|
|
reflector = { args = ["sh", "./scripts/setup_pm/%"], distro = ["arch"] }
|
|
netselect = { args = [
|
|
"sh",
|
|
"./scripts/setup_pm/%",
|
|
], distro = [
|
|
"debian",
|
|
"ubuntu",
|
|
] }
|
|
|
|
[super_actions]
|
|
pam_wheel = ["sh", "./scripts/%"]
|