#!/bin/sh
#
# /etc/rc.d/rc.local:  Local system initialization script.
#
# Put any local setup commands in here:

# Perform some post-install setup, this will be executed only once !
if [ -x /etc/rc.d/rc.postinstall ]; then
  /etc/rc.d/rc.postinstall
  chmod 644 /etc/rc.d/rc.postinstall
fi

# Start Webmin if any
if [ -x /etc/rc.d/rc.webmin ]; then
  /etc/rc.d/rc.webmin start
fi

# Enable numlock or not
if [ -x /etc/rc.d/rc.numlock ]; then
  /etc/rc.d/rc.numlock start
fi
