5 lines
98 B
Bash
5 lines
98 B
Bash
#!/bin/sh
|
|
|
|
if [[ "$ACTION" == "ifup" ]]; then
|
|
sleep 10 && /etc/init.d/simple-adblock start &
|
|
fi
|