Browse code

initscripts: bump up to 10.04

Change-Id: Id77dcdb1a4a475c2043d42b2ae5d1e2dd9a2655b
Reviewed-on: http://photon-jenkins.eng.vmware.com:8082/9746
Tested-by: gerrit-photon <photon-checkins@vmware.com>
Reviewed-by: Anish Swaminathan <anishs@vmware.com>

gerrit-photon authored on 2020/06/23 11:58:11
Showing 5 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,2 @@
0
+0.0 0 0.0
1
+0
0 2
deleted file mode 100644
... ...
@@ -1,233 +0,0 @@
1
-+++ b/po/xgettext_sh.py	2020-06-23 21:31:05.337854722 +0800
2
-@@ -1,4 +1,4 @@
3
--#!/usr/bin/python
4
-+#!/usr/bin/python3
5
- # sh_xgettext
6
- # Arnaldo Carvalho de Melo <acme@conectiva.com.br>
7
- # Wed Mar 10 10:24:35 EST 1999
8
-@@ -24,36 +24,76 @@
9
- 
10
- 
11
- from sys import argv
12
--from string import find, split, strip
13
-+import string
14
- import re
15
- 
16
- s = {}
17
- pattern = re.compile('[ =]\$"')
18
- 
19
- def xgettext(arq):
20
--	line = 0
21
--	f = open(arq, "r")
22
--        while 1:
23
--		l = f.readline()
24
--		if not l: break
25
--		line = line + 1
26
--		if l[0:1] == '#':       continue
27
--		elif l[0:1] == '\n':    continue
28
--		else:
29
--			for match in pattern.finditer(l):
30
--				pos = match.start()
31
--				p1 = l.find('"',pos) + 1
32
--				p2 = p1+1
33
--				while 1:
34
--                                    p2 = l.find('"',p2)
35
--                                    if p2 == -1:
36
--                                        p2 = p1
37
--                                        break
38
--                                    if l[p2-1] == '\\':
39
--                                        p2 = p2 + 1
40
--                                    else:
41
--                                        break
42
--                                text = l[p1:p2]
43
-+    line = 0
44
-+    f = open(arq, "r")
45
-+
46
-+    while 1:
47
-+        l = f.readline()
48
-+
49
-+        if not l:
50
-+            break;
51
-+
52
-+        line = line + 1
53
-+        if l[0:1] == '#':
54
-+            continue
55
-+        elif l[0:1] == '\n':
56
-+            continue
57
-+        else:
58
-+            for match in pattern.finditer(l):
59
-+                pos = match.start()
60
-+                p1 = l.find('"', pos) + 1
61
-+                p2 = p1 + 1
62
-+
63
-+                while 1:
64
-+                    p2 = l.find('"', p2)
65
-+                    if p2 == -1:
66
-+                        p2 = p1
67
-+                        break
68
-+                    if l[p2-1] == '\\':
69
-+                        p2 = p2 + 1
70
-+                    else:
71
-+                        break
72
-+                text = l[p1:p2]
73
-+
74
-+                if text in s:
75
-+                    s[text].append((arq, line))
76
-+                else:
77
-+                    s[text] = [(arq, line)]
78
-+
79
-+    f.close()
80
-+
81
-+def xgettext(arq):
82
-+    line = 0
83
-+    f = open(arq, "r")
84
-+
85
-+    while 1:
86
-+        l = f.readline()
87
-+        if not l: break
88
-+        line = line + 1
89
-+        if l[0:1] == '#':       continue
90
-+        elif l[0:1] == '\n':    continue
91
-+        else:
92
-+            for match in pattern.finditer(l):
93
-+                pos = match.start()
94
-+                p1 = l.find('"',pos) + 1
95
-+                p2 = p1+1
96
-+                while 1:
97
-+                    p2 = l.find('"',p2)
98
-+                    if p2 == -1:
99
-+                        p2 = p1
100
-+                        break
101
-+                    if l[p2-1] == '\\':
102
-+                        p2 = p2 + 1
103
-+                    else:
104
-+                        break
105
-+                text = l[p1:p2]
106
- 				#text = split(l[pos:], '"')[1]
107
- 				if s.has_key(text):
108
- 				    s[text].append((arq, line))
109
-@@ -62,33 +102,39 @@ def xgettext(arq):
110
- 	f.close()
111
- 
112
- def print_header():
113
--	print 'msgid ""' 
114
--	print 'msgstr ""' 
115
--	print '"Project-Id-Version: \\n"'
116
--	print '"PO-Revision-Date: YYYY-MM-DD HH:MM TZO DST\\n"'
117
--	print '"Last-Translator: \\n"'
118
--	print '"Language-Team: <XX@li.org>\\n"'
119
--	print '"MIME-Version: 1.0\\n"'
120
--	print '"Content-Type: text/plain; charset=ISO-8859-1\\n"'
121
--	print '"Content-Transfer-Encoding: 8-bit\\n"\n'
122
-+    print('msgid ""')
123
-+    print('msgstr ""')
124
-+    print('"Project-Id-Version: PACKAGE VERSION\\n"')
125
-+    print('"Report-Msgid-Bugs-To: \\n"')
126
-+    print('"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\\n"')
127
-+    print('"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n"')
128
-+    print('"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n"')
129
-+    print('"Language-Team: LANGUAGE <LL@li.org>\\n"')
130
-+    print('"Language: \\n"')
131
-+    print('"MIME-Version: 1.0\\n"')
132
-+    print('"Content-Type: text/plain; charset=UTF-8\\n"')
133
-+    print('"Content-Transfer-Encoding: 8bit\\n"\n')
134
-+
135
- 
136
- def print_pot():
137
--	print_header()
138
-+    print_header()
139
-+    for text in list(s.keys()):
140
-+        print('#:', end=' ')
141
-+
142
-+        for p in s[text]:
143
-+            print('%s:%d' % p, end=' ')
144
-+
145
-+        if text.find('%') != -1:
146
-+            print('\n#, c-format', end=' ')
147
-+
148
-+        print('\nmsgid "' + text + '"')
149
-+        print('msgstr ""\n')
150
- 
151
--	for text in s.keys():
152
--		print '#:',
153
--		for p in s[text]:
154
--			print '%s:%d' % p,
155
--		if find(text, '%') != -1:
156
--			print '\n#, c-format',
157
--		print '\nmsgid "' + text + '"'
158
--		print 'msgstr ""\n'
159
--				
160
- def main():
161
--	for a in argv:
162
--		xgettext(a)
163
-+    for a in argv:
164
-+        xgettext(a)
165
- 
166
--	print_pot()
167
-+    print_pot()
168
- 
169
- if __name__ == '__main__':
170
-     main()
171
-+++ b/po/xgettext_sh	2020-06-23 21:15:58.975454504 +0800
172
-@@ -1,4 +1,4 @@
173
--#!/usr/bin/python
174
-+#!/usr/bin/python3
175
- 
176
- # xgettext_sh -- extracts translatable strings from a shell script
177
- # Copyright (C) 1999 Conectiva Consultoria e Desenvolvimento de Sistemas LTDA
178
-@@ -18,10 +18,11 @@
179
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
180
- 
181
- from sys import path
182
-+
183
- if not '/usr/lib/conectiva/xgettext_sh' in path:
184
-     path[:0] = ['/usr/lib/conectiva/xgettext_sh']
185
- 
186
- from xgettext_sh import main
187
- 
188
- if __name__ == '__main__':
189
--	main()
190
-+    main()
191
-+++ b/po/xgettext_sh.py	2020-06-23 21:38:44.197301680 +0800
192
-@@ -69,38 +69,6 @@ def xgettext(arq):
193
- 
194
-     f.close()
195
- 
196
--def xgettext(arq):
197
--    line = 0
198
--    f = open(arq, "r")
199
--
200
--    while 1:
201
--        l = f.readline()
202
--        if not l: break
203
--        line = line + 1
204
--        if l[0:1] == '#':       continue
205
--        elif l[0:1] == '\n':    continue
206
--        else:
207
--            for match in pattern.finditer(l):
208
--                pos = match.start()
209
--                p1 = l.find('"',pos) + 1
210
--                p2 = p1+1
211
--                while 1:
212
--                    p2 = l.find('"',p2)
213
--                    if p2 == -1:
214
--                        p2 = p1
215
--                        break
216
--                    if l[p2-1] == '\\':
217
--                        p2 = p2 + 1
218
--                    else:
219
--                        break
220
--                text = l[p1:p2]
221
--				#text = split(l[pos:], '"')[1]
222
--				if s.has_key(text):
223
--				    s[text].append((arq, line))
224
--				else:
225
--				    s[text] = [(arq, line)]
226
--	f.close()
227
--
228
- def print_header():
229
-     print('msgid ""')
230
-     print('msgstr ""')
231 1
deleted file mode 100644
... ...
@@ -1,11 +0,0 @@
1
-+++ b/rc.d/init.d/functions.mod	2017-12-26 15:06:51.070071057 -0800
2
-@@ -60,7 +60,7 @@
3
- 
4
- if [ -z "${CONSOLETYPE:-}" ]; then
5
-     if [ -c "/dev/stderr" -a -r "/dev/stderr" ]; then
6
--        CONSOLETYPE="$(/sbin/consoletype < /dev/stderr 2>/dev/null)"
7
-+        CONSOLETYPE="$(/sbin/consoletype stdout < /dev/stderr 2>/dev/null)"
8
-     else
9
-         CONSOLETYPE="serial"
10
-     fi
... ...
@@ -1,19 +1,20 @@
1 1
 Summary:	Scripts to bring up network interfaces and legacy utilities
2 2
 Name:		initscripts
3
-Version:	9.70
3
+Version:	10.04
4 4
 License:	GPLv2
5 5
 Group:		System Environment/Base
6
-Release:	4%{?dist}
6
+Release:	1%{?dist}
7 7
 URL:		https://github.com/fedora-sysv/initscripts
8 8
 Source0:	https://github.com/fedora-sysv/initscripts/archive/%{name}-%{version}.tar.gz
9
-%define sha1 initscripts=6e2ba0946fa2f175f576614d9374ad00266aec66
10
-Patch0:     service.patch
11
-Patch1:     fix_return_code_during_set_error.patch
12
-Patch2:     fix_build_python3.patch
9
+%define sha1 initscripts=b9e707441d4be947cd1c75c3733671900cfa11df
10
+Source1:        adjtime
11
+Patch0:         service.patch
13 12
 Vendor:     	VMware, Inc.
14 13
 Distribution:   Photon
15 14
 Requires:	systemd
16 15
 Requires:	iproute2
16
+Requires:       util-linux
17
+Requires:       findutils
17 18
 BuildRequires:	glib-devel
18 19
 BuildRequires:	python3
19 20
 BuildRequires:	python3-libs
... ...
@@ -27,54 +28,60 @@ Provides:	/sbin/service
27 27
 This package contains the script that activates and deactivates most
28 28
 network interfaces, some utilities, and other legacy files.
29 29
 
30
-%package -n debugmode
31
-Summary: Scripts for running in debug mode
32
-Requires: initscripts
33
-Group: System Environment/Base
30
+%package -n netconsole-service
31
+Summary:          Service for initializing of network console logging
32
+Requires:         %{name} = %{version}-%{release}
33
+BuildArch:        noarch
34 34
 
35
-%description -n debugmode
36
-The debugmode package contains some basic scripts that are used to run
37
-the system in a debug mode.
35
+Requires:         iputils
36
+Requires:         kmod
37
+Requires:         sed
38 38
 
39
-Currently, this consists of various memory checking code.
39
+%description -n netconsole-service
40
+This packages provides a 'netconsole' service for loading of netconsole kernel
41
+module with the configured parameters. The netconsole kernel module itself then
42
+allows logging of kernel messages over the network.
40 43
 
44
+%package -n readonly-root
45
+Summary:          Service for configuring read-only root support
46
+Requires:         %{name} = %{version}-%{release}
47
+BuildArch:        noarch
41 48
 
42
-%package  -n initnetworkscripts
43
-Summary:	Binaries of init network
49
+Requires:         cpio
44 50
 
45
-%description  -n initnetworkscripts
46
-Binaries of init network
51
+%description -n readonly-root
52
+This package provides script & configuration file for setting up read-only root
53
+support. Additional configuration is required after installation.
47 54
 
48 55
 %prep
49 56
 %setup -q
50 57
 %patch0 -p1
51
-%patch1 -p1
52
-%patch2 -p1
53 58
 
54 59
 %build
55
-make
60
+make PYTHON=/usr/bin/python3
56 61
 
57 62
 %install
58
-make ROOT=%{buildroot} SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandir} install
63
+%make_install
59 64
 
60 65
 %find_lang %{name}
61 66
 
62 67
 %ifnarch s390 s390x
63 68
 rm -f \
64 69
   %{buildroot}%{_sysconfdir}/sysconfig/network-scripts/ifup-ctc \
65
-%else
66
-rm -f \
67
-  %{buildroot}%{_sysconfdir}/sysconfig/init.s390
68 70
 %endif
69 71
 
70
-rm -f %{buildroot}%{_sysconfdir}/rc.d/rc.local %{buildroot}%{_sysconfdir}/rc.local
71
-rm -f %{buildroot}%{_sbindir}/ifdown
72
-rm -f %{buildroot}%{_sbindir}/ifup
73
-touch %{buildroot}%{_sysconfdir}/rc.d/rc.local
74
-chmod 755 %{buildroot}%{_sysconfdir}/rc.d/rc.local
72
+# Additional ways to access documentation:
73
+install -m 0755 -d %{buildroot}%{_docdir}/network-scripts
74
+
75
+ln -s  %{_docdir}/%{name}/sysconfig.txt %{buildroot}%{_docdir}/network-scripts/
76
+ln -sr %{_mandir}/man8/ifup.8           %{buildroot}%{_mandir}/man8/ifdown.8
77
+
78
+cp -r %{SOURCE1} %{buildroot}%{_sysconfdir}/
75 79
 
76
-ln -sfv rc.d/init.d %{buildroot}/etc/init.d
77
-rm -rf %{buildroot}%{_prefix}/lib/systemd
80
+mkdir -p %{buildroot}%{_sysconfdir}/rwtab.d
81
+mkdir -p %{buildroot}%{_sysconfdir}/statetab.d
82
+
83
+mkdir -p %{buildroot}%{_sysconfdir}/NetworkManager/dispatcher.d
78 84
 
79 85
 cat >> %{buildroot}%{_sysconfdir}/sysconfig/network <<- "EOF"
80 86
 ###
... ...
@@ -92,98 +99,115 @@ cat >> %{buildroot}%{_sysconfdir}/sysconfig/network <<- "EOF"
92 92
 # GATEWAY=gwip
93 93
 EOF
94 94
 
95
+cat >> %{buildroot}%{_sysconfdir}/networks <<- "EOF"
96
+default 0.0.0.0
97
+loopback 127.0.0.0
98
+link-local 169.254.0.0
99
+EOF
100
+
101
+%post
102
+%systemd_post import-state.service loadmodules.service
103
+
104
+%preun
105
+%systemd_preun import-state.service loadmodules.service
106
+
107
+%postun
108
+%systemd_postun import-state.service loadmodules.service
109
+
110
+%post -n netconsole-service
111
+%systemd_post netconsole.service
112
+
113
+%preun -n netconsole-service
114
+%systemd_preun netconsole.service
115
+
116
+%postun -n netconsole-service
117
+%systemd_postun netconsole.service
118
+
119
+%post -n readonly-root
120
+%systemd_post readonly-root.service
121
+
122
+%preun -n readonly-root
123
+%systemd_preun readonly-root.service
124
+
125
+%postun -n readonly-root
126
+%systemd_postun readonly-root.service
127
+
95 128
 %files -f %{name}.lang
96
-%defattr(-,root,root)
97
-%dir %{_sysconfdir}/sysconfig/network-scripts
98
-%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/adjtime
99
-%config(noreplace) %{_sysconfdir}/sysconfig/init
100
-%config(noreplace) %{_sysconfdir}/sysconfig/netconsole
101
-%config(noreplace) %{_sysconfdir}/sysconfig/network
102
-%config(noreplace) %{_sysconfdir}/sysconfig/readonly-root
103
-%{_sysconfdir}/sysconfig/network-scripts/ifdown
104
-%{_sysconfdir}/sysconfig/network-scripts/ifdown-post
105
-%{_sysconfdir}/sysconfig/network-scripts/ifup
106
-#%dir %{_sysconfdir}/sysconfig/console
129
+%license COPYING
130
+%doc doc/sysconfig.txt
131
+
132
+# NOTE: /etc/sysconfig/ is owned by filesystem package.
133
+%dir %{_sysconfdir}/rc.d
134
+%dir %{_sysconfdir}/rc.d/init.d
135
+%dir %{_sysconfdir}/rc.d/rc[0-6].d
107 136
 %dir %{_sysconfdir}/sysconfig/modules
