blob: 308ba4c322c6acb632ff37976900e6db0c813538 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh /etc/rc.common
START=99
# install cleanup script that executes every 10 min
boot() {
test -f /etc/crontabs/root || touch /etc/crontabs/root
grep -q '/usr/share/wginstaller/wg.sh cleanup_wginterfaces' /etc/crontabs/root || {
echo "*/10 * * * * /usr/share/wginstaller/wg.sh cleanup_wginterfaces" >> /etc/crontabs/root
}
/etc/init.d/cron restart
}
|