7 lines
154 B
Bash
Executable file
7 lines
154 B
Bash
Executable file
#!/bin/sh
|
|
|
|
lighthttpd_conf=/etc/lighttpd/lighttpd.conf
|
|
wg-quick up wg0
|
|
lighttpd -tt -f "$lighthttpd_conf" && lighttpd -f "$lighthttpd_conf" || true
|
|
|
|
"$@"
|