mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 11:43:25 +02:00
nfs: Bump release to install rpcbind dependency
This update will pull in rpcbind as new dependency which will automatically remove portmap when installed. Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
2
lfs/nfs
2
lfs/nfs
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
|
|||||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||||
PROG = nfs
|
PROG = nfs
|
||||||
PAK_VER = 7
|
PAK_VER = 8
|
||||||
|
|
||||||
DEPS = "rpcbind"
|
DEPS = "rpcbind"
|
||||||
|
|
||||||
|
|||||||
@@ -22,9 +22,17 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
#
|
#
|
||||||
. /opt/pakfire/lib/functions.sh
|
. /opt/pakfire/lib/functions.sh
|
||||||
|
|
||||||
# remove portmap
|
# remove portmap
|
||||||
/etc/init.d/portmap stop
|
if [ -e "/opt/pakfire/db/installed/meta-portmap" ]; then
|
||||||
rm -rf /etc/rc.d/rc*.d/*portmap /sbin/portmap /etc/rc.d/init.d/portmap
|
/etc/init.d/portmap stop
|
||||||
|
rm -rf /etc/rc.d/rc*.d/*portmap \
|
||||||
|
/sbin/portmap \
|
||||||
|
/etc/rc.d/init.d/portmap \
|
||||||
|
/opt/pakfire/db/installed/meta-portmap \
|
||||||
|
/opt/pakfire/db/rootfiles/portmap
|
||||||
|
fi
|
||||||
|
|
||||||
# install rpcbind
|
# install rpcbind
|
||||||
extract_files
|
extract_files
|
||||||
start_service --background ${NAME}
|
start_service --background ${NAME}
|
||||||
|
|||||||
Reference in New Issue
Block a user