#!/bin/sh
#
# This starts ufw automatically at boot-time.

if [ -s /lib/ufw/ufw-init ]; then
    . /lib/ufw/ufw-init start
else 
    echo "Error: ufw-init not found."
    exit 1
fi
