diff options
author | Bill Nottingham <notting@redhat.com> | 1999-09-07 20:10:55 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-09-07 20:10:55 +0000 |
commit | ef608d73d27c2e70bdc34f874bf758a5c9623872 (patch) | |
tree | 38035447a437c2e978f75c33fbb795e0e5beca43 | |
parent | bf2474a63c31403c2ea1e8def9aafb58beaee15b (diff) | |
download | initscripts-ef608d73d27c2e70bdc34f874bf758a5c9623872.tar initscripts-ef608d73d27c2e70bdc34f874bf758a5c9623872.tar.gz initscripts-ef608d73d27c2e70bdc34f874bf758a5c9623872.tar.bz2 initscripts-ef608d73d27c2e70bdc34f874bf758a5c9623872.tar.xz initscripts-ef608d73d27c2e70bdc34f874bf758a5c9623872.zip |
*** empty log message ***
-rw-r--r-- | ChangeLog | 45 | ||||
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | initscripts.spec | 6 | ||||
-rwxr-xr-x | rc.d/rc.sysinit | 5 | ||||
-rw-r--r-- | sys-unconfig | 4 |
5 files changed, 58 insertions, 5 deletions
@@ -1,3 +1,48 @@ +1999-09-07 Bill Nottingham <notting@redhat.com> + + * prefdm: add path to prefdm + +1999-09-07 Michael K. Johnson <johnsonm@redhat.com> + + * sysconfig/network-scripts/network-functions: + work right in the background + + * sysconfig/network-scripts/ifup-ppp: + work with ppp-watch + + * src/ppp-watch.c: + do not overload physicalDevice + sleep only when appropriate + +1999-09-07 Bill Nottingham <notting@redhat.com> + + * rc.d/rc.sysinit: + add an 'unconfigure' sort of thing. + +1999-09-07 Michael K. Johnson <johnsonm@redhat.com> + + * src/Makefile: link statically + + * src/ppp-watch.c: + seems to work for basic operation + + * sysconfig/network-scripts/ifup-post: + do not read /etc/resolv.conf forever... + + * initscripts.spec, ppp/ip-up, src/ppp-watch.c, sysconfig/network-scripts/ifdown-ppp, sysconfig/network-scripts/ifup-ppp: + first attempt at integrating ppp-watch + +1999-09-06 Michael K. Johnson <johnsonm@redhat.com> + + * src/Makefile, src/ppp-watch.c, src/shvar.c, src/shvar.h: + first pass at ppp-watch + + * sysconfig/network-scripts/ifup-post, sysconfig/network-scripts/ifup-ppp, sysconfig.txt: + DEFROUTE defaults on; PEERDNS documented and defaults on + + * sysconfig/network-scripts/ifup-ppp: + chat script only needs to exist if wvdial not in use + 1999-09-04 Bill Nottingham <notting@redhat.com> * prefdm: @@ -7,13 +7,14 @@ all: (cd src; make CFLAGS="$(CFLAGS)") install: - mkdir -p $(ROOT)/etc/profile.d $(ROOT)/sbin + mkdir -p $(ROOT)/etc/profile.d $(ROOT)/sbin $(ROOT)/usr/sbin install -m644 inittab $(ROOT)/etc install -m644 adjtime $(ROOT)/etc install -m755 setsysfont $(ROOT)/sbin install -m755 lang.sh $(ROOT)/etc/profile.d install -m755 lang.csh $(ROOT)/etc/profile.d install -m755 service $(ROOT)/sbin + install -m755 sys-unconfig $(ROOT)/usr/sbin mkdir -p $(ROOT)/etc/X11 install -m755 prefdm $(ROOT)/etc/X11/prefdm mkdir -p $(ROOT)/etc/sysconfig diff --git a/initscripts.spec b/initscripts.spec index 23e1094f..6da3f05f 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -170,6 +170,7 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) /etc/rc.d/rc.local %config /etc/profile.d/lang.sh %config /etc/profile.d/lang.csh +/usr/sbin/sys-unconfig /sbin/setsysfont /bin/doexec /bin/ipcalc @@ -197,8 +198,11 @@ rm -rf $RPM_BUILD_ROOT %ghost %attr(0664,root,utmp) /var/run/utmp %changelog +* Tue Sep 7 1999 Bill Nottingham <notting@redhat.com> +- add an 'unconfigure' sort of thing + * Mon Sep 06 1999 Michael K. Johnson <johnsonm@redhat.com> -- added ppp-watch to make "ifup ppp*" syncronous +- added ppp-watch to make "ifup ppp*" synchronous * Fri Sep 3 1999 Bill Nottingham <notting@redhat.com> - require lsof diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 0755d5f2..749cc592 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -377,8 +377,6 @@ if [ ! -f /fastboot ]; then fi fi - -{ # Mount all other filesystems (except for NFS and /proc, which is already # mounted). Contrary to standard usage, # filesystems are NOT unmounted in single user mode. @@ -388,7 +386,7 @@ action "Mounting local filesystems" mount -a -t nonfs,smbfs,ncpfs,proc if [ -f /.unconfigured ]; then if [ -x /usr/sbin/rootconfig ]; then /usr/sbin/rootconfig - else if [ -x /usr/bin/passwd ]; then + elif [ -x /usr/bin/passwd ]; then /usr/bin/passwd root fi if [ -x /usr/sbin/netconfig ]; then @@ -426,6 +424,7 @@ if [ -x /sbin/quotaon ]; then action "Turning on user and group quotas for local filesystems" /sbin/quotaon -a fi +{ # Clean out /etc. rm -f /etc/mtab~ /fastboot /fsckoptions /forcefsck diff --git a/sys-unconfig b/sys-unconfig new file mode 100644 index 00000000..2b9a3c58 --- /dev/null +++ b/sys-unconfig @@ -0,0 +1,4 @@ +#!/bin/sh + +touch /.unconfigured +halt |