108
-%{_sysconfdir}/sysconfig/network-scripts/network-functions
109
-%{_sysconfdir}/sysconfig/network-scripts/network-functions-ipv6
110
-%{_sysconfdir}/sysconfig/network-scripts/init.ipv6-global
111
-%config(noreplace) %{_sysconfdir}/sysconfig/network-scripts/ifcfg-lo
112
-%{_sysconfdir}/sysconfig/network-scripts/ifup-post
113
-%{_sysconfdir}/sysconfig/network-scripts/ifup-routes
114
-%{_sysconfdir}/sysconfig/network-scripts/ifdown-routes
115
-%{_sysconfdir}/sysconfig/network-scripts/ifup-plip
116
-%{_sysconfdir}/sysconfig/network-scripts/ifup-plusb
117
-%{_sysconfdir}/sysconfig/network-scripts/ifup-bnep
118
-%{_sysconfdir}/sysconfig/network-scripts/ifdown-bnep
119
-%{_sysconfdir}/sysconfig/network-scripts/ifup-eth
120
-%{_sysconfdir}/sysconfig/network-scripts/ifdown-eth
121
-%{_sysconfdir}/sysconfig/network-scripts/ifup-ipv6
122
-%{_sysconfdir}/sysconfig/network-scripts/ifdown-ipv6
123
-%{_sysconfdir}/sysconfig/network-scripts/ifup-sit
124
-%{_sysconfdir}/sysconfig/network-scripts/ifdown-sit
125
-%{_sysconfdir}/sysconfig/network-scripts/ifup-tunnel
126
-%{_sysconfdir}/sysconfig/network-scripts/ifdown-tunnel
127
-%{_sysconfdir}/sysconfig/network-scripts/ifup-aliases
128
-%{_sysconfdir}/sysconfig/network-scripts/ifup-ippp
129
-%{_sysconfdir}/sysconfig/network-scripts/ifdown-ippp
130
-%{_sysconfdir}/sysconfig/network-scripts/ifup-wireless
131
-%{_sysconfdir}/sysconfig/network-scripts/ifup-isdn
132
-%{_sysconfdir}/sysconfig/network-scripts/ifdown-isdn
137
+%dir %{_libexecdir}/%{name}
138
+%dir %{_libexecdir}/%{name}/legacy-actions
139
+%exclude %{_sysconfdir}/sysconfig/console
140
+%{_sysconfdir}/rc.d/init.d/functions
141
+
142
+# RC symlinks:
143
+%{_sysconfdir}/rc[0-6].d
144
+%{_sysconfdir}/init.d
145
+
146
+%{_bindir}/*
147
+%{_sbindir}/consoletype
148
+%{_sbindir}/genhostid
149
+%{_sbindir}/service
150
+%{_libexecdir}/import-state
151
+%{_libexecdir}/loadmodules
152
+%{_prefix}/lib/systemd/system/import-state.service
153
+%{_prefix}/lib/systemd/system/loadmodules.service
154
+%{_prefix}/lib/udev/rename_device
155
+%{_udevrulesdir}/*
156
+%{_mandir}/man1/*
157
+%{_mandir}/man8/service.*
158
+
159
+# network-scripts
160
+%doc doc/examples/
161
+%dir %{_sysconfdir}/sysconfig/network-scripts
162
+%{_sysconfdir}/rc.d/init.d/network
163
+%{_sysconfdir}/sysconfig/network-scripts/*
164
+%config(noreplace)    %{_sysconfdir}/sysconfig/network-scripts/ifcfg-lo
133 165
 %ifarch s390 s390x
134 166
 %{_sysconfdir}/sysconfig/network-scripts/ifup-ctc
135 167
 %endif
168
+%config(noreplace) %{_sysconfdir}/sysconfig/network
136 169
 %config(noreplace) %{_sysconfdir}/networks
137
-%{_sysconfdir}/rwtab
138
-%dir %{_sysconfdir}/rwtab.d
139
-%{_sysconfdir}/statetab
140
-%dir %{_sysconfdir}/statetab.d
141
-#%{_prefix}/lib/systemd/fedora-*
142
-#%{_prefix}/lib/systemd/system/*
143
-%dir %{_sysconfdir}/rc.d
144
-%dir %{_sysconfdir}/rc.d/rc[0-9].d
145
-%{_sysconfdir}/rc[0-9].d
146
-%dir %{_sysconfdir}/rc.d/init.d
147
-%{_sysconfdir}/rc.d/init.d/*
148
-%ghost %verify(not md5 size mtime) %config(noreplace,missingok) %{_sysconfdir}/rc.d/rc.local
149
-%{_prefix}/lib/sysctl.d/00-system.conf
150
-%exclude %{_sysconfdir}/profile.d/debug*
151
-%{_sysconfdir}/profile.d/*
152
-%{_sbindir}/sys-unconfig
153
-%{_bindir}/usleep
170
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/adjtime
171
+
154 172
 %attr(4755,root,root) %{_sbindir}/usernetctl
155
-%{_sbindir}/consoletype
156
-%{_sbindir}/genhostid
157
-%{_sbindir}/sushell
158
-%attr(2755,root,root) %{_sbindir}/netreport
159
-#%{_udevrulesdir}/*
160
-%{_prefix}/lib/udev/rename_device
161
-/usr/lib/udev/rules.d/60-net.rules
162
-%{_sbindir}/service
163
-%{_mandir}/man*/*
164
-%dir %attr(775,root,root) /var/run/netreport
173
+%{_mandir}/man8/ifup.*
174
+%{_mandir}/man8/ifdown.*
175
+%{_mandir}/man8/usernetctl.*
176
+%{_docdir}/network-scripts/*
177
+
165 178
 %dir %{_sysconfdir}/NetworkManager
166 179
 %dir %{_sysconfdir}/NetworkManager/dispatcher.d
167
-%{_sysconfdir}/NetworkManager/dispatcher.d/00-netreport
168
-%doc sysconfig.txt sysvinitfiles static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6
169
-%doc examples
170
-%{!?_licensedir:%global license %%doc}
171
-%license COPYING
172
-%{_sharedstatedir}/stateless
173
-%{_tmpfilesdir}/initscripts.conf
174
-%dir %{_libexecdir}/initscripts
175
-%dir %{_libexecdir}/initscripts/legacy-actions
176
-/etc/init.d
177 180
 
178
-%files -n debugmode
179
-%defattr(-,root,root)
180
-%config(noreplace) %{_sysconfdir}/sysconfig/debug
181
-%{_sysconfdir}/profile.d/debug*
181
+%files -n netconsole-service
182
+%config(noreplace) %{_sysconfdir}/sysconfig/netconsole
183
+%{_libexecdir}/netconsole
184
+%{_prefix}/lib/systemd/system/netconsole.service
185
+
186
+%files -n readonly-root
187
+%dir %{_sharedstatedir}/stateless
188
+%dir %{_sharedstatedir}/stateless/state
189
+%dir %{_sharedstatedir}/stateless/writable
190
+%dir %{_sysconfdir}/rwtab.d
191
+%dir %{_sysconfdir}/statetab.d
192
+%config(noreplace) %{_sysconfdir}/rwtab
193
+%config(noreplace) %{_sysconfdir}/statetab
194
+%config(noreplace) %{_sysconfdir}/sysconfig/readonly-root
195
+%{_libexecdir}/readonly-root
196
+%{_prefix}/lib/systemd/system/readonly-root.service
182 197
 
183 198
 %changelog
199
+*   Wed Jul 22 2020 Ankit Jain <ankitja@vmware.com> 10.04-1
200
+-   Updated to 10.04
184 201
 *   Tue Jun 23 2020 Tapas Kundu <tkundu@vmware.com> 9.70-4
185 202
 -   Build using python3
186
-*   Tue Jan 05 2019 Ankit Jain <ankitja@vmware.com> 9.70-3
203
+*   Sat Jan 05 2019 Ankit Jain <ankitja@vmware.com> 9.70-3
187 204
 -   Added network configuration to fix "service --status-all"
188 205
 *   Tue Dec 26 2017 Divya Thaluru <dthaluru@vmware.com> 9.70-2
189 206
 -   Fixed return code in /etc/init.d/functions bash script
... ...
@@ -197,3262 +221,3 @@ EOF
197 197
 -   Updated to version 9.65
198 198
 *   Mon Jul 20 2015 Divya Thaluru <dthaluru@vmware.com> 9.63-1
199 199
 -   Got Spec file from source tar ball and modified it to be compatible to build in Photon
200
-* Mon May 18 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.63-1
201
-- remove ipcalc, it has its own package now
202
-- network: tell NM to reload its configuration during start
203
-- bonding: warn if the ifup for slave device failed
204
-- sysctl.conf: drop SHMALL and SHMMAX, they have sane default values in kernel
205
-- ifup: don't call NM for loopback
206
-- clarify daemon() usage message
207
-- rename_device: allow non-channel nics for s390x machines
208
-- ifup: add missing quotes
209
-
210
-* Thu Apr 09 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.62-1
211
-- network-functions: fix change_resolv_conf after grep update
212
-- ifup-aliases: don't return with error when arping fails
213
-- init.d/functions: rc.debug option to debug initscripts
214
-- ifup-aliases: inherit ARPCHECK from parent device
215
-- network: report that we can't shut down network for root on netfs
216
-- ifdown-eth: use scope host for lo
217
-
218
-* Thu Jan 22 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.61-1
219
-- specfile cleanup
220
-- ifup-ipv6: set accept_ra to 2 when IPV6FORWARDING=yes and IPV6_AUTOCONF=yes
221
-- ifup-post: check resolve.conf also with DNS2
222
-- ifup-aliases: do not fail when only ipv6 addr is specified
223
-- fedora-import-state.service: run a little bit later
224
-- fedora-readonly: Updates for systemd random-seed handling
225
-- network-functions: is_available_wait should wait even in the case that is_available returns 2
226
-- ifdown-post: remove resolv.conf only in specific cases
227
-- network-functions: fix check in install_bonding_driver
228
-
229
-* Tue Dec 16 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.60-1
230
-- improve check for bond master in install bonding driver
231
-- network-functions: reeplace iwconfig with iw
232
-- ifup: fix typo
233
-- ifdown-ipv6: reset addrgenmode to eui64 for device
234
-
235
-* Wed Nov 12 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.59-1
236
-- adjust LINKDELAY when STP is on
237
-
238
-* Thu Nov 06 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.58-1
239
-- ifup,vlan: fix typo
240
-- doc: be consistent and use BOOTPROTO=none
241
-
242
-* Tue Oct 07 2014 Zbigniew Jędrzejewski-Szmek - 9.57
243
-- Remove /etc/inittab, /etc/crypttab, utmp, wtmp, btmp
244
-
245
-* Tue Oct 07 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.56-1
246
-- network_function: return immediately when device is pres
247
-ent
248
-- add configurable DEVTIMEOUT
249
-- fedora-import-state: do not clobber /
250
-- network-functions: grep->fgrep in bonding masters matchi
251
-ng
252
-- man: update sys-unconfig.8
253
-- rename_devices: comments need to have a blank before them
254
-- add example ifcfg files
255
-- network-functions: improve bonding_masters grep
256
-- ifup: if we were unable to determine DEVICE always call nmcli up
257
-- ifup-tunnel: call ifup-ipv6 in the end
258
-- ifup: also set multicast_snooping after the bridge is up
259
-- network-functions: ETHTOOL_DELAY introduction patch
260
-- use pie and relro by default
261
-- custom naming for VLAN devices
262
-- vi.po: fix parentheses
263
-- ifup-wireless: add support for wowlan
264
-- ifup-wireless: add support for wowlan (second part)
265
-- ifup-aliases: do not bring up ipv6 for range files
266
-- sys-unconfig: use poweroff instead of halt
267
-- ifup-aliases: improve duplicate address detection
268
-- network-functions: handle BONDING_OPTS better
269
-- network: tell nm to wake the slaves
270
-
271
-* Tue Jul 22 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.55-1
272
-- fix license handling
273
-- ipcalc: -c allow netmask
274
-- ipcalc: parse prefix more safely
275
-- inittab: fix path and mention set-default
276
-- don't require /sbin/sysctl
277
-- init.d/functions: check parent dir of pid file for accessibility
278
-- ifup-eth: some options for bridge can be applied after the bridge is up
279
-- remove ppp from translation
280
-
281
-* Tue Apr 15 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.54-1
282
-- move ppp support to ppp package
283
-- remove fedora-configure
284
-- network: detect if / is on netfs
285
-- is_nm_handling: fix RE
286
-- bonding: match whole name of interface
287
-- network: add support for team devices
288
-- ifup-wireless: fix syntax error
289
-- fedora-readonly: fix prefix detection
290
-
291
-* Wed Mar 26 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.53-1
292
-- bridging: add possibility to set prio and ageing
293
-- ifup: add possibility to specify value for -w parameter of arping
294
-- network: try to not compete with NM during boot
295
-- fedora-domainname: DefaultDependencies=no
296
-- service: add condrestart to allowed commands
297
-- update ifup/ifdown NetworkManager interaction once more(#1036701, #1061810)
298
-- network: modify ifup-wireless so it doesn't call exit
299
-- set shmmax and shmall defaults to match rhel6 values (#1056547)
300
-- update ifup/ifdown NetworkManager interaction (#1036701, #1061810)
301
-- service: fix action matching
302
-- remove ifup-ipx from spec
303
-- Delete IPX support.
304
-- remove dependency on sysvinit-tools
305
-
306
-* Tue Jan 14 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.52-1
307
-- require procps-ng
308
-
309
-* Tue Jan 14 2014 Lukáš Nykrýn <lnykryn@redhat.com> 9.51-1
310
-- readonly-root: bind-mount only necessary subset of entries in rwtab
311
-- readonly-root: Add /var/log/audit/audit.log to rwtab
312
-- readonly-root: restore selinux context after bind mount
313
-- rename_device: remove comments and trailing whitespaces
314
-- service: suggest using systemctl if unknown action is used
315
-- ifup-eth: fix typo in error message
316
-- use iw instead of iwconfig and friends
317
-- update functions who call nmcli
318
-- ifdown: fix typo in nmcli call
319
-
320
-* Tue Sep 03 2013 Lukas Nykryn <lnykryn@redhat.com> - 9.50-1
321
-- ipcalc: support RFC3021 (#997271)
322
-- symlink /etc/sysctl.conf -> /etc/sysctl.d/
323
-- man: only action specified in LSB are redirected to systemd
324
-- service: filter actions that are not supported by systemctl in service (#947823)
325
-- install_bonding_driver: drop check for existing device (#991335)
326
-- consider IPV6INIT undefined as YES
327
-- don't care about network filesystems
328
-
329
-* Fri Jul 12 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.48-1
330
-- man: add systemd man pages to service.8 "see also" section
331
-- add possibility to set domainname through /etc/sysconfig/network
332
-- rename_device: don't wait for lock with lower permissions
333
-- 256term.csh: remove quotes around variable (#979796)
334
-- drop useless variables from /etc/sysconfig/init
335
-- readonly-root: rpcidmapd restart is not needed anymore
336
-- ifup-eth: print error only if arping is really called (#974603)
337
-- readonly-root: Add /var/lib/samba to rwtab
338
-
339
-* Fri May 31 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.47-1
340
-- network-functions: to determine state of nscd check socket not lock (#960779)
341
-- sysconfig.txt advised saslauthd -a instad of -v
342
-- update translations from transifex
343
-- drop translation for other initscripts
344
-- tweak ifup/ifdown usage and man page (#961917)
345
-- ctrl-alt-delete.target is provided by systemd package
346
-- remove some defaults from arch specific sysctl.conf
347
-- readonly-root: remount rpc_pipefs if readonly-root is used
348
-- service: mention legacy actions and systemctl redirection in man page
349
-
350
-* Fri Apr 12 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.46-1
351
-- add /var/lib/NetworkManager
352
-- add ipip6 tunneling support (#928232, raorn@raorn.name)
353
-- bonding: set master up before slaves
354
-- set net.ipv6.conf.SYSCTLDEVICE.autoconf in ifup-ipv6
355
-- ifdown: don't call nmcli on interface that is alread down
356
-- remove some defaults from sysctl.conf (move to systemd)
357
-- call flush addresses with scope global
358
-- service: action should not be empty when calling legacy-actions (#947817)
359
-- ifup-eth: ignore arping errors (#928379)
360
-- replace tunctl with ip tuntap (#947875)
361
-- reload sysctl settings for vlans on ifup
362
-- try dhcpv6 after v4 failed (#846618)
363
-
364
-* Fri Mar 15 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.45-2
365
-- provides /sbin/service
366
-
367
-* Fri Mar 15 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.45-1
368
-- turn on symlink protections in sysctl (#922030)
369
-- add systemd-random-seed.service to  Before= in fedora-readonly.service (#888615)
370
-- mention rule6 files in sysconfig.txt
371
-- skip nmcli for wireless device (#863707)
372
-- remove config-noreplace from /etc/inittab (#627474)
373
-- remount-rootfs.service got renamed to systemd-remount-fs.service
374
-- compile netreport and usernetctl with full RELRO and PIE (#853178)
375
-- move stuff directly to /usr (#905492)
376
-- Remove NETWORKING_IPV6 from sysconfig.txt (#918622)
377
-- fix greps to correctly handle comments and quotation
378
-
379
-* Wed Feb 20 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.44-1
380
-- limit udev rule for network renaming (#907365, mschmidt@redhat.com)
381
-- fix path for arpwatch, seems to be in /var/lib on Fedora 18
382
-- fix the path for lvm cache, there is no file /etc/lvm/.cache ( but there is one /etc/lvm/cache )
383
-- fix path for dhcpd, is /var/lib/dhcpd since 2005 ( see 31cdb58df77 on the dhcp package git )
384
-- fix the patch for apache modules in rwtab, that are now in /var/cache/httpd
385
-- remove no longer used directory ( at least in Fedora ), hald is deprecated,
386
-  /var/tux cannot be found and xend seems to use a subdirectory of /var/lib/xen
387
-- correct the path for puppet directory in /etc/rwtab, now use /var/lib/puppet by default
388
-- allow passing -F from /.autorelabel to fixfiles when relabeling system (#904279)
389
-- correctly detect Open vSwitch device types
390
-- clear DEVICE and TYPE variables before every iteration (#902463)
391
-- sets BONDING_OPTS before interface is brougth up
392
-- check an IP address for existence in ifup-alias (#852005)
393
-- sync FSF address with GPL 2 text.
394
-- fix rpmlint's spaces vs tabs warning.
395
-- fix bogus %changelog dates.
396
-- build with $RPM_LD_FLAGS.
397
-- use -sf, not -s. (#901827)
398
-- add /usr/libexec/initscripts to file list (#894475)
399
-- rename term256 to 256term (glob sort) (#849429)
400
-- readd missing shebang. (#885821)
401
-- migrate even further away from /etc/sysconfig/network for hostname, and /etc/sysconfig/i18n.
402
-
403
-* Fri Dec  7 2012 Bill Nottingham <notting@redhat.com> - 9.43-1
404
-- 60-net.rules: explicitly set the interface name (#870859)
405
-- ifup-eth: set firewall zone before ifup-ipv6 for DHCPv6 (#802415)
406
-- migrate to /etc/locale.conf, /etc/vconsole.conf (#881923)
407
-- rename_device: fix bogus locking
408
-- fix wireless device detection for kernel 3.6 (#875328)
409
-- drop fedora-storage-init, fedora-wait-storage (<prajinoha@redhat.com>)
410
-
411
-* Wed Oct 31 2012 Bill Nottingham <notting@redhat.com> - 9.42-1
412
-- Halloween release!
413
-- add a default /etc/sysctl.conf that describes how to change values, and where the defaults now live. (#760254)
414
-- translation updates
415
-- fedora-autorelabel: don't pass -F to fixfiles (#863662, <dwalsh@redhat.com>)
416
-- fix calling of firewall-cmd in ifup-post/ifdown-post (<jpopelka@redhat.com>)
417
-
418
-* Fri Oct  5 2012 Bill Nottingham <notting@redhat.com> - 9.41-1
419
-- debugmode: MALLOC_CHECK_ is not thread safe. Don't enable it by default (#853175)
420
-- Add support for 256 color terminals (<pbrady@redhat.com>)
421
-- ifdown-eth: be less strict about VLAN name (#505314, <vpavlin@redhat.com>)
422
-- drop prefdm
423
-- ifup-eth: allow duplicate address detection to be disabled (<bcodding@uvm.edu>)
424
-- process rule6-* for sit devices (#840009, <lnykryn@redhat.com>)
425
-
426
-* Mon Aug  6 2012 Bill Nottingham <notting@redhat.com> - 9.40-1
427
-- drop support for booting non-systemd systems
428
-- drop legacy commands: getkey, fstab-decode, testd
429
-
430
-* Fri Jun 29 2012 Bill Nottingham <notting@redhat.com> - 9.39-1
431
-- assorted documentation cleanups
432
-- typo, spelling, licenese clean up (<ville.skytta@iki.fi>)
433
-- service: add support for legacy custom actions packaged in
434
-  /usr/libexec/initscripts/legacy-actions/<script>/<action>
435
-- network-functions: handle quoted HWADDR (#835372)
436
-- allow bridge names that start with '-' (<danken@redhat.com>)
437
-- remove all non-legacy uses of /sbin/route (#682308)
438
-- move default sysctl.conf to /usr/lib/sysctl.d (#760254)
439
-
440
-* Fri Mar 16 2012 Bill Nottingham <notting@redhat.com> - 9.37-1
441
-- Add support for firewalld zones (#802415, from <jpopelka@redhat.com>)
442
-
443
-* Mon Mar 12 2012 Bill Nottingham <notting@redhat.com> - 9.36-1
444
-- ifup-aliases: fix IFS usage mangling of device names (#802119)
445
-- ifup/ifdown: fix typo (#802055, <lubek@users.sourceforge.net>)
446
-
447
-* Fri Mar  9 2012 Bill Nottingham <notting@redhat.com> - 9.35-1
448
-- use the same DHCP lease file names as NetworkManager, where appropriate
449
-- copy network state from initramfs with a systemd service, not inline (<wwoods@redhat.com>)
450
-- sysconfig.txt: clean up section on disabling IPv6
451
-- ifup: allow for ifup-$TYPE/ifdown-$TYPE
452
-- fedora-readonly.service: drop StandardInput=tty (#785662)
453
-- sysconfig.txt: document additional ETHTOOL_OPTS enhancements (<raghusiddarth@gmail.com>)
454
-- port assorted ancient ifup-XYZ scripts away from ifconfig
455
-- don't use ifconfig in ifup-aliases (#721010, 588993, based on <tgummels@redhat.com>)
456
-- fedora-storage-init: handle dmraid sets with spaces (#728795, <lnykryn@redhat.com>)
457
-- fedora-readonly: don't exit with an error if SEinux isn't active. (#768628)
458
-- init.d/network: fix checks for network filesystems (#760018)
459
-- fedora-wait-storage: drop stdin/stdout/stderr (#735867)
460
-- netfs: move to legacy package
461
-- translation updates
462
-
463
-* Tue Oct 25 2011 Bill Nottingham <notting@redhat.com> - 9.34-1
464
-- read locale.conf if it exists (#706756)
465
-- ifdown: fix logic error with removing arp_ip_target (#745681)
466
-
467
-* Wed Oct 12 2011 Bill Nottingham <notting@redhat.com> - 9.33-1
468
-- netconsole: only use the first ARP response (#744309, <doug.knight@karmix.org>)
469
-- udev/rules.d/88-clock.rules: drop this entirely, as it causes issues in conjunction with systemd
470
-- init.d/network: be less picky about ifcfg file names. (#742276)
471
-- /sbin/service: do not check for the existence of a systemd unit before redirecting (<mschmidt@redhat.com>)
472
-- init.d/functions: only run consoletype if connected to something that's console-ish. (#657869)
473
-
474
-* Fri Sep  2 2011 Bill Nottingham <notting@redhat.com> - 9.32-1
475
-- prefdm: if exec() of all DMs fails, call 'plymouth quit' (#735215)
476
-- %%ghost rc.local (but leave it around on upgrade) (#734268)
477
-- ifup: support random bridging options via BRIDGING_OPTS (#734045, #665378)
478
-- selinuxfs moved to /sys/fs, handle it (#733759)
479
-- netfs/fedora-storage-init: call multipath and kpartx with -u (#733437)
480
-- plymouth lives in /bin (#702814)
481
-- drop fedora-autoswap
482
-- ifdown-eth: fix dhclient pid file for IPv6 (#729292, <daveg@dgit.ndo.co.uk>)
483
-- move some more things to the legacy subpackage
484
-- netfs: don't mount gfs2 here (#689593)
485
-- readonly-root: add an empty CLIENTSTATE definition (#725476)
486
-- drop sysinit hack/unhack
487
-- ifup-eth: allow more options in ETHTOOL_OPTS (#692410, #693583)
488
-- rwtab: update for systemd (#704783)
489
-- debug.csh: fix for latest csh
490
-- update translations: eu_ES, hy, ku, lo, my, wa
491
-
492
-* Tue Jun 21 2011 Bill Nottingham <notting@redhat.com> - 9.31-1
493
-- remove ifup/ifdown-ipsec; they're now in ipsec-tools
494
-- rc.sysinit: start udev by hand, start_udev is no more (#714531)
495
-- ifup-aliases: if IPv6 is configured on the alias, configure it. (#583409)
496
-- ifup-eth: ensure DHCP_HOSTNAME is a short hostname, seed it from HOSTNAME if needed. (#697877)
497
-- network-functions: override NETMASK from PREFIX where specified (#705367, <mpoole@redhat.com>)
498
-- exclude single symlink from main package (#705457)
499
-- network: VLAN, etc. interfaces can be slaves; check for being a slave first. (#703475)
500
-- network: use LC_ALL=C when calling sed. (https://bugs.mageia.org/show_bug.cgi?id=1216, via <sander.lepik@eesti.ee>)
501
-- functions: (umount_loop) fuser -k defaults to -9; set the initial pass to kill -15. (#703457)
502
-- init.d/halt: don't match filesystem types in hostnames (#703203, <jmueller@data-tronics.com>)
503
-
504
-* Wed Apr 27 2011 Bill Nottingham <notting@redhat.com> - 9.30-1
505
-- ifup-eth: handle IPADDRx correctly for static addresses (#697838)
506
-- systemd: fix storage setup service after cryptsetup.target (#699918)
507
-- prefdm: tweak how plymouth is quit in the gdm/kdm case (<rstrode@redhat.com>)
508
-- support /etc/hostname as an override for hostname in /etc/sysconfig/network
509
-- init.d/single: only ship this in -legacy
510
-- network-functions: fix IPADDRx index handling (<jklimes@redhat.com>)
511
-- ifup/down-eth: properly handle apr_ip_target, when used with module options (#604669, <harald@redhat.com>)
512
-- ifup-eth: ensure bond exists before bringing up slaves (#694501)
513
-
514
-* Wed Apr 06 2011 Bill Nottingham <notting@redhat.com> - 9.29-1
515
-- systemd: add a storage setup service after cryptsetup.target (#692198)
516
-- fix /.autorelabel handling (<mschimdt@redhat.com>)
517
-- don't explicitly disallow IPv6 aliases (#583409, #612877)
518
-- netfs: don't print errors if mdadm isn't installed. (#692187)
519
-- ifup-eth: use /run/initramfs rather then /dev/.run/initramfs (<harald@redhat.com>)
520
-
521
-* Fri Mar 25 2011 Bill Nottingham <notting@redhat.com> - 9.28-1
522
-- add some generic network logging, port scripts to it (#507515, #653630)
523
-- add an error when setting the gateway fails (#672202)
524
-
525
-* Thu Mar 17 2011 Bill Nottingham <notting@redhat.com> - 9.27-1
526
-- init.d/functions: fix mishandled argument to fstab-decode. (#685137)
527
-- support ipv6 routing rules, merge route/rule code (#680872, <tobiasoed@hotmail.com>)
528
-- autorelabel.service, loadmodules.service: fix conditions so that they operate as OR, not AND. (#684125)
529
-
530
-* Thu Mar 10 2011 Bill Nottingham <notting@redhat.com> - 9.26-1
531
-- network-functions: fix check for unmanaged devices (#670154)
532
-- ifup-eth: also check /dev/.run/initramfs (<harald@redhat.com>)
533
-- systemd: execute fedora-sysinit-unhack after sysinit.target (<arvidjaar@gmail.com>)
534
-- init.d/functions: don't do force/lazy umount for the first nfs umount. (#676851, <jlayton@redhat.com>)
535
-- further sysctl.d fixes (#593211)
536
-- init.d/functions: make killproc more granular when delay is passed. (#428029, <xjakub@fi.muni.cz>)
537
-- ifup: add GVRP support (#597598, <tomek@jot23.org>)
538
-- init.d/functions: add support for noauto crypt devices, to mirror systemd
539
-- documentation updates
540
-- bash cleanups (<ville.skytta@iki.fi>)
541
-- ifup: remove network device naming requirement from VLAN devices (#462095, <Matt_Domsch@dell.com>)
542
-
543
-* Fri Feb 25 2011 Bill Nottingham <notting@redhat.com> - 9.25-1
544
-- remove 'Red Hat Linux' references from sysctl.conf* (<ville.skytta@iki.fi>)
545
-- rc.sysinit: add support for sysctl.d (#593211, <martin@laptop.org>)
546
-- console_check: support OMAP serial console (#678875, <ndevos@redhat.com>)
547
-- /sbin/service: accept --ignore-dependencies, --skip-redirect as options
548
-- /sbin/service: honor SYSTEMCTL_IGNORE_DEPENDENCIES (<lennart@poettering.net>)
549
-- translation updates: kn, pa, ta, uk
550
-
551
-* Fri Jan 21 2011 Bill Nottingham <notting@redhat.com> - 9.24-1
552
-- ifup-eth/ifdown-eth: handle 'MASTER' being quoted. (#651450, <gfidente@redhat.com>)
553
-- tmpfiles.d: remove entries that exist in systemd
554
-- frob device when calling sysctl, in case of vlans. (#665601, #667211, <ossman@cendio.se>)
555
-- netfs: rework to handle bind-mounted cifs/ncpfs (#663140, <dmudrich@nospam.mudrichsystems.com>)
556
-- own /etc/crypttab (#664309)
557
-- init.d/network: add # as a valid character in network device names (<Matt_Domsch@dell.com>)
558
-- ifup-eth: fix routing regression (#660363)
559
-- sysctl.conf.s390 - system z optimized sysctl settings per default (#633323, <plautrba@redhat.com>)
560
-- serial.conf, tty.conf: stop tty and serial also on runlevel 's' (#629257, <plautrba@redhat.com>)
561
-- translation updates: bn_IN, es, gu, hi, nds, or, pa, uk, zh_CN
562
-
563
-* Thu Dec 02 2010 Bill Nottingham <notting@redhat.com> - 9.23-1
564
-- don't throw errors on unreadable /dev/stderr (#650103, <plautrba@redhat.com>)
565
-- support multiple ipv4 addresses, not just alias devices (#132912, #633984, <jklimes@redhat.com>)
566
-- properly handle /var/run on tmpfs (#656602, <plautrba@redhat.com>)
567
-- allow '0' as a vlan tag (#624704, #635360)
568
-- assorted systemd unit cleanup (<lennart@poettering.net>)
569
-
570
-* Tue Nov 16 2010 Bill Nottingham <notting@redhat.com> - 9.22-1
571
-- merge in systemd-specific startup support; package a -legacy package
572
-  (based on work by <harald@redhat.com>)
573
-- init-ipv6.global: don't load sit module on shutdown. (#654098, <ejsheldrake@gmail.com>)
574
-- do not call rhgb-client
575
-- network-functions: add infiniband mapping (#648524, <monis@voltaire.com>)
576
-- fix ifdown nmcli invocation (#612934, jklimes@redhat.com>)
577
-- *ipv6*: don't use obsolete /sbin/ip wrapper
578
-- sysconfig.txt: adjust clock docs (#637058)
579
-- lang.csh: fix tcsh + grep-2.7. (#636552)
580
-
581
-* Fri Sep 17 2010 Bill Nottingham <notting@redhat.com> - 9.21-1
582
-- build for systemd only
583
-- ship a default.target link in case the one in /etc gets deleted
584
-- rc.sysinit: reset btmp on boot if necessary (#633768, <dmach@redhat.com>)
585
-- single.service: fix invocation so that 'runlevel' works (#630914)
586
-
587
-* Thu Sep  9 2010 Bill Nottingham <notting@redhat.com> - 9.20-1
588
-- use new pidof -m option to avoid false positives (#632321)
589
-- systemd/single: set $HOME for single-user mode. (#631590)
590
-- systemd/killal.service: require shutdown.target (#630935, #632198)
591
-
592
-* Tue Sep  7 2010 Bill Nottingham <notting@redhat.com> - 9.19-1
593
-- fix packaging of prefdm, rc-local systemd units (#630952)
594
-- systemd/single.service: conflict with shutdown.target (#630935)
595
-- translation updates: ja, pt_BR, ru
596
-
597
-* Fri Sep  3 2010 Bill Nottingham <notting@redhat.com> - 9.18-1
598
-- fix for new cgroups location (#612789, others <plautrba@redhat.com>)
599
-- add in basic systemd units
600
-- translation updates: nb, pt, sv
601
-
602
-* Wed Aug 25 2010 Bill Nottingham <notting@redhat.com> - 9.17-1
603
-- init.d/functions: redirect start/stop/condrestart/etc to systemctl in a systemd environment (#612728)
604
-- rc.sysinit: don't frob the console loglevel on boot (#621257, #626572)
605
-- service: use systemctl on systemd services
606
-- 10-console.rules: only init consoles on add, not change (<lennart@poettering.net>)
607
-- halt: fix unmounting bind mounts (#620461, <phr@doc.ic.ac.uk>)
608
-- killall: exit 0 (#605519)
609
-- translation updates: de, es, fi, fr, nl, pl, sv, uk
610
-
611
-* Tue Jul 27 2010 Bill Nottingham <notting@redhat.com> - 9.16-1
612
-- halt: don't umount cgroups (#612789)
613
-- rename_device: dequote DEVICE key, handle SUBCHANNELS (<harald@redhat.com>)
614
-- sysconfig.txt: document PREFIX/NETMASK (#617481, <jklimes@redhat.com>)
615
-- sysconfig.txt: document NETWORKWAIT (#595386)
616
-- remove support for hotkey interactive startup (#605016). Use 'confirm' on the commandline
617
-  (but even that doesn't fully make sense in an upstart/systemd world)
618
-- don't directly execute bash for single-user mode (#540216, #584443, #585053)
619
-
620
-* Thu Jun 24 2010 Bill Nottingham <notting@redhat.com> - 9.15-1
621
-- ifup-eth: check for dhclient configuration in /etc/dhcp as well (#607764, #607766)
622
-- network-functions: handle quoted SUBCHANNELS (#607481)
623
-- netfs: allow for encrypted network block devices (#605600)
624
-- ifdown-ipsec: don't use a full path when killing racoon, so it works in MLS policy (#567295)
625
-- network-functions: check NM_CONTROLLED before deciding to use NM for a connection. (#599707, probably others.)
626
-- rc.sysinit: always reboot on autorelabel. (#595823)
627
-- init.d/functions: handle permission denied on reading PID file. (#595597)
628
-- clean up some deprecated items
629
-- translation updates: el, nl, or, zh_CN
630
-
631
-* Wed May 19 2010 Bill Nottingham <notting@redhat.com> - 9.14-1
632
-- clean up plymouth shtudown splash (#590099, <rstrode@redhat.com>)
633
-- rc.sysinit: use lvm2 --sysinit option (#588777)
634
-- network-functions: behave sanely in the absence of $DEVICE (#589521)
635
-- sysconfig/debug: export debug variables (#589378)
636
-- netfs: check for NM to be connected, not just running (#589710)
637
-- rcS*.conf: check if /etc/inittab exists (#590703, <plautrba@redhat.com>)
638
-- port vlan code to /sbin/ip (#566485, <plautrba@redhat.com>)
639
-
640
-* Wed May  5 2010 Bill Nottingham <notting@redhat.com> - 9.12-1
641
-- update for final nmcli syntax
642
-
643
-* Mon May  3 2010 Bill Nottingham <notting@redhat.com> - 9.11-1
644
-- init/plymouth-shutdown.conf: add 'task' here as well
645
-
646
-* Wed Apr 28 2010 Bill Nottingham <notting@redhat.com> - 9.10-1
647
-- fstab-decode.8: fix formatting (#586476)
648
-- prefdm: add --retain-splash for KDM as well (#585250)
649
-- init.d/functions: handle being unable to read a specified pid file. (#584575)
650
-- init/quit-plymouth.conf: use 'task' for stopping plymouth. (<rstrode@redhat.com>)
651
-- ifup-eth: run dhclient -6 similar to dhclient -4. (#585047)
652
-- net.hotplug: don't run on odd interfaces. (#584530)
653
-
654
-* Fri Apr  9 2010 Bill Nottingham <notting@redhat.com> - 9.09-1
655
-- rc.sysinit: change RAID handling (<dledford@redhat.com>)
656
-- fix german mistranslation (#575954, <pb@bierenger.de>)
657
-- init.d/functions: correct fix for environment with runuser. (#203010, #564093)
658
-- halt: fix mdmom pid handling for newer mdadm (#549726, <dledford@redhat.com>)
659
-- init.d/network: only blacklist the original loopback interface. (#579816, <evgsyr@gmail.com>
660
-- translation updates: de, ja, nb, pt, sv, uk
661
-
662
-* Mon Mar  8 2010 Bill Nottingham <notting@redhat.com> - 9.08-1
663
-- network-functions: redirect error messages when nmcli isn't installed (#570828, <zing@fastmail.fm>)
664
-- ifdown: use nmcli to get the device, if not specified
665
-- ifdown: fix typo
666
-- translation updates: fr
667
-
668
-* Wed Mar  3 2010 Bill Nottingham <notting@redhat.com> - 9.07-1
669
-- clean out some extraneous package requirements
670
-- fix dmraid error checking now that dmraid has return codes (#568790, others)
671
-- integrate with NetworkManager for ifup/ifdown (#523064)
672
-- translation updates: cs, da, de, en_GB, es, fi, nl, pl, pt_BR, ru, sr
673
-
674
-* Fri Feb 19 2010 Bill Nottingham <notting@redhat.com> - 9.06-1
675
-- move ccw_init and ccw udev rules to s390utils (#539491)
676
-- rc.sysinit: suppress LVM2 warnings.  (#561938, <prajnoha@redhat.com>)
677
-- fix translated checks for user input (#566579)
678
-- refresh translations
679
-
680
-* Mon Feb 15 2010 Bill Nottingham <notting@redhat.com> - 9.05-1
681
-- network-functions: don't use ethtool for link state, assorted other cleanups
682
-- inittab: fix job paths in comments (<plautrba@redhat.com>)
683
-- init.d/functions: don't clear environment in runuser (#203010, #564093)
684
-- 88-clock.rules: use ATTR, not SYSFS (#560756)
685
-- init.d/network: don't quote regex argument to bash's =~ (<ville.skytta@iki.fi>)
686
-- network-functions: use HWADDR to determine DEVICE if DEVICE isn't set (#545597)
687
-- don't HUP init when messagebus starts (#557791)
688
-- setsysfont: use UNIMAP, not SYSFONTACM, when calling unicode_start (#557089)
689
-- ifup: don't leave the link down on link failure for DHCP (#462013, #491009)
690
-- translation updates: cs
691
-
692
-* Fri Jan 15 2010 Bill Nottingham <notting@redhat.com> - 9.04-1
693
-- various shell-related cleanups and optimizations <ville.skytta@iki.fi>
694
-- ifup-eth: use dhclient's -H option instead of munging dhclient config files
695
-- rc.sysinit: move mdadm after dmraid (#494821)
696
-- ifup-eth: use dhclient -6, not the no-longer-included dhcp6c
697
-- add more man pages (#529328, <plautrba@redhat.com>)
698
-- move is_wireless after MACADDR/MTU setting (#552638)
699
-- serial.conf: respawn correctly. (#552324, <zing@fastmail.fm>)
700
-- network-functions: use sysfs for wireless check (#551019, <adel.gadllah@gmail.com>)
701
-- reload init on started messagebus (<plautrba@redhat.com>)
702
-- honor HOTPLUG in ifdown (#547737)
703
-- network-functions: silence error. (#516569)
704
-
705
-* Wed Dec  9 2009 Bill Nottingham <notting@redhat.com> - 9.03-1
706
-- migrate to upstart 0.6.x (<notting@redhat.com>, <plautrba@redhat.com>)
707
-- remove obsolete doexec command
708
-- rc.sysinit: handle yet another random return string from dmraid
709
-- remove never-used 'sulogin' upstart event
710
-- fix time-setting udev rules for old-style RTC devices (#537595)
711
-- init.d/network: keep error codes limited to '1'. (#537841)
712
-- add initial ifup/ifdown man pages. (#529328, <plautrba@redhat.com>)
713
-
714
-* Tue Oct 27 2009 Bill Nottingham <notting@redhat.com> - 9.02-1
715
-- remove long-since deprecated initlog
716
-- remove IUCV support (#507217)
717
-- halt: put a wrapper around killall5 to account for retval 2 not being an error (#526539, <hdegoede@redhat.com>)
718
-- ifup-eth: honor DEFROUTE=yes|no for 'all' connection types. (#528822)
719
-- network-functions: load bonding driver if BONDING_OPTS is defined. (#516569)
720
-- rc.sysinit: put /dev/shm in mtab too, as dracut now mounts it. (#528667)
721
-
722
-* Fri Oct  9 2009 Bill Nottingham <notting@redhat.com> - 9.01-1
723
-- rc.sysinit: fix handling of dmraid output to avoid error messages (#527726, <mschmidt@redhat.com>)
724
-- rwtab: add /var/lib/xend (#526046)
725
-- translation updates: fi, nb, pl
726
-
727
-* Fri Oct  2 2009 Bill Nottingham <notting@redhat.com> - 9.00-1
728
-- halt: wrap /sbin/killall5 to catch some return codes (#526539)
729
-- netfs, netconsle, network: fix return codes to match LSB spec (#524489, #524480, #524486)
730
-- handle kernels compiled both with and without CONFIG_RTC_HCTOSYS
731
-- halt: use killall5's return code to avoid unncesssary sleeping (#524359, <hdegoede@redhat.com>)
732
-- halt: don't kill mdmon on shutdown. (#524357, <hdegoede@redhat.com>)
733
-- rc.sysinit: do not try and activate ISW raidsets, unless noiswmd is passed. (#524355, <hdegoede@redhat.com>)
734
-- translation updates: ca, cs, da, mai, po, sv, uk
735
-
736
-* Mon Sep 14 2009 Bill Nottingham <notting@redhat.com> - 8.99-1
737
-- init.d/functions: add a '-l' option to status to pass lock file name (#521772)
738
-- tweak kernel conflict
739
-- translation updates: as, bn_IN, de, fr, hi, it, hu, kn, mr, or, pa, pt, ru, te
740
-
741
-* Wed Sep  2 2009 Bill Nottingham <notting@redhat.com> - 8.98-1
742
-- sysconfig.txt: doucment DHCP_HOSTNAME (#498052)
743
-- 88-clock.rules: Use --systz instead of --hctosys. (#517886, #489494)
744
-- Support rwtab and state passed from dracut initrd (#515771, <wtogami@redhat.com>)
745
-- restore context of *tmp files (#519748)
746
-- halt: don't try and save mixer settings if it's not writable. (#515771)
747
-- rwtab: add /var/spool, /var/lib/dbus, others (#494973, #515771)
748
-- sysconfig.txt: clarify docs (#518614)
749
-- rc.sysinit: don't pretend /selinux is configurable (#518164)
750
-- assorted ipv6 redundant code deletion
751
-- translation updates: bn, ca, de, es, fi, fr, gu, hi, it, ja, ko, ml, nb, nl, pl, pt, pt_BR, ru, sr, ta, zh_CN, zh_TW
752
-
753
-* Mon Aug 10 2009 Bill Nottingham <notting@redhat.com> - 8.97-1
754
-- ipcalc: fix IPv6 address checking (#516319)
755
-- ifup-aliases: fix syntax error from earlier cleanups. (#515612, <jik@kamens.brookline.ma.us>)
756
-- translation updates: nb
757
-- rc.sysinit: remove useless call to pam_console_apply
758
-
759
-* Mon Aug  3 2009 Bill Nottingham <notting@redhat.com> - 8.96-1
760
-- fix up upstart rules for s390(x). (#515222)
761
-- leave ChangeLog in the tarball only. (#515012)
762
-- disable netfilter on bridged interfaces. (#512206)
763
-- assorted shell-related cleanups to ipv6 and other code (<victor.lowther@gmail.com>)
764
-- use resolv.conf from dracut netboot before setting hostname. (#514801, <wtogami@redhat.com>)
765
-- ipcalc updates (<victor.lowther@gmail.com>)
766
-- only use ethtool for link checking; no more mii-tool
767
-- require /sbin/blkid directly, as it moves between packages (#508413)
768
-- redirect bash errors on 'unset' to /dev/null. (#482888)
769
-- fix dmraid partition naming (#501476, <hdegoede@redhat.com>)
770
-- don't quote upstart signals. (#501155)
771
-- translation updates: bn_IN, da, es, sk
772
-
773
-* Fri May  1 2009 Bill Nottingham <notting@redhat.com> - 8.95-1
774
-- don't kill runlevel events on subsequent entering of the same runlevel (#498514)
775
-- lang.*sh: handle spaces in $HOME (#498482)
776
-- network-functions: explicitly source from the proper directory. (#496233)
777
-- remove persistent names on sys-unconfig. (#448322)
778
-- init.d/functions: cgexec has moved to /bin (#495715)
779
-- allow changing of VLAN type even if the module is already loaded. (#495053, <pietro@bertera.it>)
780
-- translation updates: fr, ml, pt
781
-
782
-* Tue Apr  7 2009 Bill Nottingham <notting@redhat.com> - 8.94-1
783
-- prefdm: add simple fallbacks, sort rpmdb query for consistency (#494461)
784
-- translation updates; bn, de, pt, ru, te
785
-
786
-* Thu Apr  2 2009 Bill Nottingham <notting@redhat.com> - 8.93-1
787
-- rc.sysinit: add a disk synchronization point with scsi_wait_scan post-udev (#481470)
788
-- netfs: drop smbfs support, we don't even ship the module or tools any more
789
-- setsysfont: honor LC_CTYPE (#487133, <skasal@redhat.com>)
790
-- prefdm: do fallbacks based on provides of 'service(graphical-login)' (#485751)
791
-- rc.sysinit: handle multiple IP addresses without choking in the stateless code (#443945)
792
-- rc.sysinit: catch the right error code from checking for passphrases (#483269, <vladis.kletnieks@vt.edu>)
793
-- prefdm: handle empty /etc/sysconfig/desktop correctly (#480113)
794
-- ifup-ipsec: allow use of either ESP only or AH only (#251494, <stijn.tintel@x-tend.be>)
795
-- ifup-eth: allow passing of arguments to dhcp6c (#437949, <pekkas@netcore.fi>)
796
-- ifup-eth: fix dhcpv6 when there is no IPv4 configuration (#486507)
797
-- ifup-ppp: avoid spurious SIGCHLD to pppd (#448881)
798
-- ifup-eth: add support for creating TUN/TAP devices on the fly (#453973, <scott@zahna.com>)
799
-- stop plymouth when starting single-user mode. (#491062)
800
-- add plymouth shutdown script (#473237, <jmccann@redhat.com>)
801
-- fix lang.sh/lang.sh/consoletype for execution with '-e'
802
-- ifdown-eth: remove arp_ip_target on ifdown for bonding devices. (#483711)
803
-- add vlan support for s390 HSI interfaces. (#490584)
804
-- ipcalc: support IPv6 (#464268, <dcantrell@redhat.com>)
805
-- translation updates: all
806
-
807
-* Mon Mar 16 2009 Bill Nottingham <notting@redhat.com> - 8.91-1
808
-- fix DHCP reading of options from ifcfg-XXX (#483257)
809
-- ifdown-eth: clean up bridges on ifdown (#463325, <sean@bruenor.org>)
810
-- support MD on iSCSI (#480627)
811
-- remove support for 'ifcfg-foo-bar' configurations that inherit from 'ifcfg-foo'
812
-- remove slip support
813
-- translation updates: es, pl, ca, sr, de, sv, pa, pt_BR
814
-
815
-* Mon Mar  9 2009 Bill Nottingham <notting@redhat.com> - 8.90-1
816
-- init.d/functions: cgroup support (<jsafrane@redhat.com>)
817
-- fix various issues with dmraid handling (#485895, <hdegoede@redhat.com>)
818
-- rc.sysinit: fix typo. (#487926)
819
-- console_init: loadkeys has a -q option for silent running. Use it.
820
-- ifup-tunnel: add compatibility for openNHRP tunnels (#486559, <claude.tompers@ieee.lu>)
821
-- ccw_init: don't re-init an existing device, it causes errors. (#484411, <jpayne@redhat.com>)
822
-- netfs: use same kpartx arguments as rc.sysinit
823
-- don't list mtab in rwtab (#457941)
824
-- translation updates: fi, de, mai
825
-
826
-* Wed Jan 28 2009 Bill Nottingham <notting@redhat.com> - 8.89-1
827
-- use a leading path when sourcing files (#482826)
828
-- netfs: don't unmount nfsd filesystem by accident (#481794, <sprabhu@redhat.com>)
829
-- bring up ipsec interfaces last (#481733)
830
-- ifdown-eth: fix bridge + vlan (#481557, <danken@redhat.com>)
831
-
832
-* Tue Jan 20 2009 Bill Nottingham <notting@redhat.com> - 8.88-1
833
-- init.d/network: return success/failure correctly (#480677)
834
-- init.d/halt: fix typo (#480799)
835
-
836
-* Mon Jan 19 2009 Bill Nottingham <notting@redhat.com> - 8.87-1
837
-- rename_device: be much faster in the presence of many devices (#480687, <danms@us.ibm.com>)
838
-- fix switching from targeted to MLS policy (#479054, <dwalsh@redhat.com>)
839
-- rc.sysinit: don't set $(uname -r) or $(uname -m); they're not used
840
-- network-functions-ipv6: set MTU correctly for 6to4. (#477976, <ackistler@yahoo.com>)
841
-- add more entries to rwtab (#476799, <harald@redhat.com>)
842
-- net.hotplug: Bail out sooner if the network service isn't running
843
-- init.d/halt: determine reboot/halt via existing INIT_HALT environment variable. (#475227)
844
-- event.d/serial: add some docs
845
-- init.d/functions: __pids_var_run: Handle multi-line pid files correctly (#473287)
846
-- remove support for no longer existing 'brctl setgcint' command. (#360471)
847
-- add %%config back for ifcfg-lo (#472761)
848
-- rcS/rcS-sulogin: don't match commented lines when finding runlevel (#472717)
849
-- updated translations: de, sk
850
-
851
-* Tue Nov 11 2008 Bill Nottingham <notting@redhat.com> - 8.86-1
852
-- stop plymouth before stopping the runlevel (#467207)
853
-- fix get_config_by_subchannel (#459044, <harald@redhat.com>)
854
-- use blkid -l to pick a single most appropriate device (#470027)
855
-- don't mkswap on halt, as it breaks swap-by-label/UUID (#469823)
856
-
857
-* Fri Oct 31 2008 Bill Nottingham <notting@redhat.com> - 8.85-1
858
-- add some error handling/hiding to netfs NM dispatcher script (#469197)
859
-- halt: fix code that causes a syntax error on multiple sound cards (#469156)
860
-- require a new enough udev version to handle where we put the rules
861
-- exit 0 in /etc/rc.d/rc (#469050)
862
-- don't set up encrypted devices that have already been set up under different
863
-  names (#462371, <wwoods@redhat.com>)
864
-- accept either the '+<addr>', or comma-separated addresses for arp_ip_target. (#467954,
865
-  <darcy.sherwood@gmail.com>)
866
-- translation updates: hu, kn, ko, ml, sr, sr@latin
867
-
868
-* Tue Oct 14 2008 Bill Nottingham <notting@redhat.com> - 8.84-1
869
-- override Arabic, Persian, and Hebrew on the console (<alsadi@ojuba.org>)
870
-- explicitly run mdadm on boot to catch degraded arrays. (<dledford@redhat.com>)
871
-- fix setting of console font/map (#458362, <ak@sensi.org>)
872
-- translations updates: hi, kn, nb, sk, sv, ta
873
-
874
-* Tue Sep 30 2008 Bill Nottingham <notting@redhat.com> - 8.83-1
875
-- various merge review fixes (#225900)
876
-  Notably: init scripts/network scripts are no longer %%config
877
-- remove some extraneous device-mapper initialization
878
-- use pidfile in status before calling pidof (#463205)
879
-- use plymouth directly, not the rhgb-client wrapper
880
-- move bridging after bonding (#449950, <djuran@redhat.com>)
881
-- use alsactl to save sound settings. (#462677, <jkysela@redhat.com>)
882
-- quit plymouth differently (<rstrode@redhat.com>)
883
-- make sure we don't try and spawn a repair shell when there's no
884
-  tty (#463161)
885
-- move udev rules to /lib
886
-- stateless updates (#433702, <harald@redhat.com>)
887
-- call logger with a full path (#447928, <harald@redhat.com>)
888
-- translation updates: as, bn_IN, ca, cz, de, es, fi, fr, gu, it, ja,
889
-  lv, mr, nl, or, pa, pl, pt_BR, ru, te, zh_TW
890
-
891
-* Wed Sep 10 2008 Bill Nottingham <notting@redhat.com> - 8.82-1
892
-- refresh translation strings
893
-- plymouth updates. (#460702, <rstrode@redhat.com>)
894
-- translation updates: fi, lv, no
895
-- remove duplicate dependency (#465182)
896
-- ifup-eth: Change how we set the zeroconf route. (#239609)
897
-- ifup*: Use 0.0.0.0/0, not 0/0. (#460580)
898
-
899
-* Fri Aug 29 2008 Bill Nottingham <notting@redhat.com> - 8.81-1
900
-- rc.sysinit: Don't use -L in find (#458652, #458504, CVE-2008-3524)
901
-- ifup: kill more code from loopback bringup
902
-
903
-* Tue Jul 29 2008 Bill Nottingham <notting@redhat.com> - 8.80-1
904
-- Fix translation typo (#455804, <ruslanpisarev@gmail.com>)
905
-- Turn off syncookies
906
-- Cleanups for proper plymouth support
907
-- Move the mcheck code to a debugmode package, make it more generic
908
-
909
-* Mon Jul 14 2008 Bill Nottingham <notting@redhat.com> - 8.79-1
910
-- fix mcheck stuff to be installed correctly
911
-- don't do an arping check for loopback interfaces
912
-- console_init: don't wait (<arjan@infradead.org>)
913
-- rc: clean up extraneous set -x noise
914
-- remove references to static dmraid/multipath binaries (#453987)
915
-- translation updates: lv
916
-
917
-* Fri Jun 20 2008 Bill Nottingham <notting@redhat.com> - 8.78-1
918
-- fix mounting of /dev/pts
919
-
920
-* Thu Jun 19 2008 Bill Nottingham <notting@redhat.com> - 8.77-1
921
-- NMDispatcher/05-netfs: fix check for default route (#445509)
922
-- service: don't set $LANG, rely on it to inherit from system locales (#422141)
923
-- init.d/functions: fix resolve_dm_raid() for older dmraid configs
924
-- Don't unmount sysfs in halt. (#446292)
925
-- rc.sysinit: don't try to startup crypto if we can't find the device
926
-- rc.sysinit: don't echo crypto stuff unless we're actually *doing* something
927
-- ifup: don't try to rename devices - udev rules are the way to go
928
-- rc.sysinit: fix typo, and don't restorecon on swap, etc. partitions (#448886)
929
-- set MALLOC_CHECK_ & MALLOC_PERTURB_ if configured (<pjones@redhat.com>)
930
-- console_init: support SYSFONTACM correctly, and support UNIMAP (#448704,
931
-  <vvv+fedora@colocall.net>)
932
-- don't export GRAPHICAL - plymouth is for all modes. also, don't start rhgb
933
-- fix clock rules to properly handle old-style RTC devices (#447019)
934
-- translation updates: ko, or, pl
935
-
936
-* Fri May  2 2008 Bill Nottingham <notting@redhat.com> - 8.76-1
937
-- fix tcsh syntax error (#444998)
938
-- remove debugging cruft from rcS-sulogin
939
-
940
-* Tue Apr 29 2008 Bill Nottingham <notting@redhat.com> - 8.74-1
941
-- use full path to /sbin/ip in NetworkManagerDispatcher script (#444378)
942
-- lang.{sh,csh}: read only user customization if LANG is already set (#372151)
943
-
944
-* Fri Apr 25 2008 Bill Nottingham <notting@redhat.com> - 8.73-1
945
-- move event-compat-sysv events here, obsolete it
946
-- fix ctrl-alt-del during rc.sysinit (#444050)
947
-- fix 'telinit X' from single-user mode (#444001)
948
-
949
-* Thu Apr 24 2008 Bill Nottingham <notting@redhat.com> - 8.72-1
950
-- don't have a S99single when using upstart (#444001, indirectly)
951
-
952
-* Wed Apr 23 2008 Bill Nottingham <notting@redhat.com> - 8.71-1
953
-- adjust to gdm using LANG instead of GDM_LANG (#372151, <rstrode@redhat.com>)
954
-- rework netfs' check for networking availability to properly handle both network
955
-  and NetworkManager
956
-
957
-* Tue Apr 15 2008 Bill Nottingham <notting@redhat.com> - 8.70-1
958
-- find is now in /bin. Use it. (#192991, #239914, #244941, #442178)
959
-- require event-compat-sysv for now (#442291)
960
-- fix serial event to wait properly
961
-- handle encrypted LVs properly (#441728)
962
-- add a sit tunnel type (#441635)
963
-- translation updates: ru
964
-
965
-* Tue Apr  8 2008 Bill Nottingham <notting@redhat.com> - 8.69-1
966
-- Bring up lo whenever it shows up, not just in network/NM
967
-- fix shutdown-related oddities (#438444)
968
-- translation updates: el, sr, sr@latin, sv
969
-
970
-* Fri Apr  4 2008 Bill Nottingham <notting@redhat.com> - 8.68-1
971
-- netfs: umount 'ncp' filesystems as well (#437117)
972
-- improve performance of s390 ccw rules (#437110, <mernst@de.ibm.com>)
973
-- fix consoletype environment leak (#439546)
974
-- ifdown-eth: make sure NEWCONFIG exists before grepping for it (#390271, continued)
975
-- console_check: always open with NONBLOCK, clear the serial structs first,
976
-  handle non-16550 ports (<dwmw2@infradead.org>)
977
-- halt: don't use /etc/sysconfig/clock (#438337)
978
-- ifup: don't attempt to re-enslave already-enslaved devices (#440077)
979
-- netfs: run as a NetworkManagerDispatcher script (#439242)
980
-- netfs: remove $local_fs from the list of provides (making it implicitly provided
981
-  by booting)
982
-- serial: add a crude hack to wait for runlevels to finish (#437379)
983
-- serial: frob /etc/securetty when necessary (#437381)
984
-- add a upstart-specific inittab
985
-- translation updates: as, bn_IN, cs, de, es, fi, fr, gu, hi, it, ja, kn, ml, mr, nb,
986
-  nl, pa, pl, pt_BR, ru, sk, sr, ta, te, zh_CN
987
-
988
-* Tue Mar 11 2008 Bill Nottingham <notting@redhat.com> - 8.67-1
989
-- actually, don't
990
-
991
-* Tue Mar 11 2008 Bill Nottingham <notting@redhat.com> - 8.66-1
992
-- use upstart to start rhgb (#433156, <cdahlin@ncsu.edu>)
993
-
994
-* Mon Mar 10 2008 Bill Nottingham <notting@redhat.com> - 8.65-1
995
-- Add a serial console udev/upstart handler (#434764, indirectly)
996
-- Add some upstart notification for sysv scripts (modified from <cjdahlin@ncsu.edu>, #431231)
997
-- Handle _rnetdev correctly (#435358, <pjones@redhat.com>)
998
-- various minor speedups (<arjan@infradead.org>)
999
-- translation updates: el, fr
1000
-- disable network by default, in favor of NetworkManager
1001
-
1002
-* Tue Feb 26 2008 Bill Nottingham <notting@redhat.com> - 8.64-1
1003
-- Add a console_init udev helper to do console initialization
1004
-- add /sbin/pidof requirement (#434863)
1005
-
1006
-* Fri Feb  1 2008 Bill Nottingham <notting@redhat.com> - 8.63-1
1007
-- don't start RAID arrays in rc.sysinit, that's done by udev (corollary of #429604)
1008
-- add a NetworkManager-dispatcher script that does netreport on interface changes
1009
-- use udev rules to set the clock, avoiding issues with modular rtcs (#290731)
1010
-
1011
-* Mon Jan 21 2008 Bill Nottingham <notting@redhat.com> - 8.62-1
1012
-- rc.d/rc.sysinit: fix syntax error (#429556)
1013
-- migrate sr@Latn -> sr@latin (<kmilos@gmail.com>)
1014
-
1015
-* Fri Jan 18 2008 Bill Nottingham <notting@redhat.com> - 8.61-1
1016
-- use lvm, not lvm.static (#429222)
1017
-- ifup-eth: don't do something odd if we find a mac address that
1018
-  matches the user-set MACADDR (#251415)
1019
-- rc.sysinit: fix root fs check to catch 'rw,ordered,noatime,etc.' properly
1020
-  (#334171)
1021
-- rc.sysinit: Use proper invocations for authconfig, system-config-network
1022
-  (#426372, #428202)
1023
-- service: handle unreadable scripts (#427767)
1024
-- initscripts.spec: add requirements for stateless
1025
-- fix perms on /etc/profile.d (#407531, <ville.skytta@iki.fi>)
1026
-- rename_device: handle quoted HWADDR, etc. in ifcfg scripts (#351291)
1027
-- minor stateless fixes
1028
-- Makefile cleanups (from OLPC, <cscott@cscott.net>)
1029
-- translation updates: fr, ru, nb
1030
-- don't endelessly loop on ifdown (#390271)
1031
-- rc.sysinit: - fix encrypted swap partitions with random key
1032
-  (<harald@redhat.com>)
1033
-
1034
-* Tue Oct  9 2007 Bill Nottingham <notting@redhat.com> - 8.60-1
1035
-- don't chvt with rhgb - just kill it when needed
1036
-
1037
-* Mon Oct  8 2007 Bill Nottingham <notting@redhat.com> - 8.59-1
1038
-- rc.sysinit: fix rhgb check
1039
-- prefdm: add wdm section (#248087)
1040
-- init.d/functions, halt: clean up some extraneous delays (#219816)
1041
-- ifup-wireless: set mode before bringing link up (#254046, <linville@redhat.com>)
1042
-- translation updates: pt_BR, hr
1043
-
1044
-* Fri Oct  5 2007 Bill Nottingham <notting@redhat.com> - 8.58-1
1045
-- revert kernel conflict so that xen can still work (#319401)
1046
-- rename_device, 60-net.rules: only suggest an interface name (part of #264901)
1047
-- require newer udev for persistent net rules (part of #264901)
1048
-- don't hang if someone puts a dangling pipe in /etc/rhgb/temp (#251219)
1049
-- genhostid: fix for 64-bit systems (#306811)
1050
-- more bash matching fixes (#220087)
1051
-- translation updates: is, nb
1052
-
1053
-* Tue Sep 25 2007 Bill Nottingham <notting@redhat.com> - 8.57-1
1054
-- work around upstream bash changes (#220087, modified from <nvigier@mandriva.com>)
1055
-- init.d/network: add Should-Start for firewall services
1056
-- ifup-eth: handle arp_ip_target separately (#288151, <agospoda@redhat.com>)
1057
-- rc.sysinit: remove rc.serial support - should be udev rules
1058
-- rc.sysinit: remove acpi module loading - now supported by the kernel automatically
1059
-- fix en_GB translation (#271201)
1060
-- translation updates: as, bn_IN, bg, ca, cs, de, el, es, fi, gu, hi, it, ja, ko, kn, ml,
1061
-  mr, nb, nl, pa, pl, pt, pt_BR, ro, sl, sr, sr@Latn, sv, ta, te, zh_CN
1062
-
1063
-* Wed Aug 29 2007 Bill Nottingham <notting@redhat.com> - 8.56-1
1064
-- rename_device: fix open() call
1065
-- rc.sysinit: optimize out some excess greps (<harald@redhat.com>)
1066
-- halt: support newer nut syntax, conflict with old versions (#252973, <tsmetana@redhat.com>)
1067
-- fix buildreq from popt -> popt-devel
1068
- - newer popt is in /lib|/lib64 - require it, and link dynamically
1069
-- rc.sysinit: added support for cryptsetup-uuids (bug #242078, <harald@redhat.com>)
1070
-- netconsole: fix status(), assorted other cleanups
1071
-- translation updates: fr, ro, sk
1072
-
1073
-* Fri Jul 27 2007 Bill Nottingham <notting@redhat.com>
1074
-- add /etc/networks (#239602)
1075
-- rc.sysinit: fix quotacheck, remove obsolete convertquota (#249003, <tometzky@batory.org.pl>)
1076
-- rc.sysinit: add gfs2 to the 'don't mount here' list (#248985)
1077
-- netfs: check for rpcbind, not portmap (#245595)
1078
-- ifup-eth: set 'primary' later for bonding devices (#236897, <agospoda@redhat.com>)
1079
-- translation updates: cy, en_GB, mk, ml, ms, pl, sk, ta, zh_CN
1080
-
1081
-* Tue Jul 17 2007 Nils Philippsen <nphilipp@redhat.com>
1082
-- avoid calling unicode_start unnecessarily often during startup/shutdown which
1083
-  causes certain monitor/video card combos to flicker heavily (#237839)
1084
-
1085
-* Tue May 15 2007 Bill Nottingham <notting@redhat.com> 8.54-1
1086
-- translation updates: as, bg, cs, ja, ms
1087
-- redirect bogus errors from cryptsetup to /dev/null <karsten@redhat.com>
1088
-
1089
-* Thu Apr 19 2007 Bill Nottingham <notting@redhat.com> 8.53-1
1090
-- init.d/halt: use sound saving wrapper from alsa-utils, conflict with
1091
-  older versions (#236916)
1092
-- usernetctl: drop user gid (#229372)
1093
-- translation updates: ta, pt_BR, nb, as, hi, de
1094
-
1095
-* Mon Apr 16 2007 Bill Nottingham <notting@redhat.com> 8.52-1
1096
-- lang.sh: fix locales where SYSFONT is not the default (#229996)
1097
-- ifup-wireless: properly quote arguments (#234756)
1098
-- readonly-root: add options for mounting state (#234916)
1099
-- rwtab: updates (#219339, <law@redhat.com>)
1100
-- add netconsole init script (#235952)
1101
-- disable link checking when PERSISTENT_DHCLIENT is set (#234075)
1102
-- restore file context on /etc/resolv.conf (#230776, <dwalsh@redhat.com>)
1103
-- ifup-post: only use the first address (#230157, <michal@harddata.com>)
1104
-- ifup-ipsec: allow overriding of my_identifier (#229343, <cmadams@hiwaay.net>)
1105
-- ifup-wireless: set link up before itweaking wireless parameters (#228253)
1106
-- rc.sysinit: restorecon on mount points when relabeling (#220322)
1107
-- init.ipv6-global: cleanup & optimize sysctl usage (#217595)
1108
-- ifup-eth: support ETHTOOL_OPTS on bridge devices (#208043, <bbaetz@acm.org>)
1109
-- network-functions-ipv6: as we don't use NETWORKING_IPV6, silence errors (#195845)
1110
-- fix description (#229919)
1111
-- translation updates
1112
-
1113
-* Fri Feb 23 2007 Bill Nottingham <notting@redhat.com> 8.51-1
1114
-- fix 'Fedora Fedora' in rc.sysinit
1115
-- halt: use kexec -x to not shut down network (#223932, <mchristi@redhat.com>)
1116
-- network_functions: fix is_bonding_device logic (#229643)
1117
-- translation updates: nb
1118
-
1119
-* Mon Feb 19 2007 Bill Nottingham <notting@redhat.com> 8.50-1
1120
-- lang.csh, lang.sh: if $LANG is set, don't override it (#229102)
1121
-- initlog.1: fix man page formatting (<esr@thyrsus.com>)
1122
-- network-functions: simplify bonding test (#215887, <herbert.xu@redhat.com>)
1123
-- fix ifup-post when lookup fails (#220318, <hiroshi.fujishima+redhat@gmail.com>)
1124
-- add bridging docs (#221412, <markmc@redhat.com>)
1125
-- release bonding slaves properly (#220525)
1126
-- fix ppp-watch with ONBOOT=yes (#216749)
1127
-- support VLAN_PLUS_VID_NO_PAD (#222975, #223011)
1128
-- remove NETWORKING_IPV6; to disable, use a modprobe rule
1129
-- translation updates: ms, de, el, pt_BR, fi, bs, sr, it, ko
1130
-
1131
-* Tue Dec 19 2006 Bill Nottingham <notting@redhat.com> 8.49-1
1132
-- rc.sysinit: remove raidautorn (#219226)
1133
-- ifup-eth: set MACADDR, MTU before initializing bonding slaves, etc (#218792)
1134
-- translation updates: mr, ms, hi, te, ml
1135
-
1136
-* Tue Nov 28 2006 Bill Nottingham <notting@redhat.com> 8.48-1
1137
-- add a step to rename any temporarily renamed devices (#208740, #214817)
1138
-- make sure network modules don't get accidentally reloaded (#211474)
1139
-- rc.sysinit: fix dmraid test (#216334)
1140
-- init.d/halt: don't unmount network filesystems
1141
-- ipsec: Add a way to manually manage racoon.conf (#159343, <mitr@redhat.com>)
1142
-- sysconfig.txt: Document ~/.i18n (#199323, <mitr@redhat.com>)
1143
-- some translation updates
1144
-
1145
-* Mon Nov  6 2006 Bill Nottingham <notting@redhat.com> 8.47-1
1146
-- lang.{sh,csh}: handle sinhalese as well in CJKI clauses (#212438)
1147
-- rc.sysinit: add '--auto=yes' to mdadm invocation (#213671)
1148
-- rename_device: fix incorrect handling of .bak files
1149
-- mount tmpfs with -n (#213132)
1150
-- various SUBCHANNELS related s390 fixage (#204803)
1151
-- lang.{sh,csh}: support iso-8859-8 (#212738, <matan@svgalib.org>)
1152
-
1153
-* Fri Oct 27 2006 Bill Nottingham <notting@redhat.com> 8.46-1
1154
-- ifup-eth: restorecon on moved lease file
1155
-- rc.sysinit: handle "nodmraid" and "nompath" command line options (#209377, <pjones@redhat.com>)
1156
-- revert early-login support (#210836, essentially)
1157
-- blacklist CJKI on the virtual console (#120819)
1158
-- rc.sysinit: use dmraid.static (#211297)
1159
-- use sysfs interface for bonding (#202443, <agospoda@redhat.com>)
1160
-- use /etc/statetab, /etc/statetab.d for local state (#211839, <markmc@redhat.com>)
1161
-- fix or_IN and similar locales (#212219)
1162
-- use SUBCHANNELS as the primary key for s390 network devices (#204803)
1163
-- translation updates
1164
-
1165
-* Fri Oct  6 2006 Bill Nottingham <notting@redhat.com> 8.45-1
1166
-- lang.csh/lang.sh - do *not* stty iutf8; too much chaos with SIGTTOU
1167
-  (reverts: #186961; fixes #209469)
1168
-- translation updates: ms
1169
-
1170
-* Wed Oct  4 2006 Bill Nottingham <notting@redhat.com> 8.44-1
1171
-- separate tmpfs-usage for state from readonly-root
1172
-- set keymap correctly in non-utf8 locale (#167363)
1173
-- setsysfont: run unicode_stop if in non-unicode locale
1174
-- lang.csh/lang.sh: set iutf8 if appropriate (#186961)
1175
-- lang.csh/lang.sh: handle non-utf8 locales correctly (#200100)
1176
-- rc.sysinit: redirect stderr from setsysfont (#209204, indirectly)
1177
-- rwtab: fix iscsi file location (#208864)
1178
-- translation updates: el, da, as, or
1179
-- fix stateless updates (#206331, <law@redhat.com>)
1180
-
1181
-* Wed Sep 27 2006 Bill Nottingham <notting@redhat.com> 8.43-1
1182
-- move ccwgroup initialization to a udev rule (should fix #199139,
1183
-  #199655, #169161)
1184
-- init.d/functions: don't write to gdmfifo
1185
-- remove unused-since-RHL-7 consolechars code, update docs (#206106)
1186
-- stateless updates (#206331, <law@redhat.com>)
1187
-- translation updates (el, ms, hr, sl)
1188
-
1189
-* Thu Sep 21 2006 Bill Nottingham <notting@redhat.com> 8.42-1
1190
-- run rc.sysinit, /etc/rc in monitor mode (part of #184340)
1191
-- use a better check for 'native' services (#190989, #110761, adapted
1192
-  from <matthias@rpmforge.net>)
1193
-
1194
-* Tue Sep 19 2006 Bill Nottingham <notting@redhat.com> 8.41-1
1195
-- fix network ipv6 hang (#207137, others)
1196
-- rc.sysinit: change blkid.tab path to /etc/blkid/blkid.tab
1197
-- rename_device: reset DEVPATH also when renaming (#206884, <phil@fifi.org>)
1198
-- sysconfig.txt: clarify onboot/onparent usage
1199
-
1200
-* Fri Sep 15 2006 Bill Nottingham <notting@redhat.com> 8.40-1
1201
-- translation updates
1202
-- rename_device: use '__tmpXXXX' instead of 'devXXXX' as a temporary device
1203
-  name to avoid any realistic namespace clashes
1204
-- rc.sysinit: set default affinity if specified on commandline (#203359)
1205
-- always pass path to '.' (#206035)
1206
-- run setsysfont, loadkeys always when /dev/tty{0,1} exist (#150769)
1207
-- allow going to a shell when system is shut down cleanly (from <dwalsh@redhat.com>)
1208
-
1209
-* Tue Sep  5 2006 Bill Nottingham <notting@redhat.com> 8.39-1
1210
-- translation updates
1211
-- Handle partitions on multipath/dmraid better (<pjones@redhat.com>)
1212
-- make /dev/mapper/control ourselves (<pjones@redhat.com>)
1213
-- init.d/network: simplify 'status' call
1214
-- fix actual 169.254 networks (#203591)
1215
-- rc.sysinit: don't run vgscan (#191879)
1216
-- init.d/halt: don't umount /dev/root<foo> (<oblin@mandriva.com>)
1217
-- rc.sysinit: catch more dmraid errors (#200683)
1218
-- support 'tmp' option in /etc/crypttab (#201382, <mitr@redhat.com>,
1219
-  <lv@lekv.de>)
1220
-- IPv6 updates (<pb@bieringer.de>, includes a fix for #143452)
1221
-
1222
-* Tue Aug  1 2006 Bill Nottingham <notting@redhat.com> 8.38-1
1223
-- translation updates
1224
-- bring down bonding slaves on ifdown (#199706)
1225
-- support LINKDELAY for dhcp (#191137)
1226
-- netfs: run multipath on netdev devices (#180977)
1227
-- halt: use /proc/mounts instead of /etc/mtab (#198426, <mitr@redhat.com>)
1228
-- rc.sysinit: fix getkey race (#191453, <mitr@redhat.com>)
1229
-- spec cleanups (#188614, <kloczek@rudy.mif.pg.gda.pl>)
1230
-- support aliases on vlan (#193133, <mitr@redhat.com>)
1231
-- clean up ifcfg file handling (<mitr@redhat.com>, <michal@harddata.com>)
1232
-- GRE and IPIP tunnel support (#168990, <mitr@redhat.com>,
1233
-  <razvan.vilt@linux360.ro>, <aaron.hope@unh.edu>, <sean@enertronllc.com>)
1234
-- rc.sysinit: don't format encrypted swap always (#127378)
1235
-- don't try to add routes to alias devices (#199825, #195656)
1236
-
1237
-* Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.37-1
1238
-- update translations
1239
-
1240
-* Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.36-1
1241
-- rework automatic swapon - only run if AUTOSWAP=yes, and fix errors
1242
-  (#198695, #196179, #196208)
1243
-- redo single so it starts last in runlevel 1, and doesn't kill/start
1244
-  services itself
1245
-- add configurable delay for killproc() (#198429, <jorton@redhat.com>)
1246
-- fix loop in rename_device (#199242, <markmc@redhat.com>)
1247
-- rc.sysinit: stateless updates (#197972, <law@redhat.com>)
1248
-- support for copying dhcp leases from initramfs (#198601, <markmc@redhat.com>)
1249
-- readonly-root: SELinux works now in the kernel, allow it
1250
-- init.d/network: don't bring down network if root is on a network device
1251
-- init.d/halt: don't use -i to halt; causes problems with iscsi
1252
-- add support for routing rule-$device (#132252, <mitr@redhat.com>)
1253
-- fix rhgb output (#192604, <tonynelson@georgeanelson.com>)
1254
-- fix crypttab options for LUKS (#197656, <mitr@redhat.com>)
1255
-- ipsec: various fixes & new features (#150682, #168972, <mitr@redhat.com>, <alex@milivojevic.org>)
1256
-- ipsec: add check for IKE_METHOD (#197576, <john_smyth@mail.ru>)
1257
-- rename_device: ignore alias devices, fix race (#186355)
1258
-- ifup/ifdown: don't mark as %%config
1259
-- rwtab: some additions/cleanup
1260
-
1261
-* Mon Jun 12 2006 Bill Nottingham <notting@redhat.com> 8.35-1
1262
-- readonly root enhancments (modified from <law@redhat.com>, #193164)
1263
-- encrypted swap, non-root filesystem support (#127378, <mitr@redhat.com, <redhat@flyn.org>)
1264
-- clarify killproc usage (#193711, <mitr@redhat.com>)
1265
-- document BRIDGE= (#192576, <mitr@redhat.com>)
1266
-- rc.sysinit: allow for sulogin instead of automatic relabeling (<dwalsh@rehdat.com>)
1267
-
1268
-* Tue May 23 2006 Bill Nottingham <notting@redhat.com> 8.34-1
1269
-- link glib2 dynamically now that it's in /lib, conflict with older
1270
-  versions
1271
-- handle cups specially when cleaning /var (#189168)
1272
-- remove ifdown-aliases (<mitr@redhat.com>)
1273
-- ifup-ipsec: fix key handling when only one of AH or ESP is used
1274
-  (#166257, <mituc@iasi.rdsnet.ro>)
1275
-- IPv6 updates, including RFC 3041 support (<pb@bieringer.de>)
1276
-- routing fixes, add METRIC support for default routes (#124045, <mitr@redhat.com>)
1277
-- fix handling of mount points with white space (#186713, <mitr@redhat.com>)
1278
-
1279
-* Thu Apr 20 2006 Bill Nottingham <notting@redhat.com> 8.33-1
1280
-- support for readonly root
1281
-- rc.sysinit: remove call to zfcpconf.sh - that should be udev rules
1282
-- ifup*: add NETWORKDELAY and LINKDELAY (#176851, <mitr@redhat.com>)
1283
-- rc.sysinit: remove obsolete initrd code (<pjones@redhat.com>)
1284
-
1285
-* Mon Apr 10 2006 Bill Nottingham <notting@redhat.com> 8.32-1
1286
-- netfs: fix redirect (#187505)
1287
-- rc.sysinit add forcequotacheck (#168118, <mitr@redhat.com>)
1288
-- functions/pidof: various fixes (#182623, others <mitr@redhat.com>)
1289
-- add support for DHCP on bridges (#125259, <mitr@redhat.com>,
1290
-  anders@kaseorg.com>)
1291
-- rc.sysinit: use pidof, not killall (#185429, <pjones@redhat.com>)
1292
-- ppp fixes (#129195, #163950, #92023, <mitr@redhat.com>, <avi@argo.co.il>)
1293
-- ifup/ifdown: unset $WINDOW (#174336, <mitr@redhat.com>)
1294
-
1295
-* Fri Mar 17 2006 Bill Nottingham <notting@redhat.com> 8.31.2-1
1296
-- add udev helper to rename network devices on device creation
1297
-
1298
-* Tue Mar 14 2006 Bill Nottingham <notting@redhat.com> 8.31.1-1
1299
-- fix context of /dev/pts (#185436)
1300
-- translation updates
1301
-
1302
-* Sun Mar  5 2006 Bill Nottingham <notting@redhat.com> 8.31-1
1303
-- fix kexec support (<jmoyer@redhat.com>)
1304
-- translation updates
1305
-
1306
-* Tue Feb 28 2006 Bill Nottingham <notting@redhat.com> 8.30-1
1307
-- hotplug: don't cause modules to be reloaded on ifdown/rmmod (#179809)
1308
-- fix endless loops in ifup/ifdown (#177792, #182466)
1309
-- fix enabling of enforcing SELinux mode after relabel (#181893)
1310
-- remove debugging code from ifup-bnep
1311
-- add /proc, /sys mounting back to rc.sysinit
1312
-  Note: booting without an initrd is deprecated
1313
-- translation updates
1314
-
1315
-* Tue Feb 14 2006 Peter Jones <pjones@redhat.com> 8.29-1
1316
-- scrub another possible error message from dmraid output
1317
-
1318
-* Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.28-1
1319
-- kill nash-hotplug before starting udev (<pjones@redhat.com>)
1320
-- silence warnings on /dev/pts remount (<pjones@redhat.com>)
1321
-- more translation updates
1322
-
1323
-* Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.27-1
1324
-- translation updates
1325
-- lang.sh: revert fix for #176832, it's broken
1326
-- ifup-aliases fixes (<pjones@redhat.com>,<mitr@redhat.com>)
1327
-
1328
-* Tue Feb  7 2006 Bill Nottingham <notting@redhat.com> 8.26-1
1329
-- revert "rc.sysinit: don't mount usbfs, libusb no longer uses it" change
1330
-- add some ugly hacks to make sure net hotplug doesn't run after unclean
1331
-  shutdown (#177795)
1332
-- don't mount /sys and /proc in rc.sysinit - the initrd already does
1333
-  (<pjones@redhat.com>)
1334
-- halt: try to unmount tmpfs filesystems before swapoff (#174000,
1335
-  <mitr@redhat.com>)
1336
-
1337
-* Thu Feb  2 2006 Bill Nottingham <notting@redhat.com> 8.25-1
1338
-- ifup: don't run the arping check if the address is already on the device
1339
-
1340
-* Wed Feb  1 2006 Bill Nottingham <notting@redhat.com> 8.24-1
1341
-- init.d/functions: fix sendmail startup
1342
-- sysconfig.txt: fix typos (<mitr@redhat.com>)
1343
-
1344
-* Tue Jan 31 2006 Peter Jones <pjones@redhat.com> 8.23-1
1345
-- rc.sysinit: do a better job of not activating already active dmraids
1346
-
1347
-* Tue Jan 31 2006 Bill Nottingham <notting@redhat.com> 8.22-1
1348
-- remove references to /usr/X11R6/bin (#177938)
1349
-- rc.sysinit: fix SELinux message formatting (#178532)
1350
-- rc.sysinit: clean cvs as well (#178539, <ville.skytta@iki.fi>)
1351
-- init.d/halt: move halt.local so that it runs before /  is remounted r/o (#179314)
1352
-- rc.sysinit: don't activate already active dmraids (<pjones@redhat.com>)
1353
-- rc.sysinit: don't mount usbfs, libusb no longer uses it
1354
-- init.d/functions: Add -p to status() (#134363, <mitr@redhat.com>)
1355
-- init.d/functions: Separate /var/run/*.pid handling and pidof calls
1356
-  to private functions (#63440, <mitr@redhat.com>)
1357
-- init.d/functions: update for current LSB, including -p pidfile
1358
-  (#99325, #134363, <mitr@redhat.com>, <tobias.burnus@physik.fu-berlin.de>)
1359
-- getkey: various cleanups, add man page (#54481, <mitr@redhat.com>)
1360
-- lang.sh: don't always call consoletype (<laroche@redhat.com>)
1361
-
1362
-* Fri Jan 20 2006 Bill Nottingham <notting@redhat.com> 8.21-1
1363
-- move handling of network hotplug events here, add appropriate udev
1364
-  rules, obsolete hotplug
1365
-- get rid of some path lookups (#178321, <mclasen@redhat.com>)
1366
-- get hwaddrs from sysfs as opposed to ip | sed
1367
-- translation updates
1368
-- lang.sh: don't run unicode_start for subshells (#176832)
1369
-- halt: ignore sysfs but not /sys<otherstuff> (#177612, <bnocera@redhat.com>)
1370
-- add service(8) man page (#44857) <mitr@redhat.com>
1371
-
1372
-* Wed Dec 21 2005 Bill Nottingham <notting@redhat.com> 8.20-1
1373
-- remove kmodule. udev handles module loading now
1374
-- require appropriate udev
1375
-
1376
-* Thu Dec 15 2005 Bill Nottingham <notting@redhat.com> 8.19-1
1377
-- Require syslog, for alternate implementations thereof (#172885)
1378
-- Fix fsck invocation for weeding out netdev devices (#175803)
1379
-
1380
-* Fri Dec  2 2005 Bill Nottingham <notting@redhat.com> 8.18-1
1381
-- use new dhclient file paths, add appropriate conflict (#169164)
1382
-
1383
-* Wed Oct  5 2005 Bill Nottingham <notting@redhat.com> 8.17-1
1384
-- make sure corefile limiting works for user processes as well
1385
-  (#166511, <ville.skytta@iki.fi>)
1386
-- ifup-routes: handle no EOF in the route file (#156972)
1387
-- rc.sysinit: tweak mesage (#156972)
1388
-- ifdown-eth: clean up error message (#135167)
1389
-- rc.sysinit: call kpartx on multipath devices (#160227)
1390
-- ifup-eth: move wireless options before bridge options (#122801)
1391
-- ifup-wireless: silence error (#90601)
1392
-- init.d/functions: change translated string (#54682)
1393
-
1394
-* Tue Sep 27 2005 Than Ngo <than@redhat.com> 8.16-1
1395
-- fix typo bug
1396
-
1397
-* Mon Sep 26 2005 Than Ngo <than@redhat.com> 8.15-1
1398
-- support proper dial-in configuration, thanks to Peter Bieringer (#158380)
1399
-
1400
-* Thu Sep 22 2005 Bill Nottingham <notting@redhat.com>
1401
-- kmodule: don't probe for uninteresting devices. speeds things up
1402
-- network-functions: deal with broken networks better (#168947)
1403
-- rc.sysinit: automatically reboot if labels are really out of date
1404
-  (<dwalsh@redhat.com>)
1405
-- network-functions: throw out nameif error messages
1406
-- rc.sysinit: use multipath.static (#168321)
1407
-- rc.sysinit: use ignorelocking (#168195)
1408
-
1409
-* Mon Sep 12 2005 Bill Nottingham <notting@redhat.com> 8.14-1
1410
-- fix usage of the module blacklist (#168020)
1411
-
1412
-* Fri Sep  9 2005 Bill Nottingham <notting@redhat.com> 8.13-1
1413
-- fix on-boot relabelling (<dwalsh@redhat.com>)
1414
-
1415
-* Mon Aug 22 2005 Bill Nottingham <notting@redhat.com> 8.12-1
1416
-- ifup-eth: fix interface renaming (#158774)
1417
-- rc.sysinit: use modprobe, not insmod (#159120, <tmus@tmus.dk>)
1418
-- remove workaround for the fonts-not-initialized-on-secondary-consoles
1419
-  problem (fixed in 2.6.12-rc4 and later)
1420
-- setsysfont: correctly bracket systfontacm (#159706)
1421
-- rc.sysinit: always use udevsend, even if no modules (#160987)
1422
-- ifdown-aliases: add 'cd' to the proper dir (#161170)
1423
-- add diskdump restore support (<tuchida@redhat.com>),
1424
-  conflict with appropriate diskdumputils
1425
-- rc.sysinit: dmraid/multipath support
1426
-  - remove LVM1 support
1427
-- init.d/functions: handle odd quoting in args (#161316, <stransky@redhat.com>)
1428
-- ifup-wireless: set rate in quotes (#163123)
1429
-- handle lvm & fsck for network block devices (#148764,
1430
-  <alewis@redhat.com>)
1431
-- initlog: fix invalid free calls,  (#165033), (#163973,<dwalsh@redhat.com>)
1432
-- sysconfig.txt: remove hdparm docs, since the code isn't there (#162962)
1433
-- updated translations: ms, ja, ko, et, zh_CN, zh_TW, sr, ar
1434
-
1435
-* Tue May 10 2005 Bill Nottingham <notting@redhat.com> 8.11-1
1436
-- fix mis-bringup of interfaces due to accidentally matched HWADDR
1437
-  (a.k.a. ONBOOT=no not working) (#153669, #157252)
1438
-- support automatic relabeling later if rebooted w/o SELinux
1439
-  (<dwalsh@redhat.com>)
1440
-- rc.sysinit: fix fixfiles invocation (#157182)
1441
-- btmp should be 0600 (#156900)
1442
-- translation updates: fr, bg, ru, mk, pa, es
1443
-
1444
-* Fri Apr 29 2005 Bill Nottingham <notting@redhat.com> 8.10-1
1445
-- fix hang on stale GDM sockets (#156355)
1446
-
1447
-* Wed Apr 27 2005 Bill Nottingham <notting@redhat.com> 8.09-1
1448
-- rc.sysinit: clean up screen sockets (#155969)
1449
-- functions: use pidof -c in various functions
1450
-- ifup-ppp: fix static routes with ppp demand dialing (#20142,
1451
-  <ohrn+redhat@chalmers.se>)
1452
-- add btmp support (#155537)
1453
-- don't send dhcp hostname (revert of fix for #149667)
1454
-- more early-login modifications (<mclasen@redhat.com>)
1455
-- functions: fix echo (#155270)
1456
-
1457
-* Mon Apr 18 2005 Karsten Hopp <karsten@redhat.de> 8.08-3
1458
-- fix ifup-routes script (#155195)
1459
-
1460
-* Mon Apr 18 2005 Florian La Roche <laroche@redhat.com>
1461
-- fix strstr call in rc.sysinit
1462
-
1463
-* Fri Apr 15 2005 Bill Nottingham <notting@redhat.com> 8.08-1
1464
-- update translation base
1465
-- automatically send hostname for DHCP if it's available and not
1466
-  overridden (#149667)
1467
-- load user-defined module scripts from /etc/sysconfig/modules at
1468
-  boot (#123927)
1469
-- halt: reverse sort the mount list, avoiding errors
1470
-  (#147254, <jamesodhunt@hotmail.com>)
1471
-- ifup-wireless: add SECURITYMODE (#145407)
1472
-- network-functions: don't error out if hotplug doesn't exist (#140008)
1473
-- ifup: always return errors on trying to bring up nonexistent devices (#131461)
1474
-- ifup: fix error message (#143674)
1475
-- rc.sysinit: add a autorelabel boot target (#154496)
1476
-- prefdm: if something else is specified as $DISPLAYMANAGER, try that (#147304)
1477
-- remove support for the old firewall type
1478
-- network: optimize some (#138557, <drepper@redhat.com>)
1479
-- prefdm: fix prefdm arg handling (#154312, <khc@pm.waw.pl>)
1480
-- gdm early-login support (adapted from <rstrode@redhat.com>)
1481
-- ifup-routes: make sure commented lines are handled correctly (#154353,
1482
-  #114548, <link@pobox.com>)
1483
-- some sysconfig.txt updates (<link@pobox.com>, <jvdias@redhat.com>)
1484
-- rc.sysinit: fix restorecon invocation (#153100)
1485
-- initlog: free some of the more egregious memory leaks (#85935)
1486
-- initlog: fix potential memory overread (#153685, <in-redhat@baka.org>)
1487
-- remove some conflicts, %%post scripts, etc. that were only relelvant
1488
-  for upgrades from pre-7.0
1489
-- other minor fixes, see ChangeLog
1490
-
1491
-* Thu Mar 31 2005 Bill Nottingham <notting@redhat.com> 8.07-1
1492
-- bring back initlog for third-party scripts until a new framework is
1493
-  in place
1494
-
1495
-* Wed Mar 30 2005 Bill Nottingham <notting@redhat.com> 8.06-1
1496
-- handle alternate VLAN naming schemes (#115001, <kas@informatics.muni.cz>)
1497
-- ifup-ipsec: handle non-ascii keys (#150552)
1498
-- add proper ipsec route (#146169, #140654)
1499
-- add a restorecon for /tmp to rc.sysinit
1500
-- document ONHOTPLUG in sysconfig.txt
1501
-- fix mistranslation (#151120)
1502
-- don't return 1 for stopping a process if it isn't running at all
1503
-- don't explicitly set fwd polices for ipsec traffic. Let setkey
1504
-  handle it.
1505
-
1506
-* Mon Mar  7 2005 Bill Nottingham <notting@redhat.com> 8.05-1
1507
-- ipv6 cleanups (<pb@bieringer.de>)
1508
-- rc.sysinit: fix rngd check (#130350)
1509
-  ... then turn it off entirely
1510
-- rc.sysinit: get rid of duplicate date printout (#149795)
1511
-- ifdown: handle being called on down devices better
1512
-- handle saved resolv.conf on all device types
1513
-- fix network-functions cleanup
1514
-- netfs: fix _netdev unmounting (#147610, <alewis@redhat.com>)
1515
-- dhcp release cleanups (<jvdias@redhat.com>)
1516
-- ifup-bnep: bluetooth update <dwmw2@infradead.org>
1517
-- more ipsec stuff (#147001, <ckjohnson@gwi.net>)
1518
-
1519
-* Wed Jan 19 2005 Bill Nottingham <notting@redhat.com> 8.04-1
1520
-- split out ifup/ifdown general case to ifup/ifdown-eth;
1521
-  add ifup/ifdown-bnep (<dwmw2@redhat.com>)
1522
-- ifup-ipsec: add fwd policies (#145507)
1523
-- fix multiple scsi_hostadapter loads (#145432)
1524
-- enable syncookies in sysctl.conf (#145201)
1525
-
1526
-* Wed Jan 12 2005 Bill Nottingham <notting@redhat.com> 8.03-1
1527
-- use udevsend to handle hotplug events (requires recent udev)
1528
-- remove pump, dhcpcd support
1529
-- fix ONxxx (#136531, <cww@redhat.com>)
1530
-- fix various fgreps to not catch commented lines (#136531, expanded
1531
-  from <cww@redhat.com>)
1532
-- set ETHTOOL_OPTS on addressless devices (#144682, <mpoole@redhat.com>)
1533
-- kill dhcp client even if BOOTOPROTO is now static (#127726, others)
1534
-- replace the use of route/ifconfig with ip in IPv6 code, remove support
1535
-  for ipv6calc (<pb@bierenger.de>, <pekkas@netcore.fi>)
1536
-- fix quoting in daemon() (#144634)
1537
-- make sysctl be silent (#144483)
1538
-
1539
-* Mon Jan  3 2005 Bill Nottingham <notting@redhat.com> 8.02-1
1540
-- remove initlog, minilogd
1541
-- add a flag to kmodule for use with kudzu's socket mode, use it
1542
-- change setting of IPv6 default route (#142308, <pb@bieringer.de>)
1543
-- netfs: don't unmount NFS root FS (#142169)
1544
-
1545
-* Mon Dec  6 2004 Bill Nottingham <notting@redhat.com> 8.01-1
1546
-- further bootup noise reductions
1547
-- rc.d/rc.sysinit: do implicit unicode conversion on keymap
1548
-
1549
-* Mon Nov 29 2004 Bill Nottingham <notting@redhat.com> 8.00-1
1550
-- fix previous fix (#139656)
1551
-
1552
-* Wed Nov 24 2004 Bill Nottingham <notting@redhat.com> 7.99-1
1553
-- clear and repopulate mtab before mounting other filesystems (#139656)
1554
-- remove more devfs compat
1555
-
1556
-* Tue Nov 23 2004 Bill Nottingham <notting@redhat.com> 7.98-1
1557
-- various kmodule speedups
1558
-- rc.d/init.d/netfs: don't mount GFS (#140281)
1559
-- fix various minilogd bogosities (#106338)
1560
-
1561
-* Mon Nov 15 2004 Karsten Hopp <karsten@redhat.de> 7.97-1
1562
-- configure CTC protocol if CTCPROT is set (#133088)
1563
-
1564
-* Mon Nov 15 2004 Bill Nottingham <notting@redhat.com>
1565
-- fix check_link_down to still check negotiation if link is
1566
-  listed as "up" on entering (#110164, <dbaron@dbaron.org>)
1567
-
1568
-* Thu Nov 11 2004 Karsten Hopp <karsten@redhat.de> 7.96-1
1569
-- parse OPTIONS for QETH, CTC, LCS interfaces (#136256, mainframe)
1570
-
1571
-* Tue Nov  9 2004 Bill Nottingham <notting@redhat.com>
1572
-- fix typo (#134787, <bnocera@redhat.com>)
1573
-
1574
-* Sun Nov  7 2004 Bill Nottingham <notting@redhat.com> 7.95-1
1575
-- various translation updates
1576
-
1577
-* Tue Nov  2 2004 Bill Nottingham <notting@redhat.com>
1578
-- take an axe to rc.sysinit:
1579
-  - remove delay on unclean startup
1580
-  - remove hdparm code
1581
-  - remove LVM1 code
1582
-  - remove old raidtab code in favor of mdadm
1583
-  - remove support for old isapnp tools
1584
-  - move all block device mangling before fsck. run fsck *once*, not twice
1585
-  - some more LC_ALL=C stuff
1586
-
1587
-* Sun Oct 31 2004 Florian La Roche <laroche@redhat.com>
1588
-- /etc/rc.d/rc: use "LC_ALL=C grep" for small speedup
1589
-- /etc/rc.d/rc.sysinit:
1590
-  - do not read udev.conf, this seems to be all in the start_udev script
1591
-  - fix detection of "nomodules" kernel command line option
1592
-  - read /proc/cmdline earlier and convert rhgb to use that, too
1593
-  - load_module(): change redirection to /dev/null
1594
-  - some checks for RHGB_STARTED="" looked strange
1595
-- /etc/sysconfig/network-scripts/ifup-ppp:
1596
-  - remove a call to basename with shell builtins
1597
-- /etc/sysconfig/network-scripts/network-functions:
1598
-  - remove some calls to basename/sed with shell builtins
1599
-
1600
-* Wed Oct 27 2004 Bill Nottingham <notting@redhat.com> 7.93.2-1
1601
-- fix prefdm fallback to installed display managers (#137274)
1602
-- fix incorrect rhgb temporary path (#137391)
1603
-
1604
-* Mon Oct 18 2004 Bill Nottingham <notting@redhat.com> 7.93-1
1605
-- translation updates
1606
-- fix handling of GATEWAYDEV (#133575, <pekkas@netcore.fi>)
1607
-
1608
-* Sun Oct 17 2004 Bill Nottingham <notting@redhat.com> 7.91-1
1609
-- rc.d/rc.sysinit: remove devlabel call
1610
-- mdadm support, now that raidtools is gone (#126636, #88785)
1611
-- call ipv6to4 scripts in /etc/ppp/(ip-up|ip-down) (#124390, <dwmw2@redhat.com>)
1612
-- cleanup a couple of nits that could affect bug #134754
1613
-- make sure we return to rhgb after fsck (#133966, #112839, #134449)
1614
-- automatically reboot when fsck calls for it, instead of requiring
1615
-  manual intervention (#117641 and duplicates)
1616
-- ifup-wireless: fix key for open vs. restricted (#135235, <dax@gurulabs.com>)
1617
-- translation updates
1618
-
1619
-* Fri Oct 08 2004 Karsten Hopp <karsten@redhat.de> 7.90-1
1620
-- fix portname for LCS devices
1621
-
1622
-* Fri Oct 08 2004 Bill Nottingham <notting@redhat.com>
1623
-- remove sysconfig/rawdevices, as initscript is removed
1624
-
1625
-* Thu Oct 07 2004 Florian La Roche <Florian.LaRoche@redhat.de>
1626
-- change /etc/sysctl.conf to not allow source routed packets per default
1627
-
1628
-* Wed Oct  6 2004 Bill Nottingham <notting@redhat.com> - 7.88-1
1629
-- fix requires
1630
-
1631
-* Tue Oct  5 2004 Dan Walsh <dwalsh@redhat.com> - 7.87-1
1632
-- Change SELinux relabel to not remount /
1633
-
1634
-* Mon Oct  4 2004 Bill Nottingham <notting@redhat.com>
1635
-- use runuser instead of su; require it
1636
-- init.d/halt: use right file name for random seed (#134432)
1637
-
1638
-* Fri Oct  1 2004 Bill Nottingham <notting@redhat.com> - 7.86-1
1639
-- use /etc/hotplug/blacklist to blacklist modules in hardware init (#132719)
1640
-- filter indic locales on the console (#134198)
1641
-
1642
-* Wed Sep 29 2004 Bill Nottingham <notting@redhat.com> - 7.85-1
1643
-- ifup, network-functions: fix worked-by-accident shell quoting
1644
-- lang.csh: remove setting of dspmbyte (#89549, <mitr@redhat.com>)
1645
-- SELinux fixes
1646
-- clean up prefdm
1647
-- init.d/functions: export LC_MESSAGES (#133786)
1648
-- allow daemon to coredump if requested (#130175)
1649
-- network-functions: be more liberal in what we accept for link types (#90602, #127984)
1650
-- fix overzealousness with -range aliases (#65415)
1651
-- rc.sysinit: use s-c-keyboard, not kbdconfig (#133929)
1652
-- fix checkpid logic, clean up potential errors (#134030)
1653
-- translation updates
1654
-
1655
-* Wed Sep 22 2004 Bill Nottingham <notting@redhat.com> - 7.84-1
1656
-- only start udev once
1657
-
1658
-* Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 7.83-1
1659
-- conflict with old udev
1660
-- use udev if it's present
1661
-
1662
-* Tue Sep 21 2004 Bill Nottingham <notting@redhat.com>
1663
-- don't mount usbfs without usb. also, at least be consistent in filesystem type
1664
-
1665
-* Fri Sep 17 2004 Bill Nottingham <notting@redhat.com> - 7.82-1
1666
-- fix handling of nonexistent devices (#132839)
1667
-- rhgb enhancements (<veillard@redhat.com>, #132665)
1668
-- initscripts.spec: require nash (#132513)
1669
-- translation updates
1670
-
1671
-* Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 7.81-1
1672
-- load iucv device config after /etc/sysconfig/network so that
1673
-  GATEWAY doesn't get overwritten
1674
-
1675
-* Fri Sep 10 2004 Bill Nottingham <notting@redhat.com> - 7.80-1
1676
-- fix IPv6 6to4 & NAT (#118928, <pb@bieringer.de>, <pekkas@netcore.fi>)
1677
-
1678
-* Fri Sep 10 2004 Karsten Hopp <karsten@redhat.com> - 7.79-1
1679
-- load ctc device config after /etc/sysconfig/network so that
1680
-  GATEWAY doesn't get overwritten
1681
-
1682
-* Wed Sep  8 2004 Dan Walsh <dwalshg@redhat.com> - 7.78-2
1683
-- fix setting SELinux contexts on udev-created-in-initrd devices
1684
-- Let restorecon check if selinux is enabled.
1685
-
1686
-* Wed Sep  8 2004 Bill Nottingham <notting@redhat.com> - 7.78-1
1687
-- set SELinux contexts on udev-created-in-initrd devices, if necessary
1688
-
1689
-* Wed Sep  1 2004 Bill Nottingham <notting@redhat.com> - 7.77-1
1690
-- mount usbfs (#131347)
1691
-- start any automatic raid devices
1692
-- remove triggers for ancient releases, bulletproof remaining ones (#131356)
1693
-
1694
-* Wed Sep  1 2004 Jeremy Katz <katzj@redhat.com> - 7.76-1
1695
-- udev uses UDEV_TMPFS now
1696
-
1697
-* Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 7.75-1
1698
-- fix sysfs configuration of qeth and lcs network interfaces
1699
-  (eth, tr, hsi)
1700
-
1701
-* Mon Aug 30 2004 Karsten Hopp <karsten@redhat.de> 7.74-1
1702
-- fix support for LCS portnumbers (mainframe)
1703
-
1704
-* Fri Aug 27 2004 Jason Vas Dias  <jvdias@redhat.com> 7.73-1
1705
-- Add support for running the DHCPv6 client to ifup
1706
-- (new DHCPV6C=yes/no ifcfg-${IF} variable) + update sysconfig.txt
1707
-
1708
-* Fri Aug 27 2004 Bill Nottingham <notting@redhat.com> 7.72-1
1709
-- flip the kernel conflict to a Requires:
1710
-
1711
-* Thu Aug 26 2004 Karsten Hopp <karsten@redhat.de> 7.71-1
1712
-- ifcfg-iucv/ctc: drop REMIP and use GATEWAY instead
1713
-
1714
-* Thu Aug 26 2004 Bill Nottingham <notting@redhat.com> 7.70-1
1715
-- autoload hardware modules on startup
1716
-- minor fsck cleanup (#115028, <leonard-rh-bugzilla@den.ottolander.nl>)
1717
-- ifup: support STP bridging (#123324)
1718
-- rc.sysinit: do a SELinux relabel if forced
1719
-- rc.sysinit: remove devfs compat and the remaining 2.4 compat
1720
-- ifup-wireless: support multiple keys (#127957)
1721
-- fix firmware loading (#129155, <bnocera@redhat.com>)
1722
-
1723
-* Tue Aug 24 2004 Karsten Hopp <karsten@redhat.de> 7.68-1
1724
-- execute zfcfconf.sh if available (mainframe)
1725
-
1726
-* Mon Aug 23 2004 Jason Vas Dias <jvdias@redhat.com> 7.67-1
1727
-- fix change_resolv_conf: if pre-existing /etc/resolv.conf
1728
-- non-existent or empty, replace with new file contents.
1729
-
1730
-* Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
1731
-- Allow users to use generic /etc/dhclient.conf if per-device
1732
-- /etc/dhclient-${DEVICE}.conf is non-existent or empty
1733
-
1734
-* Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
1735
-- Preserve "options" settings in resolv.conf (bug 125712)
1736
-
1737
-* Fri Aug 20 2004 Jeremy Katz <katzj@redhat.com> - 7.65-1
1738
-- look at /etc/udev/udev.conf, not /etc/sysconfig/udev (#130431)
1739
-
1740
-* Fri Aug 20 2004 Bill Nottingham <notting@redhat.com> 7.64-1
1741
-- rc.d/rc.sysinit: check for dev file too (#130350)
1742
-
1743
-* Thu Aug 19 2004 Than Ngo <than@redhat.com> 7.63-1
1744
-- allow CBCP with own number (#125710)
1745
-
1746
-* Thu Aug 19 2004 Bill Nottingham <notting@redhat.com> 7.62-1
1747
-- fix up resolv.conf munging (#129921)
1748
-- use rngd if available
1749
-- run start_udev if necessary (#120605)
1750
-- readonly root updates (#129893, <markmc@redhat.com>)
1751
-- ifup-wireless: quote key (#129930)
1752
-- remove rawdevices (#130048)
1753
-- handle binfmt_misc in rc.sysinit for the case where it's built in (#129954)
1754
-- remove mkkerneldoth
1755
-- don't remove linguas in lang.* (part of #9733)
1756
-- fix nfs unmounting (#129765)
1757
-- fix URL (#129433)
1758
-
1759
-* Wed Aug 11 2004 Jason Vas Dias <jvdias@redhat.com> 7.61-1
1760
-- fix for bug 120093: add PERSISTENT_DHCLIENT option to ifcfg files
1761
-
1762
-* Tue Aug  3 2004 Karsten Hopp <karsten@redhat.de> 7.60-1
1763
-- write peerid into sysfs for IUCV devices (mainframe)
1764
-
1765
-* Tue Aug  3 2004 Bill Nottingham <notting@redhat.com>
1766
-- don't remove /dev/mapper/control - nash will do it if it has to (#127115)
1767
-
1768
-* Fri Jul 30 2004 Jason Vas Dias <jvdias@redhat.com> 7.60-1
1769
-- fix for bug 125712: add 'change_resolv.conf' function
1770
-
1771
-* Tue Jul 27 2004 Bill Nottingham <notting@redhat.com>
1772
-- rc.d/init.d/network: don't bring interfaces down twice (#127487)
1773
-
1774
-* Wed Jul 14 2004 Bill Nottingham <notting@redhat.com>
1775
-- fix bonding + no IP (#127285)
1776
-- wrap second LVM initialization in vgscan check to avoid extraneous messages (#127639)
1777
-
1778
-* Wed Jul  7 2004 Bill Nottingham <notting@redhat.com>
1779
-- move random stuff to rc.sysinit/halt; move all swap to after this.
1780
-  prereq of bug #123278
1781
-
1782
-* Fri Jul  2 2004 Bill Nottingham <notting@redhat.com> 7.59-1
1783
-- set context on ICE directory after making it (#127099, <concert@europe.com>)
1784
-- don't mount GFS filesystems in rc.sysinit
1785
-
1786
-* Tue Jun 29 2004 Bill Nottingham <notting@redhat.com> 7.58-1
1787
-- rc.d/rc.sysinit: hack: make ICE directory on boot (#86480)
1788
-- set devicetype for xDSL (#126194)
1789
-- ignore locking failures when starting lvm volumes (#126192, <radu@primit.ro>)
1790
-- unset LC_MESSAGES for rhgb (#126020, <ynakai@redhat.com>)
1791
-- bonding fixes
1792
-- setsysfont: remove error (#100559)
1793
-- remove duplicate setting of network routes (#125450)
1794
-- vlan fixes (#107504, <hrunting@texas.net>)
1795
-- ifup-aliases: remove bogus route setting (#120908)
1796
-
1797
-* Tue May 25 2004 Bill Nottingham <notting@redhat.com> 7.57-1
1798
-- readonly root fixes (<alexl@redhat.com>)
1799
-
1800
-* Tue May 25 2004 Karsten Hopp <karsten@redhat.de> 7.56-1
1801
-- special TYPE for qeth devices to differenciate them from ethX
1802
-
1803
-* Mon May 24 2004 Bill Nottingham <notting@redhat.com>
1804
-- fix pppd vs. ppp typo in conflicts (#123680)
1805
-
1806
-* Fri May 21 2004 Bill Nottingham <notting@redhat.com>
1807
-- fix bridging confusing module order (#122848, <luto@myrealbox.com>)
1808
-- rc.d/rc.sysinit: don't mount cifs (#122501)
1809
-
1810
-* Tue May 18 2004 Karsten Hopp <karsten@redhat.de> 7.55-1
1811
-- add support for ccwgroup devices on mainframe
1812
-
1813
-* Thu May 13 2004 Than Ngo <than@redhat.com> 7.54-1
1814
-- add patch to enable PIE build of usernetctl
1815
-
1816
-* Fri May  7 2004 Jeremy Katz <katzj@redhat.com> - 7.53-1
1817
-- little lvm tweak (#121963)
1818
-
1819
-* Tue May  4 2004 Bill Nottingham <notting@redhat.com> 7.52-1
1820
-- ipv4 addresses are ints, not longs (#122479)
1821
-
1822
-* Tue May  4 2004 Bill Nottingham <notting@redhat.com> 7.51-1
1823
-- get rid of LVM error when no volumes are defined (#121197)
1824
-- fix selinux short-circuit test (#121143, <michal@harddata.com>)
1825
-- /dev/mapper/control is a special file, check it accordingly (#121963)
1826
-- support ETHTOOL_OPTS on bonding slaves (#119430, <hrunting@texas.net>)
1827
-- handle multiple spaces correctly in rc.sysinit, network-functions
1828
-  (#118583, <pallas@kadan.cz>)
1829
-- cleanup fd leaks, mem leaks, other bogosities
1830
-  (#119987, <linux_4ever@yahoo.com>)
1831
-- rc.d/init.d/network: remove ipv6 bogosity (#114128)
1832
-- translation updates
1833
-
1834
-* Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> 7.50-1
1835
-- fix LVM issues in rc.sysinit (#120458, #119975)
1836
-- deal with fixed racoon parser
1837
-- translation updates from translators
1838
-- fix USB loading (#120911)
1839
-
1840
-* Fri Mar 26 2004 Bill Nottingham <notting@redhat.com> 7.49-1
1841
-- use alsa for mixer saving in halt
1842
-- don't umount /proc in halt (#118880)
1843
-- various translation updates from translators
1844
-
1845
-* Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.48-1
1846
-- disable enforcing in emergency mode for now, relabel some commonly
1847
-  mislabeled files on boot
1848
-
1849
-* Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.47-1
1850
-- translation: catch more input strings (#106285, <mitr@volny.cz>)
1851
-- remove autologin from prefdm (#108969)
1852
-- return to rhgb after ./unconfigured (#109807, <jkeating@j2solutions.net>)
1853
-- handle iso15 in setsysfont (#110243)
1854
-- clean up samba & vmware in rc.sysinit (#113104)
1855
-- some sysconfig.txt documentation (#110427, #118063)
1856
-- fix bug in umount-on-halt (#113088, <giardina@airlab.elet.polimi.it>)
1857
-- handle CIFS in netfs (#115691)
1858
-- make sure hotplug isn't stuck unset (#116666, <aoliva@redhat.com>)
1859
-- handle network fs better in rc.sysinit (#111290)
1860
-- nomodules applies to usb/firewire too (#113278)
1861
-- ipsec fix (#116922, <felipe_alfaro@linuxmail.org>)
1862
-- make sure rc exits cleanly (#117827, <enrico.scholz@informatik.tu-chemnitz.de>)
1863
-- fsck root FS from initrd, for dynamic majors (#117575, <sct@redhat.com>)
1864
-
1865
-* Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com>
1866
-- Use ':' instead of '.' as separator for chown.
1867
-
1868
-* Mon Feb  2 2004 Bill Nottingham <notting@redhat.com> 7.46-1
1869
-- some more rc.sysinit tweaks and refactoring
1870
-
1871
-* Fri Jan 30 2004 Bill Nottingham <notting@redhat.com> 7.45-1
1872
-- fix rc.sysinit typo
1873
-- rc.d/init.d/network: clear out environment (#113937, #111584)
1874
-
1875
-* Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 7.44-1
1876
-- NFSv4 support (<chucklever@bigfoot.com>, <steved@redhat.com>)
1877
-- handle 2.6-style 'install ethX ...' lines correctly
1878
-- mount sysfs by default
1879
-- time to clean up the cruft. remove:
1880
-  - boot-time depmod
1881
-  - linking of /boot/System.map to /boot/System.map-`uname -r`
1882
-  - /var/log/ksyms.X
1883
-  - libredhat-kernel support
1884
-
1885
-* Fri Jan  16 2004 Dan Walsh <dwalsh@redhat.com> 7.43-2
1886
-- Remove selinux run_init code from service script.  It is no longer needed.
1887
-
1888
-* Fri Dec  5 2003 Jeremy Katz <katzj@redhat.com> 7.43-1
1889
-- basic lvm2 support
1890
-
1891
-* Tue Oct 28 2003 Bill Nottingham <notting@redhat.com> 7.42-1
1892
-- show rhgb details on service failures
1893
-
1894
-* Wed Oct 22 2003 Bill Nottingham <notting@redhat.com> 7.41-1
1895
-- tweak some rhgb interactions (#100894, #107725)
1896
-- fix dvorak keymap loading (#106854)
1897
-
1898
-* Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.40-1
1899
-- add better fix to support nickname (#105785)
1900
-
1901
-* Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.39-1
1902
-- add support nickname (#105785)
1903
-
1904
-* Fri Oct 17 2003 Bill Nottingham <notting@redhat.com> 7.38-1
1905
-- rhgb updates, now pass 'rhgb' to use it, instead of passing 'nogui'
1906
-  to disable it
1907
-
1908
-* Fri Oct 10 2003 Bill Nottingham <notting@redhat.com> 7.37-1
1909
-- bridging updates (#104421, <dwmw2@redhat.com>)
1910
-
1911
-* Wed Oct  8 2003 Bill Nottingham <notting@redhat.com> 7.36-1
1912
-- mount /dev/pts before starting rhgb
1913
-
1914
-* Wed Oct  1 2003 Bill Nottingham <notting@redhat.com> 7.35-1
1915
-- load acpi modules on startup if necessary
1916
-- fix typo in ipsec comments & sysconfig.txt
1917
-
1918
-* Mon Sep 15 2003 Than Ngo <than@redhat.com> 7.34-1
1919
-- use upsdrvctl to start the shutdown process
1920
-
1921
-* Mon Sep 15 2003 Bill Nottingham <notting@redhat.com> 7.33-1
1922
-- ipsec fixes (#104227, <harald@redhat.com>)
1923
-- ppp fixes (#104128, #97845, #85447)
1924
-
1925
-* Thu Sep 11 2003 Bill Nottingham <notting@redhat.com> 7.32-1
1926
-- fix ip calls for some device names (#104187)
1927
-- ipsec fixes
1928
-
1929
-* Fri Sep  5 2003 Bill Nottingham <notting@redhat.com> 7.31-1
1930
-- fix bonding + dhcp (#91399)
1931
-- fix typo (#103781)
1932
-- sysconfig/network-scripts/ifup: fix use of local
1933
-
1934
-- fix shutdown with NFS root (#100556, <Julian.Blake@cern.ch>)
1935
-- remove /var/run/confirm when done with /etc/rc (#100898)
1936
-- ipcalc: fix some memory handling (#85478, <miked@ed.ac.uk>)
1937
-- handle sorting > 10 network devices (#98209)
1938
-- unset ONPARENT after use (#101384)
1939
-- random other fixes
1940
-- bridging support (<dwmw2@redhat.com>)
1941
-
1942
-* Fri Aug 15 2003 Bill Nottingham <notting@redhat.com> 7.30-1
1943
-- IPv6 updates (#86210, #91375, <pekkas@netcore.fi>)
1944
-
1945
-* Fri Aug  8 2003 Bill Nottingham <notting@redhat.com> 7.29-1
1946
-- setsysfont: don't echo to /dev/console (#102004)
1947
-- fix ethernet device renaming deadlock (#101566)
1948
-- consoletype: don't return 'vt' on vioconsole (#90465)
1949
-- ifup: fix short-circuit (#101445)
1950
-
1951
-* Fri Jul 18 2003 Nalin Dahyabhai <nalin@redhat.com>
1952
-- ifup-routes: pass the interface name to handle_file() so that we don't try
1953
-  to use the routes file's name as an interface name
1954
-
1955
-* Wed Jul  9 2003 Bill Nottingham <notting@redhat.com> 7.28-1
1956
-- switch from $CONFIG.keys to keys-$CONFIG
1957
-
1958
-* Tue Jul  8 2003 Bill Nottingham <notting@redhat.com> 7.27-1
1959
-- add a check to consoletype for the current foreground console
1960
-- use it when running unicode_start (#98753)
1961
-
1962
-* Wed Jul  2 2003 Bill Nottingham <notting@redhat.com> 7.26-1
1963
-- ipsec support (see sysconfig.txt, ifup-ipsec)
1964
-- read $CONFIG.keys, for non-world-readable keys
1965
-- allow default window size for routes to be set with WINDOW= (#98112)
1966
-- support setting device options with ethtool opts
1967
-- fix s390 bootup spew (#98078)
1968
-- support renaming interfaces with nameif based on hwaddr
1969
-
1970
-* Mon Jun 23 2003 Bill Nottingham <notting@redhat.com> 7.25-1
1971
-- fix DNS punching in the case of other rules for the DNS server
1972
-  (#97686, <martin@zepler.org>)
1973
-- initlog, ppp-watch, and usernetctl tweaks (<linux_4ever@yahoo.com>)
1974
-- fix grep for mingetty (#97188)
1975
-- fix rhgb-client bad syntax
1976
-- change network device searching, use correct naming, fix route issues
1977
-  (<harald@redhat.com>)
1978
-- other random tweaks
1979
-
1980
-* Fri May 23 2003 Bill Nottingham <notting@redhat.com> 7.24-1
1981
-- now even still yet more tweaks for graphical boot
1982
-
1983
-* Thu May 22 2003 Bill Nottingham <notting@redhat.com> 7.23-1
1984
-- even still yet more tweaks for graphical boot
1985
-
1986
-* Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.22-1
1987
-- still yet more tweaks for graphical boot
1988
-
1989
-* Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.21-1
1990
-- yet more tweaks for graphical boot
1991
-
1992
-* Fri May  2 2003 Bill Nottingham <notting@redhat.com> 7.20-1
1993
-- more tweaks for graphical boot
1994
-
1995
-* Wed Apr 30 2003 Bill Nottingham <notting@redhat.com> 7.18-1
1996
-- some tweaks for graphical boot
1997
-
1998
-* Mon Apr 21 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1999
-- initscripts-s390.patch: remove not needed parts about PNP=
2000
-- inittab.390: sync with normal version
2001
-- rc.sysinit: remove two further calls to /sbin/consoletype with $CONSOLETYPE
2002
-
2003
-* Fri Apr 18 2003 Florian La Roche <Florian.LaRoche@redhat.de>
2004
-- sysconfig/init.s390: set LOGLEVEL=3 as for other archs
2005
-- rc.d/init.d/network, rc.d/rc: change confirmation mode to
2006
-  not use an environment variable
2007
-- rc.d/init.d/functions: make strstr() even shorter, remove old
2008
-  "case" version that has been already commented out
2009
-- rc.d/rc.sysinit:
2010
-  - no need to set NETWORKING=no, it is not used/exported
2011
-  - do not export BOOTUP
2012
-  - delete two "sleep 1" calls that wants to add time to go
2013
-    into confirmation mode. There is enough time to press a
2014
-    key anyway or use "confirm" in /proc/cmdline.
2015
-  - read /proc/cmdline into a variable
2016
-  - use strstr() to search in /proc/cmdline
2017
-  - add "forcefsck" as possible option in /proc/cmdline
2018
-  - while removing lock files, no need to call `basename`
2019
-  - add unamer=`uname -r` and reduce number of forks
2020
-  - do not fork new bash to create /var/log/ksyms.0
2021
-
2022
-* Thu Apr 03 2003 Karsten Hopp <karsten@redhat.de> 7.15-1
2023
-- Mainframe has no /dev/ttyX devices and no mingetty, don't
2024
-  initialize them. This gave error messages during startup
2025
-
2026
-* Mon Mar 17 2003 Nalin Dahyabhai <nalin@redhat.com>
2027
-- init.d/network: don't advertise "probe: true" in the header if we don't
2028
-  recognize "probe" as an argument
2029
-
2030
-* Wed Mar 12 2003 Bill Nottingham <notting@redhat.com> 7.14-1
2031
-* - do not handle changed chain name; change was reverted
2032
-
2033
-* Tue Feb 25 2003 Bill Nottingham <notting@redhat.com> 7.13-1
2034
-- handle 7.x SYSFONTACM settings in setsysfont (#84183)
2035
-
2036
-* Mon Feb 24 2003 Bill Nottingham <notting@redhat.com> 7.12-1
2037
-- handle changed chain name
2038
-- init vts used in all cases
2039
-
2040
-* Fri Feb 21 2003 Bill Nottingham <notting@redhat.com> 7.10-1
2041
-- handle LANGUAGE specially for zh_CN.GB18030 and gdm (#84773)
2042
-
2043
-* Thu Feb 20 2003 Bill Nottingham <notting@redhat.com> 7.09-1
2044
-- initialize two ttys past # of mingettys (for GDM)
2045
-- fix zeroconf route
2046
-- redhat-config-network writes $NAME.route for some static routes
2047
-  (e.g., ppp); handle that (#84193)
2048
-
2049
-* Tue Feb 18 2003 Bill Nottingham <notting@redhat.com> 7.08-1
2050
-- load keybdev & mousedev even if hid is already loaded/static
2051
-- run fewer scripts through action (#49670, #75279, #81531)
2052
-
2053
-* Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 7.07-1
2054
-- fix nicknames & profiles (#82246)
2055
-- fix check_device_down (#83780, <pzb@datstacks.com>)
2056
-- vlan fixes (<tis@foobar.fi>)
2057
-- fix groff macros (#83531, <tsekine@sdri.co.jp>)
2058
-- various updated translations
2059
-- fix checkpid for multiple pids (#83401)
2060
-
2061
-* Fri Jan 31 2003 Bill Nottingham <notting@redhat.com> 7.06-1
2062
-- 802.1Q VLAN support (<tis@foobar.fi>, #82593)
2063
-- update translations
2064
-
2065
-* Thu Jan 30 2003 Bill Nottingham <notting@redhat.com> 7.05-1
2066
-- fix syntax error in rc.sysinit when there are fsck errors
2067
-- fix zh_TW display on console (#82235)
2068
-
2069
-* Wed Jan 15 2003 Bill Nottingham <notting@redhat.com> 7.04-1
2070
-- tweak some translatable strings
2071
-- fix for rc.sysinit on machines that pass arguments to mingetty
2072
-  (<nalin@redhat.com>)
2073
-
2074
-* Tue Jan 14 2003 Bill Nottingham <notting@redhat.com> 7.03-1
2075
-- move system font setting sooner (<milan.kerslager@pslib.cz>)
2076
-- fix link checking for dhcp, use both ethtool and mii-tool
2077
-- fix CJK text on the console, and locale-archive held open
2078
-  on shutdown
2079
-- IPv6 updates <pekkas@netcore.fi>, <pb@bieringer.de>
2080
-- speedup tweaks (<drepper@redhat.com>)
2081
-- use glib2 for ppp-watch (#78690, <kisch@mindless.com>)
2082
-- add zeroconf route (#81738)
2083
-- fix ifup-ppp for dial-on-demand, and onboot (<goeran@uddeborg.pp.se>)
2084
-- tweak raidtab parsing, don't worry about not-in-fstab RAID devices
2085
-  (#71087, #78467, <aja@mit.edu>)
2086
-- don't automatically bring up aliases if 'ONPARENT=no' is set (#78992)
2087
-- getkey cleanups/tweaks (#76071, <ben@enchantedforest.org>)
2088
-- rework halt_get_remaining (#76831, <michal@harddata.com>)
2089
-- ipcalc: fix calculation of /32 addresses (#76646)
2090
-- various other tweaks and fixes
2091
-
2092
-* Fri Dec 20 2002 Bill Nottingham <notting@redhat.com> 7.01-1
2093
-- %%config(noreplace) inittab
2094
-
2095
-* Tue Dec 17 2002 Nalin Dahyabhai <nalin@redhat.com>
2096
-- add a "nofirewire" option to /etc/rc.sysinit, analogous to "nousb"
2097
-
2098
-* Tue Dec 17 2002 Bill Nottingham <notting@redhat.com> 7.00-1
2099
-- tweaks for potential GUI bootup
2100
-- loop checking for network link state, don't unilterally wait five
2101
-  seconds
2102
-
2103
-* Sat Dec 14 2002 Karsten Hopp <karsten@redhat.de> 6.99-1
2104
-- remove call to /sbin/update for S/390, too
2105
-
2106
-* Wed Dec 11 2002 Bill Nottingham <notting@redhat.com> 6.98-1
2107
-- remove call to /sbin/update
2108
-- fix netprofile
2109
-
2110
-* Mon Dec  2 2002 Bill Nottingham <notting@redhat.com> 6.97-1
2111
-- IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
2112
-- devlabel support (<Gary_Lerhaupt@Dell.com>)
2113
-- do lazy NFS umounts
2114
-
2115
-* Tue Nov 19 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2116
-- correctly remove non-packaged files for mainframe
2117
-
2118
-* Tue Nov 12 2002 Bill Nottingham <notting@redhat.com> 6.96-1
2119
-- fix various static-routes brokeness (#74317, #74318, #74320, #76619,
2120
-  #75604)
2121
-- fix handling of SYSFONTACM in setsysfont (#75662)
2122
-- fix lang.csh for CJK (#76908, <ynakai@redhat.com>)
2123
-- IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
2124
-- other minor tweaks
2125
-
2126
-* Mon Sep 16 2002 Than Ngo <than@redhat.com>
2127
-- owns directory /etc/ppp/peers (bug #74037)
2128
-
2129
-* Wed Sep  4 2002 Bill Nottingham <notting@redhat.com> 6.95-1
2130
-- fix syntax error in duplicate route removal section of ifup
2131
-
2132
-* Wed Sep  4 2002 Nalin Dahyabhai <nalin@redhat.com> 6.94-1
2133
-- fix syntax error calling unicode_start when SYSFONTACM isn't set
2134
-
2135
-* Mon Sep  2 2002 Bill Nottingham <notting@redhat.com>
2136
-- fix calling of unicode_start in lang.{sh,csh}
2137
-- ipv6 tweak
2138
-
2139
-* Wed Aug 28 2002 Bill Nottingham <notting@redhat.com>
2140
-- don't infinite loop on ifdown
2141
-- remove disabling of DMA; this can cause problems
2142
-- move swap startup to after LVM (#66588)
2143
-
2144
-* Tue Aug 20 2002 Bill Nottingham <notting@redhat.com>
2145
-- don't cycle through eth0-eth9 on dhcp link check (#68127)
2146
-- don't retry indefinitely on ppp startup
2147
-- activate network profile passed on kernel commandline via netprofile=
2148
-- fix iptables invocations again
2149
-- translation refresh
2150
-
2151
-* Wed Aug 14 2002 Bill Nottingham <notting@redhat.com>
2152
-- fix silly typo in rc.sysinit
2153
-- increase timeout for link to 5 seconds (#70545)
2154
-
2155
-* Tue Aug 13 2002 Bill Nottingham <notting@redhat.com>
2156
-- require /etc/redhat-release (#68903)
2157
-- fix tty2-tty6 (sort of)
2158
-- fix iptables invocations (#70807, #71201, #68368)
2159
-- other minor tweaks
2160
-
2161
-* Wed Jul 24 2002 Bill Nottingham <notting@redhat.com>
2162
-- fix unicode checks in rc.sysinit, lang.{sh,csh} to handle UTF-8@euro
2163
-
2164
-* Tue Jul 16 2002 Bill Nottingham <notting@redhat.com>
2165
-- use iptables, not ipchains
2166
-
2167
-* Tue Jul 16 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2168
-- /sbin/service: set PATH before calling startup scripts
2169
-  HOME and TERM are also set during bootup, but they should not make
2170
-  a difference for well-written daemons.
2171
-
2172
-* Mon Jul 15 2002 Bill Nottingham <notting@redhat.com>
2173
-- fix boot-time cleanup of /var
2174
-- update po files
2175
-
2176
-* Thu Jul 11 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2177
-- /etc/init.d/functions:
2178
-  daemon(): avoid starting another bash
2179
-  killproc(): avoid starting another bash for the default case
2180
-- do not call "insmod -p" before loading the "st" module
2181
-
2182
-* Tue Jul 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2183
-- allow an option for ups poweroff  #68123
2184
-- change grep for ONBOOT=  #63903
2185
-- allow building with a cross-compiler  #64362,#64255
2186
-- faster check in network-functions:check_default_route()
2187
-- better checks for backup files
2188
-- drastically reduce the number of consoletype invocations
2189
-- do not export "GATEWAY" in network-functions
2190
-- code cleanups in rc.sysinit
2191
-
2192
-* Fri Jul 05 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2193
-- rc.sysinit: do not load raid modules unless /etc/raidtab exists
2194
-- many cleanups for more consistent shell programming and also
2195
-  many smaller speedups within network scripts, no un-necessary sourcing
2196
-  of files etc
2197
-- nearly re-code /etc/rc.d/rc
2198
-
2199
-* Thu Jun 27 2002 Bill Nottingham <notting@redhat.com>
2200
-- a couple minor unicode tweaks in rc.sysinit
2201
-
2202
-* Wed Jun 26 2002 Bill Nottingham <notting@redhat.com>
2203
-- move /proc/bus/usb mount, in case USB is in the initrd
2204
-
2205
-* Wed Jun 26 2002 Preston Brown <pbrown@redhat.com>
2206
-- don't try to set wireless freq/channel when in Managed mode
2207
-
2208
-* Wed Jun 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2209
-- start some sh coding cleanups
2210
-- change to /etc/init.d/functions
2211
-- eliminate some un-necessary PATH settings
2212
-- eliminate some TEXTDOMAIN settings
2213
-
2214
-* Wed Jun 12 2002 Bill Nottingham <notting@redhat.com> 6.78-1
2215
-- fix UTF-8 checks
2216
-
2217
-* Wed Jun 05 2002 Than Ngo <than@redhat.com> 6.77-1
2218
-- fixed a bug in setting defaultgateway
2219
-
2220
-* Thu May 30 2002 Bill Nottingham <notting@redhat.com> 6.76-1
2221
-- call unicode_start in lang.{sh,csh}, setsysfont when necessary
2222
-
2223
-* Tue May 28 2002 Bill Nottingham <notting@redhat.com> 6.75-1
2224
-- add check for link for dhcp back in
2225
-
2226
-* Fri Apr 19 2002 Bill Nottingham <notting@redhat.com> 6.67-1
2227
-- fix silly cut&paste bug in hdparm settings in initscripts
2228
-
2229
-* Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 6.65-1
2230
-- Update translations
2231
-
2232
-* Sun Apr 14 2002 Bill Nottingham <notting@redhat.com> 6.64-1
2233
-- make sure chatdbg is set before using it (#63448, <Bertil@Askelid.com>)
2234
-- allow tweaking of more devices with hdparm (#53511), and
2235
-  tweak non-disk devices iff they explicitly have a config file
2236
-  for that device (#56575, #63415)
2237
-- some translation updates
2238
-
2239
-* Fri Apr 12 2002 Bill Nottingham <notting@redhat.com> 6.63-1
2240
-- ipcalc cleanups (#58410)
2241
-- quit stripping binaries
2242
-- do LVM init after RAID init too (#63238)
2243
-- export all locale variables (#56142)
2244
-- run sysctl -p after network init as well
2245
-
2246
-* Tue Apr 09 2002 Bill Nottingham <notting@redhat.com> 6.62-1
2247
-- delete X/VNC locks on startup (#63035)
2248
-- shut up DMA disabling, move it to after ide-scsi (#62873, #62956)
2249
-- use full path to /sbin/ifconfig (#59457)
2250
-- /sbin/service: change to root directory before staring/stopping;
2251
-  also sanitize environment
2252
-
2253
-* Tue Apr 02 2002 Bill Nottingham <notting@redhat.com> 6.61-1
2254
-- when disabling DMA, don't use things in /usr
2255
-
2256
-* Thu Mar 28 2002 Bill Nottingham <notting@redhat.com> 6.60-1
2257
-- disable DMA on CD-ROMs at bootup
2258
-
2259
-* Wed Mar 27 2002 Bill Nottingham <notting@redhat.com> 6.59-1
2260
-- add local hook to halt
2261
-
2262
-* Fri Mar 15 2002 Than Ngo <than@redhat.com> 6.58-1
2263
-- fix usernetctl for working with neat
2264
-
2265
-* Thu Mar 14 2002 Bill Nottingham <notting@redhat.com> 6.57-1
2266
-- update translations
2267
-
2268
-* Tue Mar 12 2002 Bill Nottingham <notting@redhat.com> 6.56-1
2269
-- use nameif for interfaces where we don't agree on HWADDR with the
2270
-  config file (<harald@redhat.com>)
2271
-- LSB support tweaks
2272
-
2273
-* Tue Mar 12 2002 Mike A. Harris  <mharris@redhat.com> 6.55-1
2274
-- Removed process accounting stuff from rc.sysinit and halt scripts as it is
2275
-  now handled by the psacct initscript in the psacct package
2276
-
2277
-* Thu Feb 28 2002 Bill Nottingham <notting@redhat.com>
2278
-- conflict with older psacct
2279
-
2280
-* Fri Feb 22 2002 Bill Nottingham <notting@redhat.com>
2281
-- fix invocation of need_hostname (#58946), a couple other minor tweaks
2282
-
2283
-* Tue Feb 12 2002 Mike A. Harris  <mharris@redhat.com>
2284
-- rc.sysinit: changed /var/log/pacct to /var/account/pacct for FHS 2.2 compliance
2285
-
2286
-* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
2287
-- run /bin/setfont, not /usr/bin/setfont (kbd)
2288
-- lots-o-random bugfixes/tweaks (see ChangeLog)
2289
-
2290
-* Thu Jan 17 2002 Michael K. Johnson <johnsonm@redhat.com>
2291
-- Added support for libredhat-kernel.so.* symlink handling
2292
-
2293
-* Wed Nov  7 2001 Than Ngo <than@redhat.com>
2294
-- fix bug in setting netmask on s390/s390x (bug #55421)
2295
-  nmbd daemon works now ;-)
2296
-
2297
-* Fri Nov  2 2001 Than Ngo <than@redhat.com>
2298
-- fixed typo bug ifup-ippp
2299
-
2300
-* Mon Oct 29 2001 Than Ngo <than@redhat.com>
2301
-- fix bug in channel bundling if MSN is missed
2302
-- support DEBUG option
2303
-
2304
-* Wed Sep 19 2001 Than Ngo <than@redhat.com>
2305
-- don't show user name by DSL connection
2306
-
2307
-* Sat Sep  8 2001 Bill Nottingham <notting@redhat.com>
2308
-- don't run hwclock --adjust on a read-only filesystem
2309
-
2310
-* Thu Sep  6 2001 Than Ngo <than@redhat.com>
2311
-* update initscripts-s390.patch for s390/s390x
2312
-
2313
-* Wed Sep  5 2001 Bill Nottingham <notting@redhat.com>
2314
-- translation updates
2315
-- quota and hwclock tweaks (<pbrown@redhat.com>)
2316
-
2317
-* Mon Sep  3 2001 Bill Nottingham <notting@redhat.com>
2318
-- fix severe alias problems (#52882)
2319
-
2320
-* Mon Sep  3 2001 Than Ngo <than@redhat.com>
2321
-- don't start pppbind if encapsulation is rawip (bug #52491)
2322
-
2323
-* Sun Sep  2 2001 Than Ngo <than@redhat.com>
2324
-- add ISDN patches from pekkas@netcore.fi and pb@bieringer.de (bug #52491)
2325
-- fix handling of ISDN LSZ Compresssion
2326
-
2327
-* Thu Aug 30 2001 Than Ngo <than@redhat.com>
2328
-- po/de.po: fix typo bug, lo instead 1o
2329
-
2330
-* Wed Aug 29 2001 David Sainty <dsainty@redhat.com>
2331
-- fix ifdown for multiple dhcpcd interfaces
2332
-
2333
-* Wed Aug 29 2001 Than Ngo <than@redhat.com>
2334
-- fix ISDN dial on demand bug
2335
-- fix typo bug in network-functions
2336
-
2337
-* Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com>
2338
-- document /etc/sysconfig/authconfig
2339
-
2340
-* Tue Aug 28 2001 Bill Nottingham <notting@redhat.com> 6.31-1
2341
-- message un-tweaks (<johnsonm@redhat.com>)
2342
-- make getkey more useful, fix some of the autofsck stuff (<johnsonm@redhat.com>)
2343
-
2344
-* Mon Aug 27 2001 Bill Nottingham <notting@redhat.com>
2345
-- autofsck support, archive modules/symbol info (<johnsonm@redhat.com>)
2346
-
2347
-* Mon Aug 27 2001 Than Ngo <than@redhat.com>
2348
-- fix some typo bugs in ifup-ippp <ubeck@c3pdm.com>
2349
-
2350
-* Fri Aug 24 2001 Bill Nottingham <notting@redhat.com>
2351
-- sort output of halt_get_remaining (#52180)
2352
-- fix bad translation (#52503)
2353
-
2354
-* Wed Aug 22 2001 Bill Nottingham <notting@redhat.com>
2355
-- fix ifup-wireless (#52135)
2356
-
2357
-* Wed Aug 22 2001 Than Ngo <than@redhat.com>
2358
-- fix return code of isdnctrl (bug #52225)
2359
-
2360
-* Tue Aug 21 2001 Than Ngo <than@redhat.com>
2361
-- fix Bringing up isdn device again. It works now correct.
2362
-
2363
-* Tue Aug 21 2001 Than Ngo <than@redhat.com>
2364
-- fix shutdown/Bringing up isdn device
2365
-
2366
-* Mon Aug 20 2001 Nalin Dahyabhai <nalin@redhat.com>
2367
-- fix syntax error in lang.csh
2368
-- set codeset by echoing to /dev/tty instead of /proc/self/fd/15
2369
-
2370
-* Sun Aug 19 2001 Bill Nottingham <notting@redhat.com>
2371
-- fix a broken call to check_device_down
2372
-- make all loopback addresses have host scope, not global scope.
2373
-  Fixes #49374, possibly others
2374
-
2375
-* Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
2376
-- add is_available() network function, use it; cleans up ugly modprobe
2377
-  error messages
2378
-- update translation info
2379
-- fix #51787
2380
-
2381
-* Wed Aug 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
2382
-- adjust s390 patch
2383
-- fix up ifup-ctc and mkkerneldoth.s390 (both are s390 specific)
2384
-
2385
-* Mon Aug 13 2001 Yukihiro Nakai <ynakai@redhat.com>
2386
-- don't display Chinese Korean if we aren't on a pty
2387
-
2388
-* Sat Aug 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
2389
-- adjust s390 patches to current sources
2390
-
2391
-* Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
2392
-- use GDM_LANG if it's set in lang.sh/lang.csh (#51432, <otaylor@redhat.com>)
2393
-
2394
-* Fri Aug 10 2001 Than Ngo <than@redhat.com>
2395
-- don't set MSN if it' empty (it's now optional)
2396
-- don't give login name as a cmdline-option (Bug #23066)
2397
-- remove peer device file if ppp connection is down
2398
-- fix channel bundling
2399
-
2400
-* Thu Aug  9 2001 Bill Nottingham <notting@redhat.com>
2401
-- require SysVinit (#51335)
2402
-
2403
-* Wed Aug  8 2001 Bill Nottingham <notting@redhat.com>
2404
-- tweak raittab grep slightly (#51231)
2405
-- allow resetting of default route for DHCP addresses (#48994)
2406
-- save resolv.conf in ifup-ppp for restoration by ifdown-post (#50759)
2407
-- when munging firewall rules for dns, only allow dest ports 1025-65535 (#44038, #40833)
2408
-- allow shell characters in ppp names (#43719)
2409
-- allow setting DHCP arguments, just kill dhcpcd instead of using -k (#46492)
2410
-- behave sanely if ifup called when dhcpcd is running (#49392, #51038)
2411
-
2412
-* Mon Aug  6 2001 Bill Nottingham <notting@redhat.com>
2413
-- honor HOTPLUG=no if running under hotplug (#47483)
2414
-- use awk, not grep, for modprobe -c checks (#49616)
2415
-- don't print ugly messages for the case where the device doesn't exist,
2416
-  and there is no alias (i.e., PCMCIA ONBOOT=yes (#various))
2417
-- run kbdconfig in /.unconfigured mode (#43941)
2418
-- use a bigger buffer size argument to dmesg (#44024)
2419
-- detach loopback devices on shutdown (#43919, #45826)
2420
-
2421
-* Thu Aug  2 2001 Bill Nottingham <notting@redhat.com>
2422
-- fix halt_get_remaining() (#50720)
2423
-
2424
-* Tue Jul 31 2001 Bill Nottingham <notting@redhat.com>
2425
-- mount all FS types r/o at halt (#50461)
2426
-- don't use mii-tool at all (#various)
2427
-
2428
-* Thu Jul 26 2001 Bill Nottingham <notting@redhat.com>
2429
-- don't use kbd commands in setsysfont now that we've switched back to
2430
-  console-tools (#50075)
2431
-- sleep in check_link_down; some devices require it
2432
-- only bring link down if check_link_down fails
2433
-
2434
-* Wed Jul 25 2001 Bill Nottingham <notting@redhat.com>
2435
-- set link up before checking with mii-tool (#49949)
2436
-
2437
-* Tue Jul 24 2001 Bill Nottingham <notting@redhat.com>
2438
-- update netdev stuff to use _netdev
2439
-- IPv6 updates (<pekkas@netcore.fi>)
2440
-- fix downing of devices with static IPs (#49777, #49783)
2441
-- put ifcfg-lo back in the package
2442
-
2443
-* Fri Jul 20 2001 Preston Brown <pbrown@redhat.com> 6.06
2444
-- updates for quota
2445
-
2446
-* Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
2447
-- own some more directories
2448
-- use -O nonetdev, require mount package that understands this
2449
-- fix do_netreport when called as non-root
2450
-- remove ip addresses from interfaces on ifdown
2451
-- oops, fix ifup/ifdown
2452
-
2453
-* Mon Jul 16 2001 Than Ngo <than@redhat.com>
2454
-- fix country_code for ISDN
2455
-
2456
-* Mon Jul  9 2001 Bill Nottingham <notting@redhat.com>
2457
-- fix '--check'
2458
-- prereq sh-utils (#43065)
2459
-- fix some invocations of reboot/halt (#45966)
2460
-- fix typo in ifup-wireless
2461
-- don't muck with /etc/issue each boot
2462
-- big IPv6 update (<pekkas@netcore.fi>)
2463
-
2464
-* Fri Jul  6 2001 Trond Eivind Glomsrød <teg@redhat.com>
2465
-- Add new directories required by new network tool
2466
-
2467
-* Thu Jul 05 2001 Karsten Hopp <karsten@redhat.de>
2468
-- disable hwclock on S390 (no such executable)
2469
-- Fix up kernel versioning on binary-only modules (S390)
2470
-- don't use newt scripts on S390 console
2471
-
2472
-* Sun Jul 01 2001 Trond Eivind Glomsrød <teg@redhat.com>
2473
-- reenable pump, but make sure dhcpcd is the default. This
2474
-  way, upgrades of systems without dhcpcd has a better chance at
2475
-  working.
2476
-
2477
-* Thu Jun 28 2001 Trond Eivind Glomsrød <teg@redhat.com>
2478
-- Disable pump completely
2479
-
2480
-* Wed Jun 27 2001 Than Ngo <than@redhat.com>
2481
-- fix pap/chap authentication for syncppp
2482
-- support ippp options
2483
-
2484
-* Mon Jun 25 2001 Bill Nottingham <notting@redhat.com>
2485
-- add ifup-wireless
2486
-
2487
-* Fri Jun 22 2001 Than Ngo <than@redhat.com>
2488
-- add support xDSL
2489
-
2490
-* Thu Jun 21 2001 Bill Nottingham <notting@redhat.com>
2491
-- more networking script fixes (#45364)
2492
-- add stuff for unmounting /initrd
2493
-
2494
-* Thu Jun 21 2001 Than Ngo <than@redhat.com>
2495
-- add support ISDN
2496
-
2497
-* Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
2498
-- fix extremely broken new network scripts
2499
-
2500
-* Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
2501
-- bump version to 5.89
2502
-- make it build
2503
-
2504
-* Thu May 17 2001 Bill Nottingham <notting@redhat.com>
2505
-- don't run ifup ppp0 if ppp-watch gets SIGINT (#40585, ak@cave.hop.stu.neva.ru)
2506
-- fix do_netreport (#37716, #39603 <crlf@aeiou.pt>)
2507
-
2508
-* Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com>
2509
-- copyright: GPL -> license: GPL
2510
-- fix a syntax error in lang.csh
2511
-- skip commented-out i18n configuration lines in lang.csh
2512
-
2513
-* Fri May 11 2001 Preston Brown <pbrown@redhat.com>
2514
-- new network-scripts infrastructure; ifcfg-lo moved to /etc/sysconfig/networking
2515
-
2516
-* Wed May  2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.86-1
2517
-- support kbd in setsysfont
2518
-- bzip2 source
2519
-
2520
-* Wed Apr 25 2001 Florian La Roche <Florian.LaRoche@redhat.de>
2521
-- add further s390 changes:
2522
-  - ifup-iucv
2523
-  - mkkerneldoth.s390
2524
-
2525
-* Tue Apr 24 2001 Than Ngo <than@redhat.com>
2526
-- add shutdown UPS into halt (bug #34312)
2527
-
2528
-* Sat Apr  7 2001 Preston Brown <pbrown@redhat.com>
2529
-- broke out kernel.h updater from rc.sysinit into /sbin/mkkerneldoth
2530
-
2531
-* Fri Apr  6 2001 Bill Nottingham <notting@redhat.com>
2532
-- be a little more careful in do_netreport (#34933)
2533
-
2534
-* Tue Apr  3 2001 Bill Nottingham <notting@redhat.com>
2535
-- set umask explicitly to 022 in /etc/init.d/functions
2536
-
2537
-* Mon Apr  2 2001 Bill Nottingham <notting@redhat.com>
2538
-- fix segfault in usernetctl (#34353)
2539
-
2540
-* Mon Mar 26 2001 Bill Nottingham <notting@redhat.com>
2541
-- don't print errors in /etc/init.d/network if kernel.hotplug doesn't exist
2542
-
2543
-* Thu Mar 22 2001 Erik Troan <ewt@redhat.com>
2544
-- take advantage of new swapon behaviors
2545
-
2546
-* Wed Mar 14 2001 Bill Nottingham <notting@redhat.com>
2547
-- add cipe interfaces last (#31597)
2548
-
2549
-* Tue Mar 13 2001 Bill Nottingham <notting@redhat.com>
2550
-- fix typo in ifup (#31627)
2551
-- update translation source
2552
-
2553
-* Tue Mar 13 2001 Nalin Dahyabhai <nalin@redhat.com>
2554
-- fix typo in rc.sysinit
2555
-- fix ifup-routes not setting DEVICE properly
2556
-
2557
-* Mon Mar 12 2001 Preston Brown <pbrown@redhat.com>
2558
-- Work properly with new quota utilities
2559
-
2560
-* Mon Mar  5 2001 Bill Nottingham <notting@redhat.com>
2561
-- IPv6 fixes (#30506)
2562
-- make static-routes handling more sane and consistent (#29500, #29549)
2563
-- handle multiple USB controllers *correctly*
2564
-
2565
-* Wed Feb 28 2001 Nalin Dahyabhai <nalin@redhat.com>
2566
-- usernetctl, ppp-watch: cleanups
2567
-- netreport: use O_NOFOLLOW
2568
-- ifup-ppp: let ppp-watch watch over demand-dialed connections (#28927)
2569
-
2570
-* Tue Feb 27 2001 Bill Nottingham <notting@redhat.com>
2571
-- don't run isapnp on isapnp-enabled 2.4 kernels (part of #29450)
2572
-- disable hotplug during network initscript
2573
-- don't munge wireless keys in ifup; that will be done with the
2574
-  PCMCIA wireless stuff
2575
-- run sndconfig --mungepnp for non-native-isapnp soundcards
2576
-- don't explicitly kill things in init.d/single, init will do it
2577
-- don't explicitly load usb-storage; mount the usbdevfs before initializing
2578
-  host controller modules
2579
-
2580
-* Wed Feb 21 2001 Bill Nottingham <notting@redhat.com>
2581
-- initialize multiple USB controllers if necessary
2582
-
2583
-* Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
2584
-- close extra file descriptors before exec()ing commands in initlog
2585
-
2586
-* Mon Feb 19 2001 Bill Nottingham <notting@redhat.com>
2587
-- fix some substitions in init.d/functions (fixes various killproc issues)
2588
-- make sure ipv6 module alias is available if configured
2589
-- fix initlog segfaults in popt when called with bogus stuff (#28140)
2590
-
2591
-* Thu Feb 15 2001 Nalin Dahyabhai <nalin@redhat.com>
2592
-- make pidofproc() and killproc() try to use the PID associated with the full
2593
-  pathname first before killing the daemon by its basename (for daemons that
2594
-  share the same basename, i.e. "master" in postfix and cyrus-imapd) (#19016)
2595
-- fix status() as well
2596
-
2597
-* Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
2598
-- fix init.d/single to work around possible kernel problem
2599
-
2600
-* Tue Feb 13 2001 Bill Nottingham <notting@redhat.com>
2601
-- fix unmounting of loopback stuff (#26439, #14672)
2602
-
2603
-* Mon Feb 12 2001 Bill Nottingham <notting@redhat.com>
2604
-- fix ifup-post so that it will work right when not called from ifup
2605
-
2606
-* Sat Feb 10 2001 Florian La Roche <Florian.LaRoche@redhat.de>
2607
-- add all save changes for s390 s390x that won't break anything
2608
-  patches are from Oliver Paukstadt @ millenux.com
2609
-
2610
-* Fri Feb  9 2001 Bill Nottingham <notting@redhat.com>
2611
-- muck with the font in lang.csh/lang.sh, but don't spit out errors (#26903)
2612
-
2613
-* Wed Feb  7 2001 Bill Nottingham <notting@redhat.com>
2614
-- ipv6 sync ups (#26502, #25775)
2615
-- fix hangs at shutdown (#25744)
2616
-- fix ifup-ppp (#26323)
2617
-
2618
-* Tue Feb  6 2001 Bill Nottingham <notting@redhat.com>
2619
-- modify firewall on ifup to allow any new DNS servers through (#25951)
2620
-- don't muck with the font in lang.csh/lang.sh (#26349)
2621
-- don't display Japanese if we aren't on a pty (#25041)
2622
-- load ide-scsi if passed on /proc/cmdline
2623
-
2624
-* Mon Feb  5 2001 Trond Eivind Glomsrød <teg@redhat.com>
2625
-- i18n updates
2626
-
2627
-* Fri Feb  2 2001 Bill Nottingham <notting@redhat.com>
2628
-- actually *ship* the ipv6 (and plusb) files
2629
-
2630
-* Thu Feb  1 2001 Trond Eivind Glomsrød <teg@redhat.com>
2631
-- i18n updates
2632
-
2633
-* Tue Jan 30 2001 Bill Nottingham <notting@redhat.com>
2634
-- various init.d/functions cleanups (#10761, from <mjt@tls.msk.ru>)
2635
-- in daemon(), only look at pidfile to determine if process is running
2636
-  (#17244, others)
2637
-- ifup-ppp enhancements (#17388, from <ayn2@cornell.edu>)
2638
-- ipv6 support (#23576, originally by Peter Bieringer <pb@bieringer.de>)
2639
-- lots of other minor fixes (see ChangeLog)
2640
-
2641
-* Mon Jan 29 2001 Bill Nottingham <notting@redhat.com>
2642
-- add plusb support (#18892, patch from <eric.ayers@compgen.com>)
2643
-- don't ignore RETRYTIMEOUT when we never connect (#14071, patch from
2644
-  <ak@cave.hop.stu.neva.ru>)
2645
-
2646
-* Wed Jan 24 2001 Bill Nottingham <notting@redhat.com>
2647
-- quiet LVM setup (#24841)
2648
-- fix inability to shutdown cleanly (#24889)
2649
-
2650
-* Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
2651
-- new i18n mechanism
2652
-
2653
-* Tue Jan 23 2001 Matt Wilson <msw@redhat.com>
2654
-- fixed typo in init.d/network - missing | in pipeline
2655
-
2656
-* Mon Jan 22 2001 Bill Nottingham <notting@redhat.com>
2657
-- do LVM setup through normal initscripts mechanisms
2658
-- ignore backup files in /etc/sysconfig/network-scripts
2659
-- lots of .po file updates
2660
-
2661
-* Tue Jan  2 2001 Bill Nottingham <notting@redhat.com>
2662
-- initial i18n support - originally from Conectiva
2663
-
2664
-* Mon Dec 11 2000 Bill Nottingham <notting@redhat.com>
2665
-- only load sound if persistent DMA buffers are necessary
2666
-- fix lots of bugs: #18619, #21187, #21283, #12097
2667
-- integrate MAXFAIL option for ppp-watch
2668
-- don't load keymaps/fonts on a serial console
2669
-
2670
-* Tue Nov 21 2000 Karsten Hopp <karsten@redhat.de>
2671
-- changed hdparm section in rc.sysinit to allow different
2672
-  parameters for each disk (if needed) by copying
2673
-  /etc/sysconfig/harddisks to /etc/sysconfig/harddiskhda (hdb,hdc..)
2674
-- fix RFE #20967
2675
-
2676
-* Tue Oct 31 2000 Than Ngo <than@redhat.com>
2677
-- fix the adding default route if GATEWAY=0.0.0.0
2678
-
2679
-* Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com>
2680
-- handle "gw x.x.x.x" as the last pair of flags in ifup-routes (#18804)
2681
-- fix top-level makefile install target
2682
-- make usernetctl just fall-through if getuid() == 0
2683
-
2684
-* Sun Sep  3 2000 Florian La Roche <Florian.LaRoche@redhat.com>
2685
-- /etc/init.d is already provided by chkconfig
2686
-
2687
-* Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
2688
-- set "holdoff ${RETRYTIMEOUT} ktune" for demand-dialed PPP links
2689
-
2690
-* Tue Aug 22 2000 Bill Nottingham <notting@redhat.com>
2691
-- update documentation (#15475)
2692
-
2693
-* Tue Aug 22 2000 Than Ngo <than@redhat.de>
2694
-- add KDE2 support to prefdm
2695
-
2696
-* Mon Aug 21 2000 Bill Nottingham <notting@redhat.com>
2697
-- add usleep after kill -KILL in pidofproc, works around lockd issues (#14847)
2698
-- add some fallback logic to prefdm (#16464)
2699
-
2700
-* Fri Aug 18 2000 Bill Nottingham <notting@redhat.com>
2701
-- don't load usb drivers if they're compiled statically
2702
-- don't call ifdown-post twice for ppp (#15285)
2703
-
2704
-* Wed Aug 16 2000 Bill Nottingham <notting@redhat.com>
2705
-- fix /boot/kernel.h generation (#16236, #16250)
2706
-
2707
-* Tue Aug 15 2000 Nalin Dahyabhai <nalin@redhat.com>
2708
-- be more careful about creating files in netreport (#16164)
2709
-
2710
-* Fri Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com>
2711
-- move documentation for the DEMAND and IDLETIMEOUT values to the right
2712
-  section of sysconfig.txt
2713
-
2714
-* Wed Aug  9 2000 Bill Nottingham <notting@redhat.com>
2715
-- load agpgart if necessary (hack)
2716
-- fix /boot/kernel.h stuff (jakub)
2717
-
2718
-* Mon Aug  7 2000 Bill Nottingham <notting@redhat.com>
2719
-- remove console-tools requirement
2720
-- in netfs, start portmap if needed
2721
-- cosmetic cleanups, minor tweaks
2722
-- don't probe USB controllers
2723
-
2724
-* Mon Aug  7 2000 Nalin Dahyabhai <nalin@redhat.com>
2725
-- fix demand-dialing support for PPP devices
2726
-- change updetach back to nodetach
2727
-
2728
-* Sun Aug  6 2000 Bill Nottingham <notting@redhat.com>
2729
-- add RETRYCONNECT option for ifcfg-pppX files (kenn@linux.ie)
2730
-
2731
-* Wed Jul 26 2000 Bill Nottingham <notting@redhat.com>
2732
-- fix unclean shutdown
2733
-
2734
-* Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
2735
-- s/nill/null/g
2736
-
2737
-* Tue Jul 25 2000 Bill Nottingham <notting@redhat.com>
2738
-- unmount usb filesystem on halt
2739
-- run /sbin/ifup-pre-local if it exists
2740
-
2741
-* Tue Jul 18 2000 Trond Eivind Glomsrød <teg@redhat.com>
2742
-- add "nousb" command line parameter
2743
-- fix some warnings when mounting /proc/bus/usb
2744
-
2745
-* Sat Jul 15 2000 Matt Wilson <msw@redhat.com>
2746
-- kill all the PreTransaction stuff
2747
-- directory ownership cleanups, add more LSB symlinks
2748
-- move all the stuff back in to /etc/rc.d/
2749
-
2750
-* Thu Jul 13 2000 Bill Nottingham <notting@redhat.com>
2751
-- fix == tests in rc.sysinit
2752
-- more %%pretrans tweaks
2753
-
2754
-* Thu Jul 13 2000 Jeff Johnson <jbj@redhat.com>
2755
-- test if /etc/rc.d is a symlink already in pre-transaction syscalls.
2756
-
2757
-* Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
2758
-- implement the %%pre with RPM Magic(tm)
2759
-
2760
-* Sat Jul  8 2000 Bill Nottingham <notting@redhat.com>
2761
-- fix it to not follow /etc/rc.d
2762
-
2763
-* Fri Jul  7 2000 Bill Nottingham <notting@redhat.com>
2764
-- fix %%pre, again
2765
-
2766
-* Thu Jul  6 2000 Bill Nottingham <notting@redhat.com>
2767
-- tweak %%pre back to a mv (rpm is fun!)
2768
-- do USB initialization before fsck, so keyboard works if it fails
2769
-
2770
-* Mon Jul  3 2000 Bill Nottingham <notting@redhat.com>
2771
-- rebuild; allow 'fastboot' kernel command line option to skip fsck
2772
-
2773
-* Mon Jul 03 2000 Nalin Dahyabhai <nalin@redhat.com>
2774
-- fix demand-dialing with PPP
2775
-
2776
-* Sun Jul 02 2000 Trond Eivind Glomsrød <teg@redhat.com>
2777
-- don't use tail
2778
-
2779
-* Wed Jun 28 2000 Trond Eivind Glomsrød <teg@redhat.com>
2780
-- add support for USB controllers and HID devices
2781
-  (mice, keyboards)
2782
-
2783
-* Tue Jun 27 2000 Trond Eivind Glomsrød <teg@redhat.com>
2784
-- add support for EIDE optimization
2785
-
2786
-* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
2787
-- tweak %%pre
2788
-
2789
-* Wed Jun 21 2000 Preston Brown <pbrown@redhat.com>
2790
-- noreplace for adjtime file
2791
-
2792
-* Fri Jun 16 2000 Nalin Dahyabhai <nalin@redhat.com>
2793
-- ifup-ppp: add hooks for demand-dialing PPP
2794
-- functions: use basename of process when looking for its PID file
2795
-
2796
-* Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
2797
-- move from /etc/rc.d/init.d -> /etc/init.d
2798
-
2799
-* Tue Jun 13 2000 Bill Nottingham <notting@redhat.com>
2800
-- set soft limit, not hard, in daemon function
2801
-- /var/shm -> /dev/shm
2802
-
2803
-* Thu Jun 08 2000 Preston Brown <pbrown@redhat.com>
2804
-- use dhcpcd if pump fails.
2805
-- use depmod -A (faster)
2806
-
2807
-* Sun Jun  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2808
-- add autologin support to prefdm
2809
-
2810
-* Thu Jun  1 2000 Bill Nottingham <notting@redhat.com>
2811
-- random networking fixes (alias routes, others)
2812
-- conf.modules -> modules.conf
2813
-
2814
-* Thu May 11 2000 Nalin Dahyabhai <nalin@redhat.com>
2815
-- fix incorrect grep invocation in rc.sysinit (bug #11267)
2816
-
2817
-* Wed Apr 19 2000 Bill Nottingham <notting@redhat.com>
2818
-- fix lang.csh, again (oops)
2819
-- use /poweroff, /halt to determine whether to poweroff
2820
-
2821
-* Fri Apr 14 2000 Bill Nottingham <notting@redhat.com>
2822
-- fix testing of RESOLV_MODS (which shouldn't be used anyways)
2823
-
2824
-* Tue Apr 04 2000 Ngo Than <than@redhat.de>
2825
-- fix overwrite problem of resolv.conf on ippp/ppp/slip connections
2826
-
2827
-* Mon Apr  3 2000 Bill Nottingham <notting@redhat.com>
2828
-- fix typo in functions file
2829
-- explicitly set --localtime when calling hwclock if necessary
2830
-
2831
-* Fri Mar 31 2000 Bill Nottingham <notting@redhat.com>
2832
-- fix typo in /etc/rc.d/init.d/network that broke linuxconf (#10472)
2833
-
2834
-* Mon Mar 27 2000 Bill Nottingham <notting@redhat.com>
2835
-- remove compatibility chkconfig links
2836
-- run 'netfs stop' on 'network stop' if necessary
2837
-
2838
-* Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2839
-- Mount /var/shm if required (2.3.99, 2.4)
2840
-
2841
-* Mon Mar 20 2000 Bill Nottingham <notting@redhat.com>
2842
-- don't create resolv.conf 0600
2843
-- don't run ps as much (speed issues)
2844
-- allow setting of MTU
2845
-- other minor fixes
2846
-
2847
-* Sun Mar 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2848
-- Start devfsd if installed and needed (Kernel 2.4...)
2849
-
2850
-* Wed Mar  8 2000 Bill Nottingham <notting@redhat.com>
2851
-- check that network devices are up before bringing them down
2852
-
2853
-* Wed Mar  8 2000 Jakub Jelinek <jakub@redhat.com>
2854
-- update sysconfig.txt
2855
-
2856
-* Tue Mar  7 2000 Bill Nottingham <notting@redhat.com>
2857
-- rerun sysctl on network start (for restarts)
2858
-
2859
-* Mon Feb 28 2000 Bill Nottingham <notting@redhat.com>
2860
-- don't read commented raid devices
2861
-
2862
-* Mon Feb 21 2000 Bill Nottingham <notting@redhat.com>
2863
-- fix typo in resolv.conf munging
2864
-
2865
-* Thu Feb 17 2000 Bill Nottingham <notting@redhat.com>
2866
-- sanitize repair prompt
2867
-- initial support for isdn-config stuff
2868
-
2869
-* Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com>
2870
-- add which as a package dependency (bug #9416)
2871
-
2872
-* Tue Feb  8 2000 Bill Nottingham <notting@redhat.com>
2873
-- fixes for sound module loading
2874
-
2875
-* Mon Feb  7 2000 Nalin Dahyabhai <nalin@redhat.com>
2876
-- check that LC_ALL/LINGUAS and LANG are set before referencing them in lang.csh
2877
-- fix check for /var/*/news, work around for bug #9140
2878
-
2879
-* Fri Feb  4 2000 Nalin Dahyabhai <nalin@redhat.com>
2880
-- fix bug #9102
2881
-
2882
-* Fri Feb  4 2000 Bill Nottingham <notting@redhat.com>
2883
-- if LC_ALL/LINGUAS == LANG, don't set them
2884
-
2885
-* Wed Feb  2 2000 Bill Nottingham <notting@redhat.com>
2886
-- fix problems with linuxconf static routes
2887
-
2888
-* Tue Feb  1 2000 Nalin Dahyabhai <nalin@redhat.com>
2889
-- shvar cleaning
2890
-- fix wrong default route ip in network-functions
2891
-
2892
-* Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
2893
-- attempt to restore default route if PPP takes it over
2894
-- man page fix for ipcalc
2895
-- shvar cleaning
2896
-- automate maintaining /boot/System.map symlinks
2897
-
2898
-* Mon Jan 31 2000 Bill Nottingham <notting@redhat.com>
2899
-- fix hanging ppp-watch
2900
-- fix issues with cleaning of /var/{run,lock}
2901
-
2902
-* Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
2903
-- fix pidof calls in pidofproc
2904
-
2905
-* Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
2906
-- fix ifup-ipx, don't munge resolv.conf if $DNS1 is already in it
2907
-
2908
-* Thu Jan 13 2000 Bill Nottingham <notting@redhat.com>
2909
-- link popt statically
2910
-
2911
-* Mon Jan 10 2000 Bill Nottingham <notting@redhat.com>
2912
-- don't try to umount /loopfs
2913
-
2914
-* Mon Dec 27 1999 Bill Nottingham <notting@redhat.com>
2915
-- switch to using sysctl
2916
-
2917
-* Mon Dec 13 1999 Bill Nottingham <notting@redhat.com>
2918
-- umount /proc *after* trying to turn off raid
2919
-
2920
-* Mon Dec 06 1999 Michael K. Johnson <johnsonm@redhat.com>
2921
-- improvements in clone device handling
2922
-- better signal handling in ppp-watch
2923
-- yet another attempt to fix those rare PAP/CHAP problems
2924
-
2925
-* Sun Nov 28 1999 Bill Nottingham <notting@redhat.com>
2926
-- impressive. Three new features, three new bugs.
2927
-
2928
-* Mon Nov 22 1999 Michael K. Johnson <johnsonm@redhat.com>
2929
-- fix more possible failed CHAP authentication (with chat scripts)
2930
-- fix ppp default route problem
2931
-- added ppp-watch man page, fixed usernetctl man page
2932
-- make ifup-ppp work again when called from netcfg and linuxconf
2933
-- try to keep ppp-watch from filling up logs by respawning pppd too fast
2934
-- handle all linuxconf-style alias files with linuxconf
2935
-
2936
-* Mon Nov 22 1999 Bill Nottingham <notting@redhat.com>
2937
-- load mixer settings for monolithic sound
2938
-- man page for ppp-watch
2939
-- add ARP variable for ifup
2940
-- some i18n fixes
2941
-
2942
-* Wed Nov 10 1999 Bill Nottingham <notting@redhat.com>
2943
-- control stop-a separately from sysrq
2944
-
2945
-* Mon Nov 08 1999 Michael K. Johnson <johnsonm@redhat.com>
2946
-- fix some failed CHAP authentication
2947
-- fix extremely unlikely, but slightly possible kill-random-process
2948
-  bug in ppp-watch
2949
-- allow DNS{1,2} in any ifcfg-* file, not just PPP, and
2950
-  add nameserver entries, don't just replace them
2951
-- don't use /tmp/confirm, use /var/run/confirm instead
2952
-
2953
-* Tue Nov  2 1999 Bill Nottingham <notting@redhat.com>
2954
-- fix lang.csh /tmp race oops
2955
-
2956
-* Wed Oct 27 1999 Bill Nottingham <notting@redhat.com>
2957
-- we now ship hwclock on alpha.
2958
-
2959
-* Mon Oct 25 1999 Jakub Jelinek <jakub@redhat.com>
2960
-- fix check for serial console, don't use -C argument to fsck
2961
-  on serial console.
2962
-
2963
-* Mon Oct 18 1999 Bill Nottingham <notting@redhat.com>
2964
-- do something useful with linuxconf 'any' static routes.
2965
-
2966
-* Tue Oct 12 1999 Matt Wilson <msw@redhat.com>
2967
-- added patch from Owen to source i18n configuration before starting prefdm
2968
-
2969
-* Mon Oct 11 1999 Bill Nottingham <notting@redhat.com>
2970
-- support for linuxconf alias files
2971
-- add support for Jensen clocks.
2972
-
2973
-* Tue Oct  5 1999 Bill Nottingham <notting@redhat.com>
2974
-- assorted brown paper bag fixes
2975
-- check for programs/files before executing/sourcing them
2976
-- control stop-a like magic sysrq
2977
-
2978
-* Thu Sep 30 1999 Bill Nottingham <notting@redhat.com>
2979
-- req. e2fsprogs >= 1.15
2980
-
2981
-* Fri Sep 24 1999 Bill Nottingham <notting@redhat.com>
2982
-- munge C locale definitions to en_US
2983
-- use fsck's completion bar
2984
-
2985
-* Thu Sep 23 1999 Michael K. Johnson <johnsonm@redhat.com>
2986
-- ppp-watch now always kills pppd pgrp to make sure dialers are dead,
2987
-  and tries to hang up the modem
2988
-
2989
-* Tue Sep 21 1999 Bill Nottingham <notting@redhat.com>
2990
-- add a DEFRAG_IPV4 option
2991
-
2992
-* Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
2993
-- changed to more modern defaults for PPP connections
2994
-
2995
-* Mon Sep 20 1999 Bill Nottingham <notting@redhat.com>
2996
-- kill processes for umount in halt, too.
2997
-- fixes to remove /usr dependencies
2998
-
2999
-* Fri Sep 17 1999 Bill Nottingham <notting@redhat.com>
3000
-- load/save mixer settings in rc.sysinit, halt
3001
-
3002
-* Mon Sep 13 1999 Michael K. Johnson <johnsonm@redhat.com>
3003
-- add --remotename option to wvdial code
3004
-- make sure we do not have an earlier version of wvdial that doesn't
3005
-  know how handle --remotename
3006
-- make ppp-watch background itself after 30 seconds even if
3007
-  connection does not come up, at boot time only, so that a
3008
-  non-functional PPP connection cannot hang boot.
3009
-
3010
-* Sun Sep 12 1999 Bill Nottingham <notting@redhat.com>
3011
-- a couple of /bin/sh -> /bin/bash fixes
3012
-- fix swapoff silliness
3013
-
3014
-* Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
3015
-- chkconfig --del in %%preun, not %%postun
3016
-- use killall5 in halt
3017
-- swapoff non-/etc/fstab swap
3018
-
3019
-* Wed Sep 08 1999 Michael K. Johnson <johnsonm@redhat.com>
3020
-- ifdown now synchronous (modulo timeouts)
3021
-- several unrelated cleanups, primarily in ifdown
3022
-
3023
-* Tue Sep  7 1999 Bill Nottingham <notting@redhat.com>
3024
-- add an 'unconfigure' sort of thing
3025
-
3026
-* Mon Sep 06 1999 Michael K. Johnson <johnsonm@redhat.com>
3027
-- added ppp-watch to make "ifup ppp*" synchronous
3028
-
3029
-* Fri Sep  3 1999 Bill Nottingham <notting@redhat.com>
3030
-- require lsof
3031
-
3032
-* Wed Sep  1 1999 Bill Nottingham <notting@redhat.com>
3033
-- add interactive prompt
3034
-
3035
-* Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
3036
-- disable magic sysrq by default
3037
-
3038
-* Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
3039
-- new NFS unmounting from Bill Rugolsky <rugolsky@ead.dsa.com>
3040
-- fix ifup-sl/dip confusion
3041
-- more raid startup cleanup
3042
-- make utmp group 22
3043
-
3044
-* Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
3045
-- pass hostname to pump
3046
-- add lang.csh
3047
-
3048
-* Thu Aug 19 1999 Bill Nottingham <notting@redhat.com>
3049
-- more wvdial updates
3050
-- fix a *stupid* bug in process reading
3051
-
3052
-* Fri Aug 13 1999 Bill Nottingham <notting@redhat.com>
3053
-- add new /boot/kernel.h boot kernel version file
3054
-- new RAID startup
3055
-
3056
-* Fri Aug 13 1999 Michael K. Johnson <johnsonm@redhat.com>
3057
-- use new linkname argument to pppd to make if{up,down}-ppp
3058
-  reliable -- requires ppp-2.3.9 or higher
3059
-
3060
-* Mon Aug  2 1999 Bill Nottingham <notting@redhat.com>
3061
-- fix typo.
3062
-- add 'make check'
3063
-
3064
-* Wed Jul 28 1999 Michael K. Johnson <johnsonm@redhat.com>
3065
-- simple wvdial support for ppp connections
3066
-
3067
-* Mon Jul 26 1999 Bill Nottingham <notting@redhat.com>
3068
-- stability fixes for initlog
3069
-- initlog now has a config file
3070
-- add alias speedup from dharris@drh.net
3071
-- move netfs links
3072
-- usleep updates
3073
-
3074
-* Thu Jul  8 1999 Bill Nottingham <notting@redhat.com>
3075
-- remove timeconfig dependency
3076
-- i18n fixes from nkbj@image.dk
3077
-- move inputrc to setup package
3078
-
3079
-* Tue Jul  6 1999 Bill Nottingham <notting@redhat.com>
3080
-- fix killall links, some syntax errors
3081
-
3082
-* Fri Jun 25 1999 Bill Nottingham <notting@redhat.com>
3083
-- don't make module-info, System.map links
3084
-- handle utmpx/wtmpx
3085
-- fix lots of bugs in 4.21 release :)
3086
-
3087
-* Thu Jun 17 1999 Bill Nottingham <notting@redhat.com>
3088
-- set clock as soon as possible
3089
-- use INITLOG_ARGS everywhere
3090
-- other random fixes in networking
3091
-
3092
-* Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
3093
-- oops, don't create /var/run/utmp and then remove it.
3094
-- stomp RAID bugs flat. Sort of.
3095
-
3096
-* Mon May 24 1999 Bill Nottingham <notting@redhat.com>
3097
-- clean out /var better
3098
-- let everyone read /var/run/ppp*.dev
3099
-- fix network startup so it doesn't depend on /usr
3100
-
3101
-* Tue May 11 1999 Bill Nottingham <notting@redhat.com>
3102
-- various fixes to rc.sysinit
3103
-- fix raid startup
3104
-- allow for multi-processor /etc/issues
3105
-
3106
-* Sun Apr 18 1999 Matt Wilson <msw@redhat.com>
3107
-- fixed typo - "Determing" to "Determining"
3108
-
3109
-* Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
3110
-- updated inputrc so that home/end/del work on console, not just X
3111
-
3112
-* Thu Apr 08 1999 Bill Nottingham <notting@redhat.com>
3113
-- fix more logic in initlog
3114
-- fix for kernel versions in ifup-aliases
3115
-- log to /var/log/boot.log
3116
-
3117
-* Wed Apr 07 1999 Bill Nottingham <notting@redhat.com>
3118
-- fix daemon() function so you can specify pid to look for
3119
-
3120
-* Wed Apr 07 1999 Erik Troan <ewt@redhat.com>
3121
-- changed utmp,wtmp to be group writeable and owned by group utmp
3122
-
3123
-* Tue Apr 06 1999 Bill Nottingham <notting@redhat.com>
3124
-- fix loading of consolefonts/keymaps
3125
-- three changelogs. three developers. one day. Woohoo!
3126
-
3127
-* Tue Apr 06 1999 Michael K. Johnson <johnsonm@redhat.com>
3128
-- fixed ifup-ipx mix-up over . and _
3129
-
3130
-* Tue Apr 06 1999 Erik Troan <ewt@redhat.com>
3131
-- run /sbin/ifup-local after bringing up an interface (if that file exists)
3132
-
3133
-* Mon Apr  5 1999 Bill Nottingham <notting@redhat.com>
3134
-- load keymaps & console font early
3135
-- fixes for channel bonding, strange messages with non-boot network interfaces
3136
-
3137
-* Sat Mar 27 1999 Cristian Gafton <gafton@redhat.com>
3138
-- added sysvinitfiles as a documenattaion file
3139
-
3140
-* Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
3141
-- nfsfs -> netfs
3142
-
3143
-* Mon Mar 22 1999 Bill Nottingham <notting@redhat.com>
3144
-- don't source /etc/sysconfig/init if $BOOTUP is already set
3145
-
3146
-* Fri Mar 19 1999 Bill Nottingham <notting@redhat.com>
3147
-- don't run linuxconf if /usr isn't mounted
3148
-- set macaddr before bootp
3149
-- zero in the /var/run/utmpx file (gafton)
3150
-- don't set hostname on ppp/slip (kills X)
3151
-
3152
-* Wed Mar 17 1999 Bill Nottingham <notting@redhat.com>
3153
-- exit ifup if pump fails
3154
-- fix stupid errors in reading commands from subprocess
3155
-
3156
-* Tue Mar 16 1999 Bill Nottingham <notting@redhat.com>
3157
-- fix ROFS logging
3158
-- make fsck produce more happy output
3159
-- fix killproc logic
3160
-
3161
-* Mon Mar 15 1999 Bill Nottingham <notting@redhat.com>
3162
-- doc updates
3163
-- support for SYSFONTACM, other console-tools stuff
3164
-- add net route for interface if it isn't there.
3165
-- fix for a bash/bash2 issue
3166
-
3167
-* Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com>
3168
-- pam_console lockfile cleanup added to rc.sysinit
3169
-
3170
-* Sun Mar 14 1999 Bill Nottingham <notting@redhat.com>
3171
-- fixes in functions for 'action'
3172
-- fixes for pump
3173
-
3174
-* Wed Mar 10 1999 Bill Nottingham <notting@redhat.com>
3175
-- Mmm. Must always remove debugging code. before release. *thwap*
3176
-- pump support
3177
-- mount -a after mount -a -t nfs
3178
-
3179
-* Thu Feb 25 1999 Bill Nottingham <notting@redhat.com>
3180
-- put preferred support back in
3181
-
3182
-* Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
3183
-- fix single-user mode (source functions, close if)
3184
-
3185
-* Wed Feb 10 1999 Bill Nottingham <notting@redhat.com>
3186
-- turn off xdm in runlevel 5 (now a separate service)
3187
-
3188
-* Thu Feb  4 1999 Bill Nottingham <notting@redhat.com>
3189
-- bugfixes (ifup-ppp, kill -TERM, force fsck, hwclock --adjust, setsysfont)
3190
-- add initlog support. Now everything is logged (and bootup looks different)
3191
-
3192
-* Thu Nov 12 1998 Preston Brown <pbrown@redhat.com>
3193
-- halt now passed the '-i' flag so that network interfaces disabled
3194
-
3195
-* Tue Nov 10 1998 Michael K. Johnson <johnsonm@redhat.com>
3196
-- handle new linuxconf output for ipaliases
3197
-
3198
-* Thu Oct 15 1998 Erik Troan <ewt@redhat.com>
3199
-- fixed raid start stuff
3200
-- added raidstop to halt
3201
-
3202
-* Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
3203
-- handle LC_ALL
3204
-
3205
-* Mon Oct 12 1998 Preston Brown <pbrown@redhat.com>
3206
-- adjusted setsysfont to always run setfont, even if only w/default font
3207
-
3208
-* Tue Oct 06 1998 Cristian Gafton <gafton@redhat.com>
3209
-- rc.sysvinit should be working with all kernel versions now
3210
-- requires e2fsprogs (for fsck)
3211
-- set INPUTRC and LESSCHARSET on linux-lat
3212
-
3213
-* Wed Sep 16 1998 Jeff Johnson <jbj@redhat.com>
3214
-- /etc/rc.d/rc: don't run /etc/rc.d/rcN.d/[KS]??foo.{rpmsave,rpmorig} scripts.
3215
-- /etc/rc.d/rc.sysinit: raid startup (Nigel.Metheringham@theplanet.net).
3216
-- /sbin/setsysfont: permit unicode fonts.
3217
-
3218
-* Mon Aug 17 1998 Erik Troan <ewt@redhat.com>
3219
-- don't add 'Red Hat Linux' to /etc/issue; use /etc/redhat-release as is
3220
-
3221
-* Sun Aug 16 1998 Jeff Johnson <jbj@redhat.com>
3222
-- paranoia improvements to .rhkmvtag
3223
-- if psacct with /sbin/accton, than turn off accounting
3224
-
3225
-* Tue Jul  7 1998 Jeff Johnson <jbj@redhat.com>
3226
-- start/stop run levels changed.
3227
-- ipx_configure/ipx_internal_net moved to /sbin.
3228
-
3229
-* Wed Jul 01 1998 Erik Troan <ewt@redhat.com>
3230
-- usernetctl didn't understand "" around USERCTL attribute
3231
-
3232
-* Wed Jul  1 1998 Jeff Johnson <jbj@redhat.com>
3233
-- Use /proc/version to find preferred modules.
3234
-- Numerous buglets fixed.
3235
-
3236
-* Sun Jun 07 1998 Erik Troan <ewt@redhat.com>
3237
-- rc.sysinit looks for bootfile= as well as BOOT_IMAGE to set
3238
-  /lib/modules/preferred symlink
3239
-
3240
-* Mon Jun 01 1998 Erik Troan <ewt@redhat.com>
3241
-- ipcalc should *never* have been setgid anything
3242
-- depmod isn't run properly for non-serial numbered kernels
3243
-
3244
-* Wed May 06 1998 Donnie Barnes <djb@redhat.com>
3245
-- added system font and language setting
3246
-
3247
-* Mon May 04 1998 Michael K. Johnson <johnsonm@redhat.com>
3248
-- Added missing files to packagelist.
3249
-
3250
-* Sat May 02 1998 Michael K. Johnson <johnsonm@redhat.com>
3251
-- Added lots of linuxconf support.  Should still work on systems that
3252
-  do not have linuxconf installed, but linuxconf gives enhanced support.
3253
-- In concert with linuxconf, added IPX support.  Updated docs to reflect it.
3254
-
3255
-* Fri May 01 1998 Erik Troan <ewt@redhat.com>
3256
-- rc.sysinit uses preferred directory
3257
-
3258
-* Sun Apr 05 1998 Erik Troan <ewt@redhat.com>
3259
-- updated rc.sysinit to deal with kernel versions with release numbers
3260
-
3261
-* Sun Mar 22 1998 Erik Troan <ewt@redhat.com>
3262
-- use ipcalc to calculate the netmask if one isn't specified
3263
-
3264
-* Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
3265
-- added and made use of ipcalc
3266
-
3267
-* Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
3268
-- removed unnecessary dhcp log from /tmp
3269
-
3270
-* Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
3271
-- if bootpc fails, take down the device
3272
-
3273
-* Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
3274
-- added check for mktemp failure
3275
-
3276
-* Thu Feb 05 1998 Erik Troan <ewt@redhat.com>
3277
-- fixed support for user manageable cloned devices
3278
-
3279
-* Mon Jan 12 1998 Michael K. Johnson <johnsonm@redhat.com>
3280
-- /sbin/ isn't always in $PATH, so call /sbin/route in ifup-routes
3281
-
3282
-* Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
3283
-- touch /var/lock/subsys/kerneld after cleaning out /var/lock/subsys
3284
-- the logic for when  /var/lock/subsys/kerneld is touched was backwards
3285
-
3286
-* Tue Dec 30 1997 Erik Troan <ewt@redhat.com>
3287
-- tried to get /proc stuff right one more time (uses -t nonfs,proc now)
3288
-- added support for /fsckoptions
3289
-- changed 'yse' to 'yes' in KERNELD= line
3290
-
3291
-* Tue Dec 09 1997 Erik Troan <ewt@redhat.com>
3292
-- set domainname to "" if none is specified in /etc/sysconfig/network
3293
-- fix /proc mounting to get it in /etc/mtab
3294
-
3295
-* Mon Dec 08 1997 Michael K. Johnson <johnsonm@redhat.com>
3296
-- fixed inheritance for clone devices
3297
-
3298
-* Fri Nov 07 1997 Erik Troan <ewt@redhat.com>
3299
-- added sound support to rc.sysinit
3300
-
3301
-* Fri Nov 07 1997 Michael K. Johnson <johnsonm@redhat.com>
3302
-- Added missing "then" clause
3303
-
3304
-* Thu Nov 06 1997 Michael K. Johnson <johnsonm@redhat.com>
3305
-- Fixed DEBUG option in ifup-ppp
3306
-- Fixed PPP persistence
3307
-- Only change IP forwarding if necessary
3308
-
3309
-* Tue Oct 28 1997 Donnie Barnes <djb@redhat.com>
3310
-- removed the skeleton init script
3311
-- added the ability to 'nice' daemons
3312
-
3313
-* Tue Oct 28 1997 Erik Troan <ewt@redhat.com>
3314
-- touch /var/lock/subsys/kerneld if it's running, and after mounting /var
3315
-- applied dhcp fix
3316
-
3317
-* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
3318
-- added status|restart to init scripts
3319
-
3320
-* Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com>
3321
-- touch random seed file before chmod'ing it.
3322
-
3323
-* Wed Oct 15 1997 Erik Troan <ewt@redhat.com>
3324
-- run domainname if NISDOMAIN is set
3325
-
3326
-* Wed Oct 15 1997 Michael K. Johnson <johnsonm@redhat.com>
3327
-- Make the random seed file mode 600.
3328
-
3329
-* Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
3330
-- bring down ppp devices if ifdown-ppp is called while ifup-ppp is sleeping.
3331
-
3332
-* Mon Oct 13 1997 Erik Troan <ewt@redhat.com>
3333
-- moved to new chkconfig conventions
3334
-
3335
-* Sat Oct 11 1997 Erik Troan <ewt@redhat.com>
3336
-- fixed rc.sysinit for hwclock compatibility
3337
-
3338
-* Thu Oct 09 1997 Erik Troan <ewt@redhat.com>
3339
-- run 'ulimit -c 0' before running scripts in daemon function
3340
-
3341
-* Wed Oct 08 1997 Donnie Barnes <djb@redhat.com>
3342
-- added chkconfig support
3343
-- made all rc*.d symlinks have missingok flag
3344
-
3345
-* Mon Oct 06 1997 Erik Troan <ewt@redhat.com>
3346
-- fixed network-scripts to allow full pathnames as config files
3347
-- removed some old 3.0.3 pcmcia device handling
3348
-
3349
-* Wed Oct 01 1997 Michael K. Johnson <johnsonm@redhat.com>
3350
-- /var/run/netreport needs to be group-writable now that /sbin/netreport
3351
-  is setguid instead of setuid.
3352
-
3353
-* Tue Sep 30 1997 Michael K. Johnson <johnsonm@redhat.com>
3354
-- Added network-functions to spec file.
3355
-- Added report functionality to usernetctl.
3356
-- Fixed bugs I introduced into usernetctl while adding clone device support.
3357
-- Clean up entire RPM_BUILD_ROOT directory in %%clean.
3358
-
3359
-* Mon Sep 29 1997 Michael K. Johnson <johnsonm@redhat.com>
3360
-- Clone device support in network scripts, rc scripts, and usernetctl.
3361
-- Disassociate from controlling tty in PPP and SLIP startup scripts,
3362
-  since they act as daemons.
3363
-- Spec file now provides start/stop symlinks, since they don't fit in
3364
-  the CVS archive.
3365
-
3366
-* Tue Sep 23 1997 Donnie Barnes <djb@redhat.com>
3367
-- added mktemp support to ifup
3368
-
3369
-* Thu Sep 18 1997 Donnie Barnes <djb@redhat.com>
3370
-- fixed some init.d/functions bugs for stopping httpd
3371
-
3372
-* Tue Sep 16 1997 Donnie Barnes <djb@redhat.com>
3373
-- reworked status() to adjust for processes that change their argv[0] in
3374
-  the process table.  The process must still have it's "name" in the argv[0]
3375
-  string (ala sendmail: blah blah).
3376
-
3377
-* Mon Sep 15 1997 Erik Troan <ewt@redhat.com>
3378
-- fixed bug in FORWARD_IPV4 support
3379
-
3380
-* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
3381
-- added support for FORWARD_IPV4 variable
3382
-
3383
-* Thu Sep 11 1997 Donald Barnes <djb@redhat.com>
3384
-- added status function to functions along with better killproc
3385
-  handling.
3386
-- added /sbin/usleep binary (written by me) and man page
3387
-- changed BuildRoot to /var/tmp instead of /tmp
3388
-
3389
-* Tue Jun 10 1997 Michael K. Johnson <johnsonm@redhat.com>
3390
-- /sbin/netreport sgid rather than suid.
3391
-- /var/run/netreport writable by group root.
3392
-
3393
-- /etc/ppp/ip-{up|down} no longer exec their local versions, so
3394
-  now ifup-post and ifdown-post will be called even if ip-up.local
3395
-  and ip-down.local exist.
3396
-
3397
-* Tue Jun 03 1997 Michael K. Johnson <johnsonm@redhat.com>
3398
-- Added missing -f to [ invocation in ksyms check.
3399
-
3400
-* Fri May 23 1997 Michael K. Johnson <johnsonm@redhat.com>
3401
-- Support for net event notification:
3402
-  Call /sbin/netreport to request that SIGIO be sent to you whenever
3403
-  a network interface changes status (won't work for brining up SLIP
3404
-  devices).
3405
-  Call /sbin/netreport -r to remove the notification request.
3406
-- Added ifdown-post, and made all the ifdown scrips call it, and
3407
-  added /etc/ppp/ip-down script that calls /etc/ppp/ip-down.local
3408
-  if it exists, then calls ifdown-post.
3409
-- Moved ifup and ifdown to /sbin
3410
-
3411
-* Tue Apr 15 1997 Michael K. Johnson <johnsonm@redhat.com>
3412
-- usernetctl put back in ifdown
3413
-- support for slaved interfaces
3414
-
3415
-* Wed Apr 02 1997 Erik Troan <ewt@redhat.com>
3416
-- Created ifup-post from old ifup
3417
-- PPP, PLIP, and generic ifup use ifup-post
3418
-
3419
-* Fri Mar 28 1997 Erik Troan <ewt@redhat.com>
3420
-- Added DHCP support
3421
-- Set hostname via reverse name lookup after configuring a networking
3422
-  device if the current hostname is (none) or localhost
3423
-
3424
-* Tue Mar 18 1997 Erik Troan <ewt@redhat.com>
3425
-- Got rid of xargs dependency in halt script
3426
-- Don't mount /proc twice (unmount it in between)
3427
-- sulogin and filesystem unmounting only happened for a corrupt root
3428
-  filesystem -- it now happens when other filesystems are corrupt as well
3429
-
3430
-* Tue Mar 04 1997 Michael K. Johnson <johnsonm@redhat.com>
3431
-- PPP fixes and additions
3432
-
3433
-* Mon Mar 03 1997 Erik Troan <ewt@redhat.com>
3434
-- Mount proc before trying to start kerneld so we can test for /proc/ksyms
3435
-  properly.
3436
-
3437
-* Wed Feb 26 1997 Michael K. Johnson <johnsonm@redhat.com>
3438
-- Added MTU for PPP.
3439
-- Put PPPOPTIONS at the end of the options string instead of at the
3440
-  beginning so that they override other options.  Gives users more rope...
3441
-- Don't do module-based stuff on non-module systems.  Ignore errors if
3442
-  st module isn't there and we try to load it.
3443
-
3444
-* Tue Feb 25 1997 Michael K. Johnson <johnsonm@redhat.com>
3445
-- Changed ifup-ppp and ifdown-ppp not to use doexec, because the argv[0]
3446
-  provided by doexec goes away when pppd gets swapped out.
3447
-- ifup-ppp now sets remotename to the logical name of the device.
3448
-  This will BREAK current PAP setups on netcfg-managed interfaces,
3449
-  but we needed to do this to add a reasonable interface-specific
3450
-  PAP editor to netcfg.
3451
-
3452
-* Fri Feb 07 1997 Erik Troan <ewt@redhat.com>
3453
-- Added usernetctl wrapper for user mode ifup and ifdown's and man page
3454
-- Rewrote ppp and slip kill and retry code
3455
-- Added doexec and man page
... ...
@@ -1,25 +1,26 @@
1
-diff -dupr a/service b/service
2
-+++ b/service	2017-04-03 18:36:24.047885982 -0700
1
+diff --git a/usr/sbin/service b/usr/sbin/service
2
+index b178d91..20e51e1 100755
3
+--- a/usr/sbin/service
3 4
 @@ -70,7 +70,9 @@ while [ $# -gt 0 ]; do
4
-    esac
5
+     esac
5 6
  done
6 7
  
7 8
 -if [ -f "${SERVICEDIR}/${SERVICE}" ]; then
8 9
 +if `echo $ACTION | egrep -qw "start|stop|restart|try-restart|reload|force-reload|status|condrestart"` ; then
9 10
 +   exec /bin/systemctl ${ACTION} ${OPTIONS} ${SERVICE}.service
10 11
 +elif [ -f "${SERVICEDIR}/${SERVICE}" ]; then
11
-    # LSB daemons that dies abnormally in systemd looks alive in systemd's eyes due to RemainAfterExit=yes
12
-    # lets reap them before next start
13
-    if [ "${ACTION}" = "start" ] && \
14
-@@ -81,10 +83,6 @@ if [ -f "${SERVICEDIR}/${SERVICE}" ]; th
15
-    env -i PATH="$PATH" TERM="$TERM" SYSTEMCTL_IGNORE_DEPENDENCIES=${SYSTEMCTL_IGNORE_DEPENDENCIES} SYSTEMCTL_SKIP_REDIRECT=${SYSTEMCTL_SKIP_REDIRECT} "${SERVICEDIR}/${SERVICE}" ${ACTION} ${OPTIONS}
16
- elif [ -x "${ACTIONDIR}/${SERVICE}/${ACTION}" -a -n "${ACTION}" ]; then
17
-    env -i PATH="$PATH" TERM="$TERM" SYSTEMCTL_IGNORE_DEPENDENCIES=${SYSTEMCTL_IGNORE_DEPENDENCIES} SYSTEMCTL_SKIP_REDIRECT=${SYSTEMCTL_SKIP_REDIRECT} "${ACTIONDIR}/${SERVICE}/${ACTION}" ${OPTIONS}
18
--elif `echo $ACTION | egrep -qw "start|stop|restart|try-restart|reload|force-reload|status|condrestart"` ; then
19
--   SERVICE_MANGLED=$(/usr/bin/systemd-escape --mangle ${SERVICE})
20
--   echo $"Redirecting to /bin/systemctl ${ACTION}${OPTIONS:+ }${OPTIONS} ${SERVICE_MANGLED}" >&2
21
--   exec /bin/systemctl ${ACTION} ${OPTIONS} ${SERVICE_MANGLED}
12
+     # LSB daemons that dies abnormally in systemd looks alive in systemd's eyes due to RemainAfterExit=yes
13
+     # lets reap them before next start
14
+     if [ "${ACTION}" = 'start' ] && \
15
+@@ -90,10 +92,6 @@ if [ -f "${SERVICEDIR}/${SERVICE}" ]; then
16
+     env -i PATH="$PATH" TERM="$TERM" SYSTEMCTL_IGNORE_DEPENDENCIES=${SYSTEMCTL_IGNORE_DEPENDENCIES} SYSTEMCTL_SKIP_REDIRECT=${SYSTEMCTL_SKIP_REDIRECT} "${SERVICEDIR}/${SERVICE}" ${ACTION} ${OPTIONS}
17
+ elif [ -n "${ACTION}" ] && [ -x "${ACTIONDIR}/${SERVICE}/${ACTION}" ]; then
18
+     env -i PATH="$PATH" TERM="$TERM" SYSTEMCTL_IGNORE_DEPENDENCIES=${SYSTEMCTL_IGNORE_DEPENDENCIES} SYSTEMCTL_SKIP_REDIRECT=${SYSTEMCTL_SKIP_REDIRECT} "${ACTIONDIR}/${SERVICE}/${ACTION}" ${OPTIONS}
19
+-elif [[ $ACTION =~ start|stop|restart|try-restart|reload|force-reload|status|condrestart ]]; then
20
+-    SERVICE_MANGLED=$(/usr/bin/systemd-escape --mangle ${SERVICE})
21
+-    echo $"Redirecting to /bin/systemctl ${ACTION}${OPTIONS:+ }${OPTIONS} ${SERVICE_MANGLED}" >&2
22
+-    exec /bin/systemctl ${ACTION} ${OPTIONS} ${SERVICE_MANGLED}
22 23
  else
23
-    echo $"The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use systemctl." >&2
24
-    exit 2
24
+     echo $"The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use systemctl." >&2
25
+     exit 2