#!/bin/sh # # startscript: Führt verschiedene wichtige Dinge aus # # chkconfig: 5 99 1 # description: Führt verschiedene wichtige Dinge aus: \ # BIOS für 1400x1050er Auflösung überschreiben # # Source function library. . /etc/rc.d/init.d/functions start() { # echo -n $"startscript: " /usr/local/sbin/915resolution 5c 1400 1050 32 } stop() { /bin/true } # See how we were called. case "$1" in start) start ;; stop) stop ;; status) ;; restart) stop start ;; condrestart) ;; reload) ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|reload}" ;; esac exit $RETVAL