#!/bin/sh

# Check the repository for sensitive data...
luci -c

# If sensitive data is present, prevent commit
if [ $? -ne 0 ] ; then
    exit 1
fi
