diff options
-rw-r--r-- | po/Makefile | 4 | ||||
-rw-r--r-- | sys-unconfig | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/po/Makefile b/po/Makefile index 271ca28b..d750ccc4 100644 --- a/po/Makefile +++ b/po/Makefile @@ -10,7 +10,9 @@ NLSPACKAGE = initscripts CATALOGS = $(shell ls *.po) FMTCATALOGS = $(patsubst %.po,%.mo,$(CATALOGS)) -POTFILES = /etc/rc.d/init.d/* /etc/rc.d/rc /etc/rc.d/rc.* $(shell ls /etc/sysconfig/network-scripts/* | grep -v ifcfg-) +POTFILES = /etc/ppp/ip* /etc/rc.d/init.d/* /etc/rc.d/rc /etc/rc.d/rc.* \ + $(shell ls /etc/sysconfig/network-scripts/* | grep -v ifcfg-) \ + /sbin/service /usr/sbin/sys-unconfig all: $(NLSPACKAGE).pot $(FMTCATALOGS) diff --git a/sys-unconfig b/sys-unconfig index 2b9a3c58..e6b3416d 100644 --- a/sys-unconfig +++ b/sys-unconfig @@ -1,4 +1,11 @@ #!/bin/sh +. /etc/init.d/functions + +if [ $# -ne 0 ]; then + echo $"Usage: sys-unconfig" >&2 + exit 1 +fi + touch /.unconfigured halt |