blob: c6e4f69831f32d318c51f49c84d566903581dd30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
"args" : {
"password" : "0000"
},
"pre" : {
"sh -c \"echo -n -e '[arch_offline]\nSigLevel = Optional TrustAll\nServer = http://localmirror.lan/archlinux/os/${arch}' >> /etc/pacman.conf\"" : null
},
"post" : {
"Setup openssh": {
"pacman -Syy --noconfirm openssh" : null
},
"Setup OpenVPN": {
"pacman -Syy --noconfirm openvpn" : null
},
"Setup autostarts": {
"systemctl enable dhcpcd" : null,
"systemctl enable openssh" : null,
"systemctl enable openvpn-client@testclient" : null
}
}
}
|