6 lines
111 B
Bash
6 lines
111 B
Bash
#!/bin/sh
|
|
echo "Setting up firewall..."
|
|
|
|
apk add nftables
|
|
rc-update add nftables boot
|
|
rc-service nftables start |