mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
Updated lcd4linux pack with backup and init files
This commit is contained in:
1
config/backup/includes/lcd4linux
Normal file
1
config/backup/includes/lcd4linux
Normal file
@@ -0,0 +1 @@
|
||||
/etc/lcd4linux.conf
|
||||
@@ -1 +1,3 @@
|
||||
usr/bin/lcd4linux
|
||||
var/ipfire/backup/addons/includes/lcd4linux
|
||||
etc/rc.d/init.d/lcd4linux
|
||||
|
||||
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = lcd4linux
|
||||
PAK_VER = 1
|
||||
PAK_VER = 2
|
||||
|
||||
DEPS = ""
|
||||
|
||||
@@ -80,5 +80,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/var/ipfire/lcd4linux
|
||||
cd $(DIR_APP) && make $(MAKETUNING)
|
||||
cd $(DIR_APP) && make install
|
||||
install -v -m 644 $(DIR_SRC)/config/backup/includes/lcd4linux /var/ipfire/backup/addons/includes/lcd4linux
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
|
||||
49
src/initscripts/init.d/lcd4linux
Normal file
49
src/initscripts/init.d/lcd4linux
Normal file
@@ -0,0 +1,49 @@
|
||||
#!/bin/sh
|
||||
# Begin $rc_base/init.d/lcd4linux
|
||||
|
||||
|
||||
. /etc/sysconfig/rc
|
||||
. $rc_functions
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
boot_mesg "Starting lcd4linux..."
|
||||
if [ ! -f /etc/lcd4linux.conf ]; then
|
||||
boot_mesg "No configuration file found, not starting."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
loadproc /usr/bin/lcd4linux
|
||||
;;
|
||||
|
||||
stop)
|
||||
boot_mesg "Stopping lcd4linux..."
|
||||
killproc /usr/bin/lcd4linux
|
||||
;;
|
||||
|
||||
reload)
|
||||
boot_mesg "Reloading smbd..."
|
||||
reloadproc /usr/sbin/smbd
|
||||
|
||||
boot_mesg "Reloading nmbd..."
|
||||
reloadproc /usr/sbin/nmbd
|
||||
;;
|
||||
|
||||
restart)
|
||||
$0 stop
|
||||
sleep 3
|
||||
$0 start
|
||||
;;
|
||||
|
||||
status)
|
||||
statusproc /usr/bin/lcd4linux
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|reload|restart|status}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
# End $rc_base/init.d/lcd4linux
|
||||
Reference in New Issue
Block a user