#!/usr/bin/env bash

result=$XCCDF_RESULT_FAIL

if ufw status | grep -qw "active"; then
    result=${XCCDF_RESULT_PASS}
fi

exit $result
