9 lines
88 B
Bash
9 lines
88 B
Bash
#!/bin/sh
|
|
|
|
[ "$1" != "start" ] && exit 0
|
|
|
|
ipset create unblock hash:net -exist
|
|
|
|
exit 0
|
|
|