
# Rename .new files to the standard name if they don't exist
function file_config () { 
 if [ ! -f "${1}" ]; then
    mv -f ${1}.new ${1} >/dev/null 2>&1
 fi
}

# Rename the .new files 
file_config etc/webalizer.conf

