#!/bin/sh # # linuxconf Hook to allow linuxconf to put into place any # linuxconf-specific policies # # chkconfig: 2345 99 00 # description: post-startup hook for linuxconf # description(pt_BR): gancho pós-inicialização do linuxconf # # See how we were called. . /etc/rc.d/init.d/functions case "$1" in start) if [ -x /bin/linuxconf ] ; then gprintf "%s final setup\n" "Linuxconf" /bin/netconf --S99linuxconf fi ;; stop) # ignore ;; *) gprintf "Usage: %s start\n" "$0" exit 1 esac exit 0