diff options
author | Bill Nottingham <notting@redhat.com> | 2009-10-26 16:06:14 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2009-10-26 16:06:14 -0400 |
commit | b254136d1a593015ce8b8be57c3cd77cb4897fe1 (patch) | |
tree | 8a0edbbe2c87bed62bd807be430ef51ac45d3f93 | |
parent | 9be11466392c3e285571a347b578681ddb3e230a (diff) | |
download | initscripts-b254136d1a593015ce8b8be57c3cd77cb4897fe1.tar initscripts-b254136d1a593015ce8b8be57c3cd77cb4897fe1.tar.gz initscripts-b254136d1a593015ce8b8be57c3cd77cb4897fe1.tar.bz2 initscripts-b254136d1a593015ce8b8be57c3cd77cb4897fe1.tar.xz initscripts-b254136d1a593015ce8b8be57c3cd77cb4897fe1.zip |
Remove long since deprecated initlog.
-rw-r--r-- | initscripts.spec | 2 | ||||
-rw-r--r-- | src/Makefile | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/initscripts.spec b/initscripts.spec index 223ae146..6529b497 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -215,7 +215,6 @@ rm -rf $RPM_BUILD_ROOT /sbin/getkey /sbin/securetty %attr(2755,root,root) /sbin/netreport -/sbin/initlog /lib/udev/rules.d/* /lib/udev/rename_device /lib/udev/console_init @@ -235,7 +234,6 @@ rm -rf $RPM_BUILD_ROOT /etc/ppp/ip-down.ipv6to4 /etc/ppp/ipv6-up /etc/ppp/ipv6-down -%config(noreplace) /etc/initlog.conf %dir /etc/NetworkManager %dir /etc/NetworkManager/dispatcher.d /etc/NetworkManager/dispatcher.d/00-netreport diff --git a/src/Makefile b/src/Makefile index 248855b2..54361c90 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,6 +1,6 @@ CFLAGS+=$(RPM_OPT_FLAGS) -Wall -D_GNU_SOURCE -PROGS=usernetctl doexec netreport testd usleep ipcalc initlog \ +PROGS=usernetctl doexec netreport testd usleep ipcalc \ fstab-decode getkey ppp-watch consoletype genhostid rename_device \ console_init console_check securetty PPPWATCH_OBJS=ppp-watch.o shvar.o @@ -27,7 +27,6 @@ install: install -m 755 ipcalc $(ROOT)/bin/ipcalc install -m 755 fstab-decode $(ROOT)/sbin/fstab-decode install -m 755 genhostid $(ROOT)/sbin/genhostid - install -m 755 initlog $(ROOT)/sbin/initlog install -m 755 getkey $(ROOT)/sbin/getkey install -m 755 ppp-watch $(ROOT)/sbin/ppp-watch install -m 755 consoletype $(ROOT)/sbin/consoletype @@ -36,7 +35,6 @@ install: install -m 755 console_init $(ROOT)/lib/udev/console_init install -m 755 console_check $(ROOT)/lib/udev/console_check install -m 755 ccw_init $(ROOT)/lib/udev/ccw_init - install -m 644 initlog.1 $(ROOT)$(mandir)/man1 install -m 644 genhostid.1 $(ROOT)$(mandir)/man1 install -m 644 doexec.1 $(ROOT)$(mandir)/man1 install -m 644 getkey.1 $(ROOT)$(mandir)/man1 @@ -47,7 +45,6 @@ install: install -m 644 ppp-watch.8 $(ROOT)$(mandir)/man8 install -m 644 ipcalc.1 $(ROOT)$(mandir)/man1 install -m 644 consoletype.1 $(ROOT)$(mandir)/man1 - install -m 644 initlog.conf $(ROOT)/etc # this daemon and initscript are useful for testing the up/down/status stuff # not installed by default, only comes from sources. |