#! /bin/sh #---------------------------------------------------------------------------- # /etc/init.d/base - init script for base # # Creation: 2005-04-12 max # Last Update: $Id$ # # Copyright (c) 2001-@@YEAR@@ the eisfair team, team(at)eisfair(dot)org # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #---------------------------------------------------------------------------- # include eislib . /var/install/include/eislib ### main case ${1} in restart) echo echo mecho --info "It is recommended to reboot your system if" mecho --info "you changed base settings (e.g. IP address)" if [ -f /etc/init.d/pcmcia ] then mecho -n --info "For" mecho -n " 'pcmcia'" mecho --info " changes no reboot is needed" fi echo mecho -n --info "For" mecho -n " 'atd'" mecho --info " changes no reboot is needed" echo ;; *) echo "Usage: ${0} {restart}" ;; esac