4 lines
75 B
Bash
4 lines
75 B
Bash
#!/bin/sh
|
|
if [ "$1" = "reload" ]; then
|
|
rc-service wg-quick.wg0 restart
|
|
fi |