[Eisfair] Eigene Bootbefehle anlegen
Marcus Röckrath
marcus.roeckrath at gmx.de
So Apr 16 09:26:20 CEST 2023
Hallo,
da der Default /etc/init.d/boot.local für eigene Startbefehle zu früh kommt,
folgender Vorschlag:
Anlegen eines Startskriptes /etc/init.d/mybootskript
Der gewählte Dateiname sollte nach keinem installierten Paket entsprechen.
Wie so ein Skript aussehen hat, kann man in boot.local (sofern vorhanden)
oder anderen Skripten /etc/init.d abschauen. Hier mal ein Grundgerüst:
#! /bin/sh
#----------------------------------------------------------------------------
# /etc/init.d/mybootskript - rc script for gerneral purpose
#
# Creation: 19.07.2003 fm
# Last Update: 20.07.2003 fm
#
# Copyright (c) 2003 Frank Meyer <frank at eisfair.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.
#----------------------------------------------------------------------------
case $1
in
start)
;;
stop)
;;
esac
exit 0
In /etc/rc2.d wird dieses dann verlinkt:
cd /etc/rc2.d
ln -s ../init.d/mybootskript S99mybootskript
ln -s ../init.d/mybootskript K01mybootskript
--
Gruß Marcus
[eisfair-Team]
Mehr Informationen über die Mailingliste Eisfair