]> git.pld-linux.org Git - projects/rc-scripts.git/blame - ChangeLog
rc.sysinit: unify modprobe calls
[projects/rc-scripts.git] / ChangeLog
CommitLineData
7f925670
ER
12013-05-15 21:04 +0000 [r12658] Elan Ruusamäe <glen/at/pld-linux.org>
2
3 * po/de.po, po/pl.po: make update-po
4
52013-04-09 22:07 +0000 [r12650] Elan Ruusamäe <glen/at/pld-linux.org>
6
7 * lib/functions: Fedora compat: fix echo_success and echo_failure
8 formatting
9
102013-04-09 21:48 +0000 [r12648-12649] Elan Ruusamäe <glen/at/pld-linux.org>
11
12 * lib/functions: RedHat/Fedora compatibility turn daemon() and
13 friends into syntax their scripts understand (shell syntax) if
14 initscript interpreter is set to bash
15
16 * lib/functions: revert [12647] it was correct before that
17
182013-04-09 21:41 +0000 [r12647] Elan Ruusamäe <glen/at/pld-linux.org>
19
20 * lib/functions: do not reset RC_LOGGING when IN_SHUTDOWN is not
21 set refs [6452] and [9733]
22
232013-04-03 08:51 +0000 [r12643] Elan Ruusamäe <glen/at/pld-linux.org>
24
25 * lib/functions: improve fedora compatibility: add: - daemon
26 --pidfile=FOO - killproc -d DELAY use usleep 50000 instead of
27 100000, computers are bit faster now :)
28
b30f8040
AM
292013-03-18 08:25 +0000 [r12632] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
30
31 * configure.ac: Release 0.4.5.5.
32
332013-03-09 23:12 +0000 [r12630] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
34
35 * configure.ac: AM_CONFIG_HEADER is obsolete.
36
372013-03-09 23:09 +0000 [r12629] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
38
39 * rc.d/rc.sysinit: usbfs is deprecated for some time.
40
412013-02-11 22:23 +0000 [r12626] Elan Ruusamäe <glen/at/pld-linux.org>
42
43 * rc.d/rc.sysinit: avoid loading /etc/modules contents twice
44 (modules-load.d/modules.conf is symlink to that)
45
462013-02-06 16:22 +0000 [r12625] Jakub Bogusz <qboosh/at/pld-linux.org>
47
48 * doc/sysconfig.txt: - clarified (LANG is also whole locale code;
49 LANGUAGE not LINGUAS is used at runtime)
50
512013-02-06 15:35 +0000 [r12624] Elan Ruusamäe <glen/at/pld-linux.org>
52
53 * rc.d/init.d/network: more complete update for NM skipping.
54 improves [12481] and [12616] should the `$USERS` be dropped now,
55 i don't see it from current NM generated configs M init.d/network
56
572013-02-06 15:32 +0000 [r12623] Elan Ruusamäe <glen/at/pld-linux.org>
58
59 * lang.csh: note that lang.csh is broken
60
612013-02-06 15:27 +0000 [r12622] Elan Ruusamäe <glen/at/pld-linux.org>
62
63 * doc/sysconfig.txt: more specific language code specification
64
652013-02-05 15:04 +0000 [r12616] Elan Ruusamäe <glen/at/pld-linux.org>
66
67 * rc.d/init.d/network: ignore ifcfg-* files which have no DEVICE
68 line present, i.e WiFi networks generated by NM
69
702013-01-09 08:48 +0000 [r12613] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
71
72 * rc.d/rc.sysinit: Store raw dmesg format, so few dmesg features
73 can be used (like -T) when reading from this file.
74
752012-12-17 07:39 +0000 [r12610] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
76
77 * sysconfig/interfaces/ifcfg-eth0: ethtool example.
78
792012-12-13 17:17 +0000 [r12604] Jacek Konieczny <jajcus/at/pld-linux.org>
80
81 * lib/ifup: SYSCTLDEVICE definition moved when ${DEVICE} is known
82
832012-12-05 20:54 +0000 [r12603] Elan Ruusamäe <glen/at/pld-linux.org>
84
85 * lib/functions: killproc: improve experimental start-stop-daemon
86 based killing. do not send --retry, in case we specify a signal
87 to kill (usually HUP) as processes do not usually exit (remove
88 their pid from pidfile) if they receive HUP
89
902012-11-24 12:34 +0000 [r12602] Elan Ruusamäe <glen/at/pld-linux.org>
91
92 * rc.d/rc.sysinit: unset locale when using a-z patterns
93
942012-11-23 16:44 +0000 [r12601] Elan Ruusamäe <glen/at/pld-linux.org>
95
96 * rc.d/rc.sysinit: remove not needed subshell
97
982012-10-21 15:14 +0000 [r12593] Elan Ruusamäe <glen/at/pld-linux.org>
99
100 * service: service: systemd wrapper default output cat
101
1022012-10-06 16:33 +0000 [r12592] Tomasz Pala <gotar/at/pld-linux.org>
103
104 * lib/ifup: - another example of zsh supremacy in shell world!
105 fixed 5 yrs old flaw introduced in rev. 8719 that neither pdksh
106 nor mksh handled properly, not to mention bash - such process
107 backgrounding caused, when called from functions/run_cmd (i.e.
108 during service network start), I/O wait for STDOUT of
109 'background' job despite >/dev/null redirects; this effectively
110 leads to 2 seconds delay for each interface at system startup,
111 cumulating to minutes of pointless waiting on heavy networked
112 machines! There is alternate workaround: { { sleep 2; } & }
113 >/dev/null that works as expected under pdksh or mksh, but
114 requires additional & for zsh and doesn't fix bash behaviour, so
115 please do not touch _THIS_ solution without comprehensive
116 research! -- Aug 29th, 2012, /me Note: this happens due to $()
117 capture, so plain ifup isn't enough.
118
1192012-06-20 13:23 +0000 [r12572] Adam Osuchowski <adwol/at/pld-linux.org>
120
121 * rc.d/rc.sysinit: - extra sysctl right after mounting /proc
122
1232012-05-21 11:01 +0000 [r12569] Jan Rękorajski <baggins/at/pld-linux.org>
124
125 * rc.d/rc.sysinit: - don't start udev or fsck / when running inside
126 LXC container
127
1282012-05-20 08:35 +0000 [r12568] Jan Rękorajski <baggins/at/pld-linux.org>
129
130 * lib/ifup: - fix sysctl setting for interfaces with dot in name,
131 patch by Adam Osuchowski <adwol>
132
1332012-04-20 09:47 +0000 [r12557] Paweł Gołaszewski <blues/at/pld-linux.org>
134
135 * lib/ifup-vlan: - just warn about disabled master interface, don't
136 silently disable vlans
137
1382012-04-18 06:29 +0000 [r12553] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
139
140 * lib/functions.network: Start ip rules prio from 10000 and
141 increment (not decrement) by 5.
142
1432012-04-17 15:33 +0000 [r12551] Elan Ruusamäe <glen/at/pld-linux.org>
144
145 * sysconfig/interfaces/ifcfg-bond0 (added): bonding sample
146
4ca37ca2
JR
1472012-04-03 20:24 +0000 [r12537-12538] Jan Rękorajski <baggins/at/pld-linux.org>
148
149 * configure.ac: - 0.4.5.4
150
151 * Makefile.am: - add uninstall-hook, don't we just love autocrap
152 crapiness?
153
1542012-04-03 19:30 +0000 [r12536] Jan Rękorajski <baggins/at/pld-linux.org>
155
156 * lib/functions: - provide stdin for the daemons that just must
157 have it, but stupid ksh closes it on them (for example acpid)
158
1592012-03-29 07:04 +0000 [r12523] Elan Ruusamäe <glen/at/pld-linux.org>
160
161 * rc.d/rc.sysinit: clean /tmp if it is not on tmpfs
162
1632012-03-28 21:33 +0000 [r12522] Elan Ruusamäe <glen/at/pld-linux.org>
164
165 * rc.d/init.d/network: use is_empty_file function on /etc/mactab
166
1672012-03-21 15:53 +0000 [r12507] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
168
169 * rc.d/rc.sysinit: Mount /proc based on fstab first and if that
170 fails fallback to hardcoded values.
171
1722012-03-18 12:11 +0000 [r12497] Elan Ruusamäe <glen/at/pld-linux.org>
173
174 * sysconfig/i18n: warn about systemd, besides keeping ssh env
175 should came from lang.sh
176
1772012-03-17 09:32 +0000 [r12496] Elan Ruusamäe <glen/at/pld-linux.org>
178
179 * service: as we are redirecting to systemd, detect when systemd
180 redirects back due /sbinservice in .service file
181
1822012-03-17 09:14 +0000 [r12495] Elan Ruusamäe <glen/at/pld-linux.org>
183
184 * service: validate systemd command, before sending it to systemd,
185 to keep "service lighttpd configtest" on working
186
1872012-03-17 08:39 +0000 [r12494] Elan Ruusamäe <glen/at/pld-linux.org>
188
189 * service: - detect if service is in systemd (if LoadError means
190 it's not present in systemd) - add --no-systemd option to
191 override detect
192
1932012-03-04 21:49 +0000 [r12486] Elan Ruusamäe <glen/at/pld-linux.org>
194
195 * service: fix message printing; pass anything to systemd if it is
196 up (status is valid action too)
197
1982012-03-04 20:47 +0000 [r12485] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
199
200 * service: Tabs are used here.
201
2022012-03-04 20:36 +0000 [r12484] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
203
204 * service: systemd takes preference if it is booted/active.
205
2062012-03-04 20:12 +0000 [r12483] Jan Rękorajski <baggins/at/pld-linux.org>
207
208 * rc.d/rc.sysinit: - load kernel modules specified in
209 /etc/modules-load.d/ configs (systemd compat)
210
2112012-03-03 20:35 +0000 [r12482] Elan Ruusamäe <glen/at/pld-linux.org>
212
213 * service: - systemd bits
214
2152012-02-19 18:33 +0000 [r12481] Jan Rękorajski <baggins/at/pld-linux.org>
216
217 * rc.d/init.d/network: - skip interfaces configured by
218 NetworkManager, by cactus/at/pld-linux.org
219
a2ee7529
JR
2202012-02-19 18:23 +0000 [r12478] Jan Rękorajski <baggins/at/pld-linux.org>
221
222 * configure.ac: - 0.4.5.3
223
2242012-02-19 18:11 +0000 [r12477] Jan Rękorajski <baggins/at/pld-linux.org>
225
226 * rc.d/rc.sysinit: - devtmpfs is madatory for udev >= 176
227
2282012-02-03 19:23 +0000 [r12474] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
229
230 * lib/functions.network: Adding rule by rule causes reverse order
231 to be applied by kernel. We want rules from
232 sysconfig/static-rules to be working in the same order as these
233 were added in that file. The one solution is to use '/usr/bin/tac
234 static-routes' or to use own priorities. We use prio 20000 with
235 step 10 down, to get holes for other, manually added rules.
236
2372012-01-25 14:40 +0000 [r12468] Kacper Kornet <draenog/at/pld-linux.org>
238
239 * lib/functions: - fix bashism in previous commit
240
2412012-01-25 14:28 +0000 [r12467] Kacper Kornet <draenog/at/pld-linux.org>
242
243 * lib/functions: - fix daemon --user --fork as they conflicted with
244 each other
245
2462012-01-13 13:32 +0000 [r12466] Jan Rękorajski <baggins/at/pld-linux.org>
247
248 * rc.d/init.d/network: - stable sort for BOOTPRIO= devices, so vlan
249 ifaces will be after their NIC eth counterparts - treat macvlan
250 and macvtap interfaces specially - they may be created on almost
251 enything
252
2532011-12-16 08:47 +0000 [r12455] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
254
255 * rc.d/rc.sysinit: vgscan/vgmknodes/vgdisplay don't support
256 --sysinit option. Back to ignorelocking for these.
257
2582011-12-15 18:17 +0000 [r12454] Elan Ruusamäe <glen/at/pld-linux.org>
259
4ca37ca2 260 * init/cpusets.conf, init/allowlogin.conf, init/sys-chroots.conf:
a2ee7529
JR
261 nicely stop, without error
262
2632011-12-14 17:15 +0000 [r12453] Elan Ruusamäe <glen/at/pld-linux.org>
264
265 * lib/functions: - ksh did not like doble minus ("+5--10"), needs
266 spaces ("+5 - -10") to process correctly
267
2682011-12-14 11:33 +0000 [r12451] Elan Ruusamäe <glen/at/pld-linux.org>
269
270 * configure.ac: - 0.4.5.2
271
2d615fcd
ER
2722011-12-14 11:26 +0000 [r12449] Elan Ruusamäe <glen/at/pld-linux.org>
273
274 * changelog.sh: - be sure users file is up to date
275
2762011-12-14 07:59 +0000 [r12448] Elan Ruusamäe <glen/at/pld-linux.org>
277
278 * init/local.conf: doc bits
279
2802011-12-12 10:38 +0000 [r12447] Elan Ruusamäe <glen/at/pld-linux.org>
281
282 * lib/functions: daemon(): make nice level absolute, not to be
283 dependant of nice level of shell where service started.
284
2852011-12-09 21:25 +0000 [r12446] Tomasz Pala <gotar/at/pld-linux.org>
286
287 * rc.d/init.d/network: - systemd support: export partial jobs,
288 leave ifup/ifdown to separate services
289
2902011-12-04 14:36 +0000 [r12437] Artur Frysiak <wiget/at/pld-linux.org>
291
a2ee7529 292 * man/fstab-decode.8 (removed), man/Makefile.am: Drop fstab-decode
2d615fcd
ER
293 man page
294
2952011-12-04 02:42 +0000 [r12436] Artur Frysiak <wiget/at/pld-linux.org>
296
4ca37ca2 297 * src/Makefile.am, src/fstab-decode.c (removed): fstab-decode is
2d615fcd
ER
298 part of SysVinit-tools
299
3002011-11-29 18:05 +0000 [r12421] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
301
302 * rc.d/init.d/netfs: Don't mount devpts again.
303
3042011-11-28 19:47 +0000 [r12420] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
305
306 * rc.d/rc.sysinit: Make forced mounts quiet in case /etc/mtab is
307 symlink to /proc/self/mounts.
308
3092011-11-15 21:38 +0000 [r12414] Elan Ruusamäe <glen/at/pld-linux.org>
310
311 * sysconfig/system: spelling typo
312
3132011-11-01 14:01 +0000 [r12405] Jan Rękorajski <baggins/at/pld-linux.org>
314
315 * modules.preudev: - typo
316
3172011-11-01 13:39 +0000 [r12404] Jan Rękorajski <baggins/at/pld-linux.org>
318
319 * rc.d/rc.sysinit: - fix LVM2 check logic
320
3212011-10-31 19:52 +0000 [r12403] Jan Rękorajski <baggins/at/pld-linux.org>
322
323 * modules.preudev: - set props
324
3252011-10-31 19:30 +0000 [r12402] Jan Rękorajski <baggins/at/pld-linux.org>
326
327 * rc.d/rc.sysinit: - give some info what's going on when loading
328 modules
329
3302011-10-31 19:26 +0000 [r12401] Jan Rękorajski <baggins/at/pld-linux.org>
331
332 * modules.preudev (added): - example file
333
3342011-10-31 19:19 +0000 [r12400] Jan Rękorajski <baggins/at/pld-linux.org>
335
336 * rc.d/rc.sysinit: - give admin the ability to load some kernel
337 modules before udev kicks in
338
3392011-10-31 19:12 +0000 [r12399] Jan Rękorajski <baggins/at/pld-linux.org>
340
341 * sysconfig/system, rc.d/rc.sysinit: - give user ability to disable
342 linux multipath drivers and daemons
343
3442011-10-31 18:53 +0000 [r12398] Jan Rękorajski <baggins/at/pld-linux.org>
345
346 * rc.d/rc.sysinit: - functions are in /lib/rc-scripts
347
3482011-10-23 19:26 +0000 [r12388-12389] Elan Ruusamäe <glen/at/pld-linux.org>
349
b30f8040 350 * rc.d/rc.sysinit, init/Makefile.am, init/modules.conf (added):
2d615fcd
ER
351 load /etc/modules in upstart
352
353 * rc.d/rc.shutdown: emit shutdown events
354
3552011-10-23 11:21 +0000 [r12387] Elan Ruusamäe <glen/at/pld-linux.org>
356
357 * init/rcS-sulogin.conf: respect RUN_SULOGIN_ON_ERR from
358 /etc/sysconfig/system
359
3602011-10-10 07:49 +0000 [r12369-12370] Elan Ruusamäe <glen/at/pld-linux.org>
361
362 * TODO: upstart compatible is service up todo
363
364 * doc/upstart.txt: shutdown started/starting upstart event doc
365
3662011-10-09 22:58 +0000 [r12368] Elan Ruusamäe <glen/at/pld-linux.org>
367
368 * modules: point out the parameters use fact
369
3702011-10-09 18:57 +0000 [r12367] Elan Ruusamäe <glen/at/pld-linux.org>
371
372 * rc.d/rc.shutdown: emit shutdown starting/started event
373
3742011-10-09 18:14 +0000 [r12366] Elan Ruusamäe <glen/at/pld-linux.org>
375
b30f8040 376 * doc/upstart.txt, init/rc.conf, rc.d/init.d/network: let "network"
2d615fcd
ER
377 emit network starting/stopping/started/stopped events as well
378
3792011-10-09 17:35 +0000 [r12364-12365] Elan Ruusamäe <glen/at/pld-linux.org>
380
381 * doc/upstart.txt: chop trailing spaces
382
383 * rc.d/rc.sysinit: fix handling 3.x.y kernels
384
3852011-10-05 14:47 +0000 [r12363] Elan Ruusamäe <glen/at/pld-linux.org>
386
b30f8040 387 * rc.d/init.d/local, init/Makefile.am, init/local.conf (added):
2d615fcd
ER
388 upstart for rc.local
389
3902011-09-30 10:54 +0000 [r12360] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
391
4ca37ca2 392 * rc.d/rc.sysinit, rc.d/rc.shutdown: Use --sysinit for lvm. When
2d615fcd
ER
393 stopping hide error messages (normal for many cases like lvm on
394 rootfs).
395
8ba1c6cb
AM
3962011-09-27 07:15 +0000 [r12356-12357] Jan Rękorajski <baggins/at/pld-linux.org>
397
398 * configure.ac: - 0.4.5.1
399
400 * rc.d/rc.sysinit: - fix $LVM2 variable fuckup (use is_no instead
401 of is_yes) (glen, you moron, have you considered a possibility
402 that $LVM2 will land in sysconfig.rpmsave, thus making lvm
403 dependant system non-bootable?)
404
119f33b0
ER
4052011-09-25 09:57 +0000 [r12351-12352] Elan Ruusamäe <glen/at/pld-linux.org>
406
407 * po/Makefile.am: just in case C locale
408
409 * po/rc-scripts.pot: updated
410
4112011-09-22 15:45 +0000 [r12350] Jan Rękorajski <baggins/at/pld-linux.org>
412
413 * rc.d/rc.sysinit: - properly mount /run and put it into mtab
414
4152011-09-18 20:34 +0000 [r12349] Artur Frysiak <wiget/at/pld-linux.org>
416
417 * rc.d/rc.sysinit: Mount /run ASAP
418
4192011-09-11 20:08 +0000 [r12347] Elan Ruusamäe <glen/at/pld-linux.org>
420
421 * init/cryptsetup.conf (added), init/Makefile.am: Add cryptsetup
422
4232011-09-11 20:00 +0000 [r12344] Elan Ruusamäe <glen/at/pld-linux.org>
424
425 * rc.d/init.d/cryptsetup: local vars
426
4272011-09-11 19:53 +0000 [r12342-12343] Elan Ruusamäe <glen/at/pld-linux.org>
428
429 * init/Makefile.am: Add allowlogin, sys-chroots, cpusets
430
431 * init/cpusets.conf (added): Add cpusets
432
4332011-09-11 11:29 +0000 [r12341] Elan Ruusamäe <glen/at/pld-linux.org>
434
435 * service: print unknown state to stdout as well
436
4372011-09-02 06:18 +0000 [r12339-12340] Elan Ruusamäe <glen/at/pld-linux.org>
438
b30f8040
AM
439 * rc.d/init.d/sys-chroots, init/allowlogin.conf (added),
440 rc.d/init.d/allowlogin, init/sys-chroots.conf (added): add
119f33b0
ER
441 allowlogin and sys-chroots upstart parts, altho no stop for them
442
443 * sysconfig/system, rc.d/rc.sysinit: add $LVM2 allows you to
444 disable LVM2 if your only LVM volume is rootfs started on initrd
445 and want faster startup
446
4472011-09-02 06:08 +0000 [r12338] Elan Ruusamäe <glen/at/pld-linux.org>
448
449 * sysconfig/interfaces/Makefile.am: Add ifcfg-ppp0.pppoe
450
4512011-08-31 18:44 +0000 [r12337] Elan Ruusamäe <glen/at/pld-linux.org>
452
453 * lib/functions: upstart: behave like current initscripts: print
454 running/not running instead of silence
455
4562011-08-31 16:24 +0000 [r12336] Elan Ruusamäe <glen/at/pld-linux.org>
457
b30f8040
AM
458 * rc.d/init.d/functions (removed), rc.d/init.d/Makefile.am,
459 po/rc-scripts.pot, lib/functions (added), lib/Makefile.am: move
460 also functions to /lib/rc-scripts (symlink preserved)
119f33b0
ER
461
4622011-08-19 19:56 +0000 [r12331] Elan Ruusamäe <glen/at/pld-linux.org>
463
464 * rc.d/init.d/functions: formatting
465
4662011-08-19 19:44 +0000 [r12328-12330] Elan Ruusamäe <glen/at/pld-linux.org>
467
468 * rc.d/init.d/local: add starting line
469
470 * rc.d/rc.sysinit: prefer local code over io checks (boot splash
471 unlikely enabled anyway)
472
473 * rc.d/init.d/functions: avoid shift() error when program called
474 with no actions in _upstart_controlled; tabs
475
4762011-08-14 19:45 +0000 [r12323] Elan Ruusamäe <glen/at/pld-linux.org>
477
478 * init/rc.conf: register pld.sysinit-done to satisfy initctl
479 check-config
480
4812011-08-14 12:03 +0000 [r12321-12322] Elan Ruusamäe <glen/at/pld-linux.org>
482
b30f8040 483 * sysconfig/interfaces/ifcfg-ppp0.kou, changelog.sh, rc.d/rc.init:
119f33b0
ER
484 add missing keyword expansion
485
4ca37ca2
JR
486 * rc.d/init.d, sysconfig/interfaces/down.d/tnl,
487 sysconfig/interfaces/down.d/ppp, sysconfig/interfaces/down.d/ipx,
488 sysconfig/interfaces/down.d, rc.d, src,
489 sysconfig/interfaces/down.d/all, sysconfig/interfaces/down.d/ip,
490 sysconfig/interfaces/up.d/tnl, isapnp,
491 sysconfig/interfaces/up.d/ppp, sysconfig/interfaces/up.d/ipx,
492 sysconfig/interfaces/up.d, ppp, /, sysconfig, doc,
493 sysconfig/interfaces/up.d/all, sysconfig/interfaces/up.d/ip, lib:
119f33b0
ER
494 svn:ignore fixups
495
4962011-08-14 11:56 +0000 [r12319-12320] Elan Ruusamäe <glen/at/pld-linux.org>
497
4ca37ca2
JR
498 * doc/Makefile.am, doc/template.init (added),
499 rc.d/init.d/Makefile.am, rc.d/init.d/template.init (removed),
500 po/rc-scripts.pot: move template.init to doc
119f33b0 501
4ca37ca2 502 * sysconfig/.cvsignore (removed), doc/.cvsignore (removed),
a2ee7529
JR
503 sysconfig/interfaces/up.d/all/.cvsignore (removed), rc.d,
504 sysconfig/interfaces/down.d/all, sysconfig/interfaces/down.d/ip,
505 sysconfig/interfaces/up.d/tnl, sysconfig/interfaces/up.d/ppp,
506 sysconfig/interfaces/up.d/ipx,
507 sysconfig/interfaces/down.d/ipx/.cvsignore (removed), /,
508 sysconfig, sysconfig/interfaces/up.d/ip, isapnp/.cvsignore
509 (removed), sysconfig/interfaces/up.d/ipx/.cvsignore (removed),
510 ppp/ip-up.d, rc.d/init.d, ppp/ip-down.d/.cvsignore (removed),
119f33b0 511 sysconfig/interfaces/data/.cvsignore (removed),
a2ee7529
JR
512 sysconfig/interfaces/down.d/tnl, sysconfig/interfaces/down.d/ppp,
513 sysconfig/interfaces/down.d/ipx,
514 sysconfig/interfaces/up.d/ip/.cvsignore (removed), lib/.cvsignore
515 (removed), src, rc.d/init.d/.cvsignore (removed),
516 ppp/ip-up.d/.cvsignore (removed), isapnp,
119f33b0 517 sysconfig/interfaces/down.d/tnl/.cvsignore (removed),
a2ee7529 518 po/.cvsignore (removed),
119f33b0 519 sysconfig/interfaces/down.d/ppp/.cvsignore (removed),
a2ee7529
JR
520 sysconfig/interfaces/down.d/.cvsignore (removed),
521 sysconfig/interfaces/up.d, ppp/ip-down.d, ppp,
522 sysconfig/hwprofiles/.cvsignore (removed), rc.d/.cvsignore
523 (removed), src/.cvsignore (removed),
524 sysconfig/interfaces/.cvsignore (removed),
119f33b0 525 sysconfig/interfaces/down.d/all/.cvsignore (removed),
a2ee7529
JR
526 sysconfig/interfaces/down.d/ip/.cvsignore (removed), doc,
527 sysconfig/interfaces/up.d/all, lib,
119f33b0 528 sysconfig/interfaces/up.d/tnl/.cvsignore (removed),
119f33b0 529 sysconfig/interfaces/up.d/ppp/.cvsignore (removed),
a2ee7529 530 sysconfig/interfaces/up.d/.cvsignore (removed), ppp/.cvsignore
4ca37ca2
JR
531 (removed), .cvsignore (removed), po, sysconfig/interfaces/down.d:
532 convert .cvsignore to svn:ignore
119f33b0
ER
533
5342011-08-14 11:48 +0000 [r12318] Elan Ruusamäe <glen/at/pld-linux.org>
535
536 * TODO: privilege check is done with unix file permissions: scripts
537 just not executable for regular user
538
5392011-08-14 11:42 +0000 [r12310-12317] Elan Ruusamäe <glen/at/pld-linux.org>
540
b30f8040 541 * po/rc-scripts.pot, po/Makefile.am: add makepot.pl to EXTRA_DIST
119f33b0 542
b30f8040 543 * makepot.pl (removed), po/Makefile.am, po/makepot.pl (added): move
119f33b0
ER
544 makepot to po/ dir with rest of it's files
545
b30f8040 546 * po/pl.po, po/rc-scripts.pot, rc.d/init.d/random, po/de.po: - fix
119f33b0
ER
547 bad nls usage
548
b30f8040 549 * po/pl.po, po/de.po: utf8 to rule the world
119f33b0 550
b30f8040 551 * po/pl.po, po/de.po: - updated
119f33b0
ER
552
553 * po/rc-scripts.pot: - updated
554
555 * po/rc-scripts.pot (added): track to see new strings to appear or
556 not
557
b30f8040
AM
558 * lib/ifdown-post, lib/Makefile.am, ppp/auth-up,
559 sysconfig/network-scripts (removed), ppp/ip-up, lib/ifdown-ppp,
560 lib/ifup-post, doc/net-scripts.txt, configure.ac, ppp/auth-down,
561 lib/tnlup, lib/ifdown-sl, lib/ifdown-irda, lib/ifup, Makefile.am,
562 ppp/ip-down, sysconfig/Makefile.am, lib/ifup-iucv, ppp/ipx-up,
563 lib/ifup-sl, lib/ifup-irda, lib/ifdown-vlan, lib/tnldown,
564 lib/ifdown, lib/ifup-plusb, lib/ifdown-br, ppp/ipx-down,
565 rc.d/init.d/network, lib/ifup-ppp, lib (added), lib/ifup-ipx,
566 lib/ifup-vlan, man/usernetctl.8, lib/ifup-br, lib/ifup-plip,
567 src/ppp-watch.c: - move network scripts to /lib, as none of them
568 are config files - version 0.4.5 for such major change
119f33b0
ER
569
5702011-08-14 11:11 +0000 [r12308-12309] Elan Ruusamäe <glen/at/pld-linux.org>
571
572 * configure.ac: fatal out when required tools missing, some ac fix
573
574 * src/setuidgid.c: PLD Linux
575
5762011-08-14 09:56 +0000 [r12307] Elan Ruusamäe <glen/at/pld-linux.org>
577
578 * init/random.conf, init/rc.conf, init/rcS-sulogin.conf,
579 init/rcS.conf: our vim-syntax-upstart recognizes the filetype
580 itself
581
5822011-08-13 13:51 +0000 [r12305] Elan Ruusamäe <glen/at/pld-linux.org>
583
584 * po/Makefile.am: Do not ignore errors
585
5862011-08-13 13:42 +0000 [r12304] Elan Ruusamäe <glen/at/pld-linux.org>
587
588 * sysconfig/network-scripts/functions.network: emit net-device-up
589 events, so upstart-socket-bridge could function
590
5912011-08-13 06:04 +0000 [r12303] Elan Ruusamäe <glen/at/pld-linux.org>
592
593 * rc.d/init.d/functions: allow $USE_UPSTART from env to preceed
594 USE_UPSTART from sysconfig/system
595
5962011-07-25 06:10 +0000 [r12270-12271] Elan Ruusamäe <glen/at/pld-linux.org>
597
b30f8040 598 * doc/net-scripts.txt, sysconfig/network-scripts/ifup: - add
119f33b0
ER
599 $ETHTOOL_OPTS
600
601 * TODO: - todo from arekm
602
6032011-07-21 10:28 +0000 [r12264] Elan Ruusamäe <glen/at/pld-linux.org>
604
605 * service: - include service type in --status-all
606
6072011-07-18 13:11 +0000 [r12260] Elan Ruusamäe <glen/at/pld-linux.org>
608
609 * rc.d/init.d/functions: - fuser is in /bin since psmisc-22.5-2
610
6112011-06-28 19:51 +0000 [r12254] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
612
613 * sysconfig/system: Explain what VSERVER is.
614
6152011-06-27 10:18 +0000 [r12252-12253] Jan Rękorajski <baggins/at/pld-linux.org>
616
617 * rc.d/init.d/functions: - fix local variable
618
619 * rc.d/init.d/functions: - fix kernelver* functions
620
6212011-06-26 10:48 +0000 [r12250] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
622
623 * rc.d/rc.sysinit: Mount securityfs based on it's availability
624 only.
625
6262011-06-20 15:04 +0000 [r12247] Elan Ruusamäe <glen/at/pld-linux.org>
627
628 * rc.d/init.d/functions: - compat mode for old kernels, where
629 network lock was not touched
630
6312011-06-16 12:32 +0000 [r12246] Jacek Konieczny <jajcus/at/pld-linux.org>
632
633 * init/Makefile.am, configure.ac: - the missing init/udev.conf
634 added to dist
635
fe53727a
JK
6362011-06-15 13:12 +0000 [r12245] Jacek Konieczny <jajcus/at/pld-linux.org>
637
638 * configure.ac: - Version: 0.4.4.2
639
418f97b9
JK
6402011-06-15 12:45 +0000 [r12244] Jacek Konieczny <jajcus/at/pld-linux.org>
641
b30f8040
AM
642 * init/rcS.conf, init/udev.conf (added), init/rc.conf,
643 rc.d/rc.sysinit: - some more 'emits' and a dummy Upstart job
644 added so the new 'initctl check-config' won't complain.
418f97b9
JK
645
6462011-06-15 10:51 +0000 [r12243] Jacek Konieczny <jajcus/at/pld-linux.org>
647
648 * doc/upstart.txt: - upstart usage docs updates
649
6502011-04-18 09:50 +0000 [r12230] Elan Ruusamäe <glen/at/pld-linux.org>
651
652 * service: remove debug
653
6542011-04-14 09:42 +0000 [r12228] Jacek Konieczny <jajcus/at/pld-linux.org>
655
656 * sysconfig/network-scripts/functions.network: - make sure the
657 default ip rules are preserved over network restart even if 'ip
658 rule show' displays them using numeric table values. I have a
659 system where 'from all lookup 255' is returned instead of 'from
660 all lookup local' for unknown reason, but it could also happen if
661 /etc/iproute2/rt_tables file is missing or corrupted. And bad
662 things happen (IPv4 not working) if the 'lookup local' rule is
663 missing.
664
6652011-04-08 19:15 +0000 [r12223] Elan Ruusamäe <glen/at/pld-linux.org>
666
667 * service: move status all to function
668
6692011-03-29 13:26 +0000 [r12219] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
670
671 * sysconfig/network-scripts/functions.network: Revert disabling
672 IPv6. Unfortunately it disables only IPv6 addresses while
673 socket(AF_INET6,...) still succeeds creating ill efect.
674
6752011-03-25 16:55 +0000 [r12215] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
676
677 * sysconfig/network-scripts/functions.network: Set sysctl value
678 quietly.
679
6802011-03-23 21:45 +0000 [r12214] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
681
682 * sysconfig/network-scripts/functions.network: One more fix.
683
6842011-03-23 20:42 +0000 [r12213] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
685
686 * sysconfig/network-scripts/functions.network: Really disable IPv6.
687
6882011-03-23 20:35 +0000 [r12212] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
689
690 * sysconfig/network-scripts/functions.network: Disable IPv6 if it
691 is not enabled in config.
692
6932011-03-21 22:15 +0000 [r12211] Jan Rękorajski <baggins/at/pld-linux.org>
694
4ca37ca2 695 * doc/sysconfig.txt, sysconfig/Makefile.am, doc/sysconfig.docb,
a2ee7529 696 sysconfig/network-scripts/functions.network,
4ca37ca2
JR
697 sysconfig/network-scripts/ifup-routes: - add static-routes6
698 support (IPv6-only ip routes and rules)
418f97b9
JK
699
7002011-03-21 20:30 +0000 [r12210] Jan Rękorajski <baggins/at/pld-linux.org>
701
702 * sysconfig/static-routes6 (added): - IPv6 specific rules and
703 routes, rationale: some rules (and even routes) are addressless
704 (e.g. fwmark or 'default' route), because of this simple ip
705 <rule> won't handle IPv6, we have to use ip -6 <rule>
706
fc8618c0
JR
7072011-03-20 01:00 +0000 [r12206-12207] Jan Rękorajski <baggins/at/pld-linux.org>
708
709 * configure.ac: - 0.4.4.1, fixes typo in set_up_loopback
710
711 * sysconfig/network-scripts/functions.network: - use proper device
712
4893a37b
JR
7132011-03-20 00:09 +0000 [r12203] Jan Rękorajski <baggins/at/pld-linux.org>
714
715 * configure.ac: - 0.4.4.0
716
7172011-03-19 23:57 +0000 [r12202] Jan Rękorajski <baggins/at/pld-linux.org>
718
719 * src/Makefile.am, configure.ac: - fix glib2 static linking
720
7212011-03-18 18:19 +0000 [r12201] Jan Rękorajski <baggins/at/pld-linux.org>
722
723 * sysconfig/network-scripts/functions.network: - setup static
724 routes for loopback, see
725 http://wiki.squid-cache.org/Features/Tproxy4 why this is needed
726
7272011-03-08 20:49 +0000 [r12198] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
728
729 * sysconfig/network-scripts/functions.network,
730 rc.d/init.d/functions: Revert previous commit. Fix is_module
731 instead to do not match partial module names.
732
7332011-03-08 20:34 +0000 [r12197] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
734
735 * sysconfig/network-scripts/functions.network: Load ipv6 and ipx
736 only when not built into kernel.
737
7382011-03-04 13:37 +0000 [r12188] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
739
740 * sysconfig/network-scripts/ifup-vlan: GVRP default on on vlans
741
7422011-02-19 16:03 +0000 [r12170] Elan Ruusamäe <glen/at/pld-linux.org>
743
744 * service: - tabs
745
7462011-02-10 16:37 +0000 [r12138] Jan Rękorajski <baggins/at/pld-linux.org>
747
748 * rc.d/init.d/cpusets: - added missing slash
749
7502011-02-10 12:46 +0000 [r12136] Jan Rękorajski <baggins/at/pld-linux.org>
751
752 * rc.d/init.d/cpusets: - don't try to find out the subsystem type
753 if none is mounted
754
7552011-02-10 12:26 +0000 [r12135] Jan Rękorajski <baggins/at/pld-linux.org>
756
757 * rc.d/init.d/cpusets: - silence mkdir
758
7592011-02-10 12:21 +0000 [r12134] Jan Rękorajski <baggins/at/pld-linux.org>
760
761 * rc.d/init.d/cpusets: - always mount on /dev/cpuset (only cpuset
762 is supported by this script) - check if mount point is proper
763 cpuset/cgroup(cpuset) subsys
764
7652011-02-10 12:12 +0000 [r12133] Jan Rękorajski <baggins/at/pld-linux.org>
766
767 * rc.d/init.d/cpusets: - mount only cpuset subsys cgroup - no need
768 to parse and check fstab as this script is run after rc.sysinit
769 mounts all filessystems listed there
770
7712011-02-10 11:04 +0000 [r12128-12130] Jan Rękorajski <baggins/at/pld-linux.org>
772
773 * rc.d/init.d/cpusets: - put cpuset/cgroup mounts in mtab
774
775 * rc.d/init.d/cpusets: - exit from script if no cpuset/cgroup
776 support in kernel
777
b30f8040 778 * rc.d/rc.sysinit, rc.d/init.d/cpusets: - moved cpuset/cgroup
4893a37b
JR
779 mounting code into cpuset startup script for seamless
780 interoperability with libcgroup
781
7822011-02-09 10:55 +0000 [r12126] Elan Ruusamäe <glen/at/pld-linux.org>
783
784 * rc.d/init.d/functions: add killproc -p alias
785
7862011-01-27 06:04 +0000 [r12089-12090] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
787
788 * sysconfig/Makefile.am: sysconfig/clock is gone
789
b30f8040
AM
790 * sysconfig/clock (removed), doc/sysconfig.docb, doc/sysconfig.txt,
791 rc.d/rc.sysinit: sysconfig/clock and related actions are obsolete
792 now. hwclock knows how to handle these based on adjtime settings.
4893a37b
JR
793
7942011-01-27 05:44 +0000 [r12088] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
795
796 * rc.d/rc.sysinit: Check /dev/rtc or /dev/rtc0 existence.
797
01d2987a
AM
7982011-01-25 18:56 +0000 [r12083-12084] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
799
800 * configure.ac: 0.4.3.8
801
802 * autogen.sh: Disabled --enable-maintainer-mode
803 --enable-compile-warnings (unsupported by current auto*).
804
8052011-01-24 18:19 +0000 [r12082] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
806
807 * sysconfig/network: IPv6 networking on by default.
808
8092010-12-22 10:23 +0000 [r12020] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
810
811 * rc.d/init.d/netfs: Don't mount fs inside of vserver guest.
812
8132010-12-22 05:54 +0000 [r12019] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
814
815 * rc.d/rc.sysinit: cgroup/cpuset can exist in fstab but be
816 commented out. Handle that.
817
8182010-12-20 18:09 +0000 [r12014] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
819
820 * rc.d/init.d/cryptsetup: started instead of busy
821
03ba16fb
ER
8222010-12-12 17:42 +0000 [r11982-11983] Elan Ruusamäe <glen/at/pld-linux.org>
823
824 * configure.ac: - 0.4.3.7
825
826 * rc.d/init.d/functions: add --user support to run_cmd Usage:
827 run_cmd --user stats "Message" command_to_run arg1 arg2...
828
8292010-12-07 14:08 +0000 [r11973] Elan Ruusamäe <glen/at/pld-linux.org>
830
831 * rc.d/init.d/template.init: - pidfile var
832
8332010-12-03 13:10 +0000 [r11940] Elan Ruusamäe <glen/at/pld-linux.org>
834
835 * rc.d/init.d/netfs: - some formatting, respect to use functios
836 (RETVAL variable vs exit calls)
837
8382010-12-03 13:04 +0000 [r11939] Elan Ruusamäe <glen/at/pld-linux.org>
839
840 * rc.d/init.d/netfs: - use functions
841
899ef1b3
AM
8422010-12-03 11:43 +0000 [r11936] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
843
844 * configure.ac: 0.4.3.6
845
8462010-12-03 11:33 +0000 [r11934-11935] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
847
848 * rc.d/init.d/netfs: Bugfix (bring in cryptsetup; cleanups).
849
850 * rc.d/init.d/netfs: Bugfix.
851
8522010-12-03 10:37 +0000 [r11933] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
853
854 * rc.d/init.d/Makefile.am, rc.d/init.d/network: Bring in netfs.
855
8562010-12-03 10:33 +0000 [r11930-11932] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
857
858 * rc.d/init.d/netfs: : not needed.
859
860 * TODO: - better umount on stop
861
862 * rc.d/init.d/netfs: Bugfixes. Seems to be working fine.
863
8642010-12-03 10:25 +0000 [r11929] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
865
866 * rc.d/init.d/functions: __umount_*loop from FC.
867
8682010-12-03 10:15 +0000 [r11928] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
869
870 * rc.d/init.d/netfs: Don't touch nfs if we have separate nfsfs
871 script.
872
8732010-12-03 09:38 +0000 [r11927] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
874
875 * rc.d/init.d/netfs (added): Networked filesystems mount/umount.
876 Unfinished.
877
8782010-12-02 15:30 +0000 [r11922] Elan Ruusamäe <glen/at/pld-linux.org>
879
880 * rc.d/rc.sysinit: - avoid crypto init retries if no crypttab is
881 setup
882
8832010-11-25 23:54 +0000 [r11913] Jan Rękorajski <baggins/at/pld-linux.org>
884
885 * rc.d/rc.sysinit: - don't mount cgroup if it's set up in fstab
886 http://lists.pld-linux.org/mailman/pipermail/pld-devel-pl/2010-November/152970.html
887 BTW, all this kinda sucks and needs revamp :(
888
8892010-11-07 19:54 +0000 [r11900] Elan Ruusamäe <glen/at/pld-linux.org>
890
891 * rc.d/rc.sysinit: - init crypt mounts also after lvm has been run
892
784a8e4f
AM
8932010-11-06 10:47 +0000 [r11894] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
894
895 * configure.ac: Release 0.4.3.5.
896
8972010-11-06 09:57 +0000 [r11893] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
898
899 * rc.d/init.d/network, sysconfig/system, rc.d/init.d/functions:
900 Detect isolation only vserver networking. New variable -
901 VSERVER_ISOLATION_NET.
902
9032010-11-06 09:12 +0000 [r11892] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
904
905 * rc.d/rc.sysinit: Silent modprobe.
906
48637c0c
AM
9072010-11-06 08:43 +0000 [r11889] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
908
909 * configure.ac: Release 0.4.3.4.
910
9112010-11-06 00:33 +0000 [r11888] Jan Rękorajski <baggins/at/pld-linux.org>
912
913 * rc.d/rc.sysinit: - create /dev/cgroup (see comment)
914
9152010-11-06 00:26 +0000 [r11887] Jan Rękorajski <baggins/at/pld-linux.org>
916
917 * rc.d/init.d/cpusets: - use full blown cgroup subsystem if
918 available
919
9202010-11-06 00:11 +0000 [r11886] Jan Rękorajski <baggins/at/pld-linux.org>
921
922 * rc.d/rc.sysinit: - if cgroup is available use all its subsystems
923 instead of just cpusets
924
9252010-11-06 00:07 +0000 [r11885] Jan Rękorajski <baggins/at/pld-linux.org>
926
927 * rc.d/rc.sysinit: - commit at rev 10523 was completely bogus,
928 preventing mounting cpuset at all, as default fstab contains
929 cpuset line with noauto option
930
9312010-10-09 21:21 +0000 [r11840] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
932
933 * src/initlog.c: Update initlog from initscripts.
934
9352010-10-06 08:03 +0000 [r11831] Elan Ruusamäe <glen/at/pld-linux.org>
936
937 * rc.d/init.d/template.init: - procname
938
9392010-10-06 07:58 +0000 [r11830] Elan Ruusamäe <glen/at/pld-linux.org>
940
941 * rc.d/init.d/template.init: - killproc wants procname mostly
942
9432010-09-30 04:26 +0000 [r11823] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
944
945 * rc.d/rc: Fix 'local: można używać tylko w funkcji' on bash.
946
9472010-09-19 18:38 +0000 [r11812] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
948
949 * rc.d/rc.sysinit: Make sysctl quiet.
950
2d615fcd 9512010-09-03 09:07 +0000 [r11801] shadzik <shadzik/at/pld-linux.org>
48637c0c
AM
952
953 * rc.d/rc.sysinit: - don't check the fs on aufs and squashfs
954 systems
955
9562010-08-26 10:30 +0000 [r11789] Elan Ruusamäe <glen/at/pld-linux.org>
957
958 * rc.d/rc.sysinit: - use /var/log/boot.log, to match with plymouth
959 path
960
9612010-08-21 18:00 +0000 [r11788] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
962
963 * rc.d/rc.sysinit: Set firmware-loader also when udev is off.
964
9652010-08-01 16:32 +0000 [r11741] Elan Ruusamäe <glen/at/pld-linux.org>
966
967 * sysconfig/i18n: - plain en with utf8
968
9692010-08-01 16:13 +0000 [r11739] Elan Ruusamäe <glen/at/pld-linux.org>
970
971 * rc.d/rc.sysinit: - skip lock when making nodes on boot
972
9732010-08-01 16:08 +0000 [r11738] Elan Ruusamäe <glen/at/pld-linux.org>
974
975 * rc.d/rc.sysinit: - check_root_fs to function for readability
976
9772010-08-01 15:58 +0000 [r11735-11737] Elan Ruusamäe <glen/at/pld-linux.org>
978
979 * rc.d/rc.sysinit: - remove locale setup where it is pointless
980 (grep for fixed strings, and cat)
981
982 * rc.d/init.d/template.init: - sample for status with pidfile
983
984 * rc.d/rc.sysinit: - skip unneccesary subshell
985
9862010-07-26 13:31 +0000 [r11715] Jacek Konieczny <jajcus/at/pld-linux.org>
987
988 * sysconfig/network-scripts/ifup: - typo
989
9902010-07-26 13:20 +0000 [r11714] Jacek Konieczny <jajcus/at/pld-linux.org>
991
992 * sysconfig/network-scripts/ifup: - allow per-interface
993 configuration files for dhclient.conf – single config file with
994 'interface' directive(s) conflicts with interface name given on
995 the command line.
996
9972010-07-21 08:23 +0000 [r11688] Elan Ruusamäe <glen/at/pld-linux.org>
998
999 * rc.d/init.d/allowlogin: - functions, exit early if disabled
1000
10012010-07-20 08:42 +0000 [r11684] Elan Ruusamäe <glen/at/pld-linux.org>
1002
1003 * rc.d/rc.shutdown: - ugly hack to still do killall as pgrep is on
1004 /usr, or rather drop pgrep as it never returns empty nowadays due
1005 kernel threads?
1006
10072010-07-08 10:47 +0000 [r11638-11639] Elan Ruusamäe <glen/at/pld-linux.org>
1008
b30f8040
AM
1009 * rc.d/init.d/cpusets, rc.d/init.d/network, rc.d/init.d/local,
1010 rc.d/init.d/random, rc.d/init.d/single: - ignore /var/lock/subsys
a2ee7529 1011 remove readonly fs errors (after fsck wants to reboot system)
48637c0c 1012
b30f8040
AM
1013 * rc.d/init.d/cpusets, rc.d/init.d/allowlogin, rc.d/init.d/network,
1014 rc.d/init.d/random, rc.d/init.d/single, rc.d/init.d/killall: -
1015 executable initscripts
48637c0c 1016
418f97b9 10172010-06-18 06:40 +0000 [r11565] Bartłomiej Zimoń <cactus/at/pld-linux.org>
48637c0c
AM
1018
1019 * rc.d/rc.shutdown: - fix shutdown/restart on kernels with devtmpfs
1020
10212010-06-15 11:37 +0000 [r11562] Jacek Konieczny <jajcus/at/pld-linux.org>
1022
1023 * changelog.sh: - changelog.sh script improved and ChangeLog
1024 updated
1025
2165e21a
JK
10262010-06-15 11:33 +0000 [r11561] Jacek Konieczny <jajcus/at/pld-linux.org>
1027
1028 * configure.ac: - firmwaredir was wrong
1029
10302010-06-15 11:17 +0000 [r11558-11559] Jacek Konieczny <jajcus/at/pld-linux.org>
1031
1032 * configure.ac: - Version: 0.4.3.3
1033
b30f8040 1034 * Makefile.am, configure.ac: - firmwaredir relative to
2165e21a
JK
1035 ${exec_prefix} to fix 'make distcheck'
1036
e3728239
JK
10372010-06-15 10:13 +0000 [r11557] Jacek Konieczny <jajcus/at/pld-linux.org>
1038
b30f8040 1039 * sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown:
e3728239
JK
1040 - allow multiple dhclient instances running on one machine
1041
10422010-06-14 17:25 +0000 [r11555-11556] Elan Ruusamäe <glen/at/pld-linux.org>
1043
1044 * rc.d/init.d/random: - reorganize into functions
1045
1046 * rc.d/init.d/random: - do not touch host random inside vserver
1047 (discussed with baggins and arekm long time ago)
1048
10492010-06-08 09:01 +0000 [r11552] Jacek Konieczny <jajcus/at/pld-linux.org>
1050
1051 * rc.d/init.d/functions: - /proc/cmdline may be unavailable (like
1052 in a VServer) make cat quiet in such case
1053
10542010-05-18 12:13 +0000 [r11476] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1055
1056 * sysconfig/network-scripts/ifup: No need for wait loop.
1057 check_link_down sleeps for specified time in 0.5s intervals.
1058
10592010-05-17 20:26 +0000 [r11475] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1060
1061 * sysconfig/network-scripts/ifup,
1062 sysconfig/interfaces/ifcfg-description: Wait for wpa_supplicant
1063 to actually connect to network before trying dhcp.
1064
10652010-05-17 20:20 +0000 [r11474] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1066
1067 * sysconfig/network-scripts/functions.network: Support for max
1068 timeout as parameter.
1069
10702010-05-17 20:16 +0000 [r11473] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1071
1072 * sysconfig/network-scripts/functions.network: Don't rely on ip
1073 link UP checking. Always to mii-tool/ethtool test.
1074
10752010-05-17 19:08 +0000 [r11472] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1076
1077 * sysconfig/network-scripts/ifup: Respect ZEROCONF variable for
1078 dhcpcd.
1079
10802010-05-17 18:08 +0000 [r11471] Elan Ruusamäe <glen/at/pld-linux.org>
1081
1082 * rc.d/init.d/functions: - ok to exit silently in ssd mode of
1083 killproc, no need to noise about missing pidfile
1084
10852010-05-13 07:17 +0000 [r11462] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1086
1087 * Makefile.am: Include/install firmware-loader.sh brought by commit
1088 r10422.
1089
10902010-05-12 07:11 +0000 [r11460] Jacek Konieczny <jajcus/at/pld-linux.org>
1091
1092 * doc/Makefile.am: - include upstart.txt in the package
1093
10942010-05-12 07:08 +0000 [r11459] Jacek Konieczny <jajcus/at/pld-linux.org>
1095
1096 * doc/upstart.txt: - notes about job debuging
1097
10982010-05-11 17:21 +0000 [r11458] Jacek Konieczny <jajcus/at/pld-linux.org>
1099
1100 * configure.ac: - Version: 0.4.3.2
1101
11022010-05-11 10:10 +0000 [r11449] Jacek Konieczny <jajcus/at/pld-linux.org>
1103
1104 * init/Makefile.am: - new listed in Makefile.am
1105
11062010-05-11 08:54 +0000 [r11447] Jacek Konieczny <jajcus/at/pld-linux.org>
1107
1108 * init/rc.conf (added), init/rcS-sulogin.conf (added),
1109 init/rcS.conf (added): - init job descriptions moved from
1110 upstart-SysVinit
1111
11122010-05-10 17:24 +0000 [r11427] Elan Ruusamäe <glen/at/pld-linux.org>
1113
1114 * rc.d/init.d/functions: - note about two modes in daemon
1115
c1dec7e0
JK
11162010-05-10 14:35 +0000 [r11424] Jacek Konieczny <jajcus/at/pld-linux.org>
1117
1118 * configure.ac: - Version: 0.4.3.1
1119
11202010-05-10 14:31 +0000 [r11423] Jacek Konieczny <jajcus/at/pld-linux.org>
1121
b30f8040
AM
1122 * src/start-stop-daemon.c, src/Makefile.am,
1123 man/start-stop-daemon.8, configure.ac, rc.d/init.d/functions: -
1124 'dropcaps' and 'start-stop-daemon-pid-check' patches from
1125 packages/rc-scripts applied
c1dec7e0
JK
1126
11272010-05-10 12:59 +0000 [r11422] Jacek Konieczny <jajcus/at/pld-linux.org>
1128
1129 * rc.d/init.d/functions: - properly quote is_yes() argument
1130
11312010-05-10 11:50 +0000 [r11420] Jacek Konieczny <jajcus/at/pld-linux.org>
1132
1133 * configure.ac: - Version: 0.4.3.0
1134
81597dc1
JK
11352010-05-10 11:23 +0000 [r11419] Jacek Konieczny <jajcus/at/pld-linux.org>
1136
b30f8040
AM
1137 * man/es, sysconfig/network-scripts, sysconfig/interfaces,
1138 sysconfig/interfaces/down.d/all, sysconfig/cpusets, isapnp,
4ca37ca2 1139 sysconfig/interfaces/up.d/tnl, rc.d/rc.sysinit,
b30f8040
AM
1140 rc.d/init.d/random, sysconfig/interfaces/up.d/ppp,
1141 sysconfig/interfaces/up.d/ipx, service, /, configure.ac, man/sv,
1142 man/de, sysconfig, man/ja, Makefile.am, rc.d/init.d,
1143 sysconfig/interfaces/down.d/tnl, po,
1144 sysconfig/interfaces/down.d/ppp, sysconfig/interfaces/down.d/ipx,
1145 man/fr, rc.d/init.d/functions, doc/make-html, doc/upstart.txt
1146 (added), sysconfig/hwprofiles, rc.d, src,
1147 sysconfig/interfaces/down.d/ip, src/setuidgid.c (added), rc.d/rc,
1148 sysconfig/interfaces/up.d, ppp, sysconfig/interfaces/data,
1149 src/Makefile.am, man/ru, init (added), t/backtick-test.sh,
1150 rc.d/init.d/network, rc.d/rc.shutdown,
1151 sysconfig/interfaces/up.d/ip, sysconfig/interfaces/up.d/all, doc,
1152 init/random.conf, man, init/Makefile.am,
1153 sysconfig/interfaces/down.d: - upstart_native branch merged
81597dc1
JK
1154
11552010-05-02 12:16 +0000 [r11364] Jacek Konieczny <jajcus/at/pld-linux.org>
1156
4ca37ca2
JR
1157 * sysconfig/network-scripts/ifup-routes,
1158 sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown,
1159 sysconfig/network, doc/net-scripts.txt,
1160 sysconfig/network-scripts/functions.network: - support for
1161 zeroconf networking (based on information from
81597dc1
JK
1162 http://avahi.org/wiki/AvahiAutoipd#Routes)
1163
11642010-04-21 20:24 +0000 [r11340] Elan Ruusamäe <glen/at/pld-linux.org>
1165
1166 * service: - grab $ACTION variable
1167
11682010-04-21 18:26 +0000 [r11339] Elan Ruusamäe <glen/at/pld-linux.org>
1169
1170 * service: - nicer output (brief) for --status-all ported from
1171 ubuntu
1172
11732010-04-21 18:21 +0000 [r11338] Elan Ruusamäe <glen/at/pld-linux.org>
1174
1175 * service: - identify as pld
1176
11772010-04-07 07:02 +0000 [r11312-11313] Elan Ruusamäe <glen/at/pld-linux.org>
1178
1179 * configure.ac: - release 0.4.2.8
3615ecad
ER
1180
1181 * rc.d/init.d/functions: - add --redirfds similar to --closefds
1182
11832010-04-05 19:18 +0000 [r11309] Elan Ruusamäe <glen/at/pld-linux.org>
1184
1185 * rc.d/init.d/template.init: - tabs
1186
11872010-04-05 19:13 +0000 [r11308] Elan Ruusamäe <glen/at/pld-linux.org>
1188
1189 * rc.d/init.d/template.init: - no need to load service config to
1190 check network state
1191
11922010-02-08 17:34 +0000 [r11137] Jakub Bogusz <qboosh/at/pld-linux.org>
1193
1194 * sysconfig/network-scripts/ifup,
1195 sysconfig/interfaces/ifcfg-description: - WLAN_WPA_DRIVER should
1196 default to wext
1197
11982010-02-08 17:11 +0000 [r11136] Elan Ruusamäe <glen/at/pld-linux.org>
1199
1200 * rc.d/init.d/functions: - skip dead pids in status() with
1201 --pidfile, or is filter_chroot() broken by design?
1202
12032010-02-08 17:06 +0000 [r11135] Elan Ruusamäe <glen/at/pld-linux.org>
1204
1205 * t/status-pidfile.sh (added): - test for status() --pidfile
1206
12072010-02-08 16:51 +0000 [r11134] Elan Ruusamäe <glen/at/pld-linux.org>
1208
a2ee7529 1209 * backtick-test.sh (removed), t (added), t/backtick-test.sh
3615ecad
ER
1210 (added): - move tests to t/
1211
12122010-01-15 13:56 +0000 [r11113] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1213
1214 * rc.d/init.d/functions: Use two separate tests instead of single
1215 double test since bash yells about wrong integer if variable is
1216 empty (and bash can source functions file).
1217
12182010-01-11 10:52 +0000 [r11099] Elan Ruusamäe <glen/at/pld-linux.org>
1219
1220 * changelog.sh: - C locale for consistent changelog
1221
a66d398f
ER
12222010-01-11 09:07 +0000 [r11098] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1223
1224 * sysconfig/system: Drop EVMS_MD since it's not used.
1225
12262010-01-10 22:05 +0000 [r11096] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1227
1228 * configure.ac: Prepare for 0.4.2.7.
1229
95461837
AM
12302009-12-02 19:13 +0000 [r11004] Elan Ruusamäe <glen/at/pld-linux.org>
1231
1232 * rc.d/rc.sysinit: - more reverting baggins buzybox branch changes
1233 regarding hwclock
1234
12352009-11-24 11:07 +0000 [r11001] Tomasz Pala <gotar/at/pld-linux.org>
1236
b30f8040 1237 * rc.d/rc.sysinit, rc.d/rc.shutdown: - having EVMS_LVM=yes without
95461837
AM
1238 the tools doesn't make them work - having EVMS_LVM=no mustn't
1239 prevent plain LVM from bringing up - conclusion: these parts of
1240 code are EVMS_LVM independant
1241
12422009-11-22 23:24 +0000 [r10999] Elan Ruusamäe <glen/at/pld-linux.org>
1243
1244 * rc.d/Makefile.am: - add rc.init back
1245
12462009-11-22 23:14 +0000 [r10998] Elan Ruusamäe <glen/at/pld-linux.org>
1247
1248 * rc.d/rc.init (added): - restore, but this time with some doc too
1249
12502009-11-22 20:39 +0000 [r10996] Elan Ruusamäe <glen/at/pld-linux.org>
1251
1252 * rc.d/rc.sysinit: - hwclock doesn't recognize -l (patch from
1253 devel-en)
1254
12552009-11-22 13:54 +0000 [r10995] Elan Ruusamäe <glen/at/pld-linux.org>
1256
1257 * sysconfig/network-scripts/functions.network: - formatting
1258
12592009-11-22 13:51 +0000 [r10993-10994] Elan Ruusamäe <glen/at/pld-linux.org>
1260
1261 * sysconfig/network-scripts/functions.network: - nwid already set
1262 earlier
1263
1264 * rc.d/init.d/network: - typo, dots
1265
12662009-11-22 09:19 +0000 [r10990-10992] Elan Ruusamäe <glen/at/pld-linux.org>
1267
1268 * rc.d/rc.init (removed), rc.d/Makefile.am: - rc.init does not seem
1269 to be used anywhere; remove it
1270
1271 * sysconfig/network: - mention HOTPLUG
1272
1273 * sysconfig/interfaces/ifcfg-description: - cleanup
1274
12752009-11-20 12:58 +0000 [r10989] Elan Ruusamäe <glen/at/pld-linux.org>
1276
1277 * rc.d/rc.shutdown: - cleanup trailing whitespace
1278
12792009-11-20 12:54 +0000 [r10988] Elan Ruusamäe <glen/at/pld-linux.org>
1280
1281 * rc.d/init.d/sys-chroots: - back to /bin/sh
1282
12832009-11-20 12:35 +0000 [r10985-10987] Elan Ruusamäe <glen/at/pld-linux.org>
1284
1285 * modules: - apply rc-scripts-modules.patch
1286
1287 * configure.ac: - prepare for 0.4.2.6 release
1288
6d41fac6
ER
12892009-11-19 21:21 +0000 [r10984] Elan Ruusamäe <glen/at/pld-linux.org>
1290
1291 * rc.d/init.d/functions: - with --pidfile set in status(), don't
1292 make wrong assumptions by finding process by name
1293
12942009-11-19 21:07 +0000 [r10983] Elan Ruusamäe <glen/at/pld-linux.org>
1295
1296 * rc.d/init.d/functions: - fix weird typo
1297
12982009-11-19 20:41 +0000 [r10982] Elan Ruusamäe <glen/at/pld-linux.org>
1299
1300 * rc.d/init.d/functions: - if pidfile specified, pid must be there,
1301 don't fallback for pidof(1)
1302
13032009-11-19 13:31 +0000 [r10981] Elan Ruusamäe <glen/at/pld-linux.org>
1304
1305 * rc.d/rc.local: - rc.local is sourced, not executed
1306
13072009-11-17 07:10 +0000 [r10976] Elan Ruusamäe <glen/at/pld-linux.org>
1308
b30f8040
AM
1309 * rc.d/init.d/functions, rc.d/init.d/sys-chroots, rc.d/rc,
1310 rc.d/rc.sysinit, rc.d/init.d/cryptsetup: - partial merge of
1311 baggin's busybox branch changes
6d41fac6
ER
1312
13132009-11-17 06:22 +0000 [r10975] Elan Ruusamäe <glen/at/pld-linux.org>
1314
1315 * rc.d/init.d/functions: - status -p shortopt for --pidfile
1316
13172009-11-16 14:49 +0000 [r10971] Tomasz Pala <gotar/at/pld-linux.org>
1318
1319 * sysconfig/network-scripts/functions.network: -
1320 unknown/unsupported: return 2 if no tools found or all the
1321 methods failed
1322
13232009-11-16 14:07 +0000 [r10970] Tomasz Pala <gotar/at/pld-linux.org>
1324
1325 * sysconfig/network-scripts/functions.network: - don't call
1326 check_mii_tool if ethtool or iwconfig reported success
1327
13282009-11-16 14:03 +0000 [r10969] Tomasz Pala <gotar/at/pld-linux.org>
1329
1330 * sysconfig/network-scripts/functions.network: - check rfkill
1331 before iwconfig (more common and doesn't require binary) - note
1332 /sys/class/net/${1}/operstate file on some systems
1333
13342009-11-16 14:00 +0000 [r10968] Tomasz Pala <gotar/at/pld-linux.org>
1335
1336 * sysconfig/network-scripts/functions.network: - it's common for
1337 WiFi that all the methods of link state determinaion fail, don't
1338 abort dhclient in such case
1339
13402009-11-04 08:03 +0000 [r10945] Tomasz Pala <gotar/at/pld-linux.org>
1341
1342 * sysconfig/network-scripts/ifup-br: - don't disable bridged device
1343 just before bridge starts! - this interrupts every subdevice
1344 currently active (like VLAN interfaces in another bridges)
1345
13462009-11-04 07:58 +0000 [r10944] Tomasz Pala <gotar/at/pld-linux.org>
1347
1348 * sysconfig/network-scripts/ifdown-br: - dont't set bridged device
1349 down! some subdevice can still be used (e.g. VLAN interface in
1350 another bridge), - NOTE: addresses from underlying device are
1351 flushed on ifup-br so there should not exist anyone anyway
1352
13532009-11-03 15:47 +0000 [r10933] Tomasz Pala <gotar/at/pld-linux.org>
1354
1355 * sysconfig/network-scripts/ifup-br: - bridge forward delay is used
1356 regardless of STP, - NB hello timer runs always too, it's just
1357 not used without STP
1358
13592009-10-25 18:33 +0000 [r10854] Elan Ruusamäe <glen/at/pld-linux.org>
1360
1361 * rc.d/init.d/network: - fix devs detect
1362
13632009-10-16 08:50 +0000 [r10792] Elan Ruusamäe <glen/at/pld-linux.org>
1364
1365 * rc.d/init.d/template.init: - stderr redirected anyway, nothing
1366 special needed in configtest()
1367
418f97b9 13682009-10-15 10:03 +0000 [r10789] Paweł Zuzelski <pawelz/at/pld-linux.org>
6d41fac6
ER
1369
1370 * sysconfig/interfaces/ifcfg-ppp0.gprs-playmobile: - do not reduce
1371 MTU by default. It kills ipsec.
1372
418f97b9 13732009-10-15 09:32 +0000 [r10788] Paweł Zuzelski <pawelz/at/pld-linux.org>
6d41fac6 1374
a2ee7529
JR
1375 * sysconfig/interfaces/data/chat-ppp0.gprs-playmobile (added),
1376 sysconfig/interfaces/ifcfg-ppp0.gprs-playmobile (added): - ppp
1377 configuration for PLAY MOBILE (tested on HUAWEI E169 and E220
6d41fac6
ER
1378 modems)
1379
13802009-10-14 07:35 +0000 [r10784] Elan Ruusamäe <glen/at/pld-linux.org>
1381
1382 * rc.d/rc.sysinit: - local args in /etc/modules processing
1383
13842009-09-14 23:31 +0000 [r10603] Tomasz Pala <gotar/at/pld-linux.org>
1385
1386 * rc.d/rc.sysinit: - there's no point in trying to run
1387 vg{scan,change} if they're not present; so made them sufficient
1388 unless is_no "$EVMS_LVM"
1389
13902009-09-02 19:58 +0000 [r10524] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1391
1392 * rc.d/rc.sysinit: Set rc to 0 for mdadm rc=2 case.
1393
13942009-09-01 18:59 +0000 [r10523] Paweł Gołaszewski <blues/at/pld-linux.org>
1395
1396 * rc.d/rc.sysinit: - cpuset shouldn't be mounted unconditionally -
1397 it has few options
1398
13992009-08-30 20:14 +0000 [r10518] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1400
1401 * rc.d/rc.sysinit: mdadm status codes 0 and 2 (new in mdadm 3.0)
1402 are success
1403
14042009-08-25 10:25 +0000 [r10493] Elan Ruusamäe <glen/at/pld-linux.org>
1405
1406 * rc.d/rc.sysinit: - use shell construct
1407
14082009-08-25 09:26 +0000 [r10492] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1409
1410 * rc.d/rc.sysinit: Skip comments in args.
1411
14122009-08-24 06:16 +0000 [r10491] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1413
1414 * rc.d/rc.sysinit: Restore extra check.
1415
14162009-08-17 20:34 +0000 [r10490] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1417
4ca37ca2 1418 * rc.d/rc.sysinit, src/getkey.c: New getkey handling (from fc).
6d41fac6 1419
5537df6b
AM
14202009-08-16 20:53 +0000 [r10487] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1421
1422 * configure.ac: Release 0.4.2.4.
1423
14242009-08-11 14:06 +0000 [r10473] Elan Ruusamäe <glen/at/pld-linux.org>
1425
1426 * rc.d/rc.sysinit: - no subshell needed and unify modprobe -c
1427 callout
1428
14292009-08-11 07:08 +0000 [r10469] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1430
1431 * rc.d/rc.sysinit: Don't use modprobe.conf file. Use /sbin/modprobe
1432 -c output instead.
1433
14342009-08-07 17:42 +0000 [r10460] Marcin Król <hawk/at/pld-linux.org>
1435
b30f8040
AM
1436 * sysconfig/network-scripts/ifup-sl,
1437 sysconfig/network-scripts/functions.network,
5537df6b 1438 sysconfig/network-scripts/ifup-ppp,
a2ee7529
JR
1439 sysconfig/network-scripts/ifup-vlan,
1440 sysconfig/network-scripts/tnlup,
b30f8040
AM
1441 sysconfig/network-scripts/ifup-br, rc.d/rc.sysinit: - '-k' is no
1442 longer valid modprobe switch
5537df6b
AM
1443
14442009-07-25 19:44 +0000 [r10427] Elan Ruusamäe <glen/at/pld-linux.org>
1445
1446 * rc.d/init.d/template.init: - configtest alias - allow output of
1447 configtest success
1448
14492009-07-25 19:29 +0000 [r10426] Elan Ruusamäe <glen/at/pld-linux.org>
1450
1451 * rc.d/init.d/template.init: - improved configtest output sequence
1452
14532009-07-25 19:24 +0000 [r10425] Elan Ruusamäe <glen/at/pld-linux.org>
1454
1455 * rc.d/init.d/template.init: - add checkconfig action sample
1456
14572009-07-25 19:19 +0000 [r10424] Elan Ruusamäe <glen/at/pld-linux.org>
1458
1459 * rc.d/init.d/template.init: - use <service_name> for msg as it
1460 usualy differs
1461
14622009-07-21 18:25 +0000 [r10422] Zbigniew Krzystolik <zbyniu/at/pld-linux.org>
1463
b30f8040 1464 * firmware-loader.sh (added), rc.d/rc.sysinit: - added
5537df6b
AM
1465 firmware-loader.sh for autoload firmware on systems w/o udev
1466
2d615fcd 14672009-07-17 07:40 +0000 [r10421] shadzik <shadzik/at/pld-linux.org>
5537df6b
AM
1468
1469 * sysconfig/i18n: - add en_US.UTF-8/UTF-8 de_DE.UTF-8/UTF-8
1470 en_GB.UTF-8/UTF-8 to supported langs
1471
14722009-07-16 18:09 +0000 [r10420] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1473
1474 * rc.d/init.d/functions: Update LINES correctly.
1475
14762009-07-16 17:07 +0000 [r10419] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1477
1478 * rc.d/init.d/functions: On IPMI serial console COLUMNS ends up
1479 with negative value like -13. Protect agains such thing. Also
1480 protect LINES.
1481
14822009-07-01 04:39 +0000 [r10409] Elan Ruusamäe <glen/at/pld-linux.org>
1483
1484 * acinclude.m4: - fix underquoted definition warning
1485
14862009-07-01 04:35 +0000 [r10408] Elan Ruusamäe <glen/at/pld-linux.org>
1487
1488 * configure.ac: - 0.4.2.3
1489
1bc05f56
ER
14902009-06-29 00:13 +0000 [r10399] Elan Ruusamäe <glen/at/pld-linux.org>
1491
1492 * rc.d/rc.shutdown: - nice message about kexec being used
1493
14942009-06-28 22:17 +0000 [r10398] Elan Ruusamäe <glen/at/pld-linux.org>
1495
1496 * rc.d/rc.shutdown: - invoke kexec only if image loaded
1497
14982009-06-05 18:30 +0000 [r10372] Elan Ruusamäe <glen/at/pld-linux.org>
1499
1500 * sysconfig/network: - update udev path
1501
15022009-06-03 06:29 +0000 [r10367-10369] Elan Ruusamäe <glen/at/pld-linux.org>
1503
1504 * sysconfig/network-scripts/functions.network: - one local should
1505 be enough
1506
1507 * rc.d/init.d/functions: - update path
1508
1509 * sysconfig/network-scripts/functions.network: - i don't think cat
1510 output is localized
1511
15122009-06-02 20:34 +0000 [r10366] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1513
1514 * sysconfig/network-scripts/functions.network: Add rfkill support.
1515
15162009-05-26 19:51 +0000 [r10361] Zbigniew Krzystolik <zbyniu/at/pld-linux.org>
1517
1518 * rc.d/init.d/functions: - don't kill -KILL (in start-stop-daemon),
1519 try TERM first
1520
227ac2e7
AM
15212009-05-22 18:30 +0000 [r10358] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1522
1523 * DEVELOPMENT, configure.ac: Prepare for 0.4.2.2.
1524
15252009-04-23 20:59 +0000 [r10333] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1526
1527 * sysconfig/network-scripts/functions.network: Don't rely on mii
1528 check (it's unreliable). 'radio off' clarifications. Less
1529 iterations in loop.
1530
15312009-04-07 09:28 +0000 [r10321-10322] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1532
1533 * rc.d/rc.sysinit: Don't check for /dev/rtc existence. When using
1534 udev it doesn't exist usually.
1535
1536 * rc.d/rc.sysinit: Don't check for /dev/rtc existence. When using
1537 udev it doesn't exist usually.
1538
15392009-03-26 15:11 +0000 [r10264] Jan Rękorajski <baggins/at/pld-linux.org>
1540
1541 * sysconfig/network-scripts/ifup-aliases: - more readable
1542
15432009-03-26 13:33 +0000 [r10253] Jan Rękorajski <baggins/at/pld-linux.org>
1544
1545 * sysconfig/network-scripts/ifup-aliases: - set addrlabel only if
1546 specified
1547
7c40ed1f
JR
15482009-03-23 16:07 +0000 [r10235] Jan Rękorajski <baggins/at/pld-linux.org>
1549
1550 * configure.ac: - 0.4.2.1
1551
15522009-03-21 21:30 +0000 [r10225-10226] Elan Ruusamäe <glen/at/pld-linux.org>
1553
1554 * rc.d/init.d/sys-chroots: - correct
1555
1556 * rc.d/init.d/sys-chroots: - invert condition to bring down one
1557 level of indent
1558
15592009-03-21 21:24 +0000 [r10223-10224] Elan Ruusamäe <glen/at/pld-linux.org>
1560
1561 * rc.d/init.d/local: - proper order of commands
1562
1563 * rc.d/init.d/killall: - correction
1564
15652009-03-21 21:17 +0000 [r10222] Elan Ruusamäe <glen/at/pld-linux.org>
1566
1567 * rc.d/init.d/allowlogin: - why the space?
1568
15692009-03-20 16:03 +0000 [r10221] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1570
1571 * sysconfig/network-scripts/functions.network: Set nickname only
1572 when specified in config since many wifi adapters don't support
1573 this setting.
1574
15752009-03-19 00:15 +0000 [r10218] Elan Ruusamäe <glen/at/pld-linux.org>
1576
b30f8040
AM
1577 * DEVELOPMENT, sysconfig/network-scripts/functions.network,
1578 rc.d/init.d/functions, rc.d/rc, rc.d/rc.sysinit: - use "local"
1579 not "typeset" (compatible with: pdksh/bash/dash)
7c40ed1f
JR
1580
15812009-03-16 11:34 +0000 [r10214] Elan Ruusamäe <glen/at/pld-linux.org>
1582
b30f8040 1583 * rc.d/rc.sysinit, rc.d/rc.shutdown: - shorter lvm version detect
7c40ed1f
JR
1584
15852009-03-16 11:27 +0000 [r10213] Elan Ruusamäe <glen/at/pld-linux.org>
1586
1587 * rc.d/rc.shutdown: - remove unneeded subshells
1588
15892009-03-16 11:23 +0000 [r10212] Elan Ruusamäe <glen/at/pld-linux.org>
1590
1591 * sysconfig/system: - typo
1592
15932009-03-15 23:09 +0000 [r10210-10211] Jan Rękorajski <baggins/at/pld-linux.org>
1594
1595 * rc.d/rc.shutdown, sysconfig/system: - added UMOUNT_IGNORE option
1596
1597 * rc.d/rc.shutdown: - refactor awk invocation in fs unmounting code
1598
15992009-03-12 15:32 +0000 [r10208] Elan Ruusamäe <glen/at/pld-linux.org>
1600
1601 * inittab: - sX prefix ofr serial lines
1602
ff450d58
JR
16032009-03-11 12:41 +0000 [r10203] Jan Rękorajski <baggins/at/pld-linux.org>
1604
1605 * configure.ac: - 0.4.2.0, well deserved version bump after few
1606 years of development
1607
c89f4fc8
JR
16082009-03-10 11:39 +0000 [r10197-10198] Jan Rękorajski <baggins/at/pld-linux.org>
1609
a2ee7529
JR
1610 * sysconfig/network-scripts/functions.network,
1611 sysconfig/network-scripts/ifup: - addlabel is IPv6 only
c89f4fc8
JR
1612
1613 * sysconfig/network-scripts/ifup-aliases: - added addrlabel support
1614
16152009-03-10 11:33 +0000 [r10196] Jan Rękorajski <baggins/at/pld-linux.org>
1616
1617 * sysconfig/network-scripts/ifup-aliases: - removed dead code
1618
16192009-03-10 11:20 +0000 [r10195] Jan Rękorajski <baggins/at/pld-linux.org>
1620
1621 * sysconfig/network-scripts/ifup: - add IP_LABEL support
1622
16232009-03-10 11:16 +0000 [r10194] Jan Rękorajski <baggins/at/pld-linux.org>
1624
1625 * sysconfig/network-scripts/functions.network: - allow addrlabel
1626 setting for ipv4 adresses
1627
16282009-03-10 11:11 +0000 [r10192-10193] Jan Rękorajski <baggins/at/pld-linux.org>
1629
1630 * sysconfig/network-scripts/functions.network: - remove IP6_SRC_IF
1631 dead code - started adding IP_LABEL
1632
1633 * doc/net-scripts.txt: - remove IP6_SRC_IF, add IP_ALABEL
1634
16352009-03-10 11:02 +0000 [r10191] Jan Rękorajski <baggins/at/pld-linux.org>
1636
1637 * sysconfig/interfaces/ifcfg-description: - just remove IP6_SRC_IF
1638 to avoid confusion
1639
16402009-03-10 10:56 +0000 [r10190] Jan Rękorajski <baggins/at/pld-linux.org>
1641
1642 * sysconfig/interfaces/ifcfg-description: - add IP_LABEL setting
1643 for ip addrlabel (see RFC 3484) - added comment about uselessness
1644 of IP6_SRC_IF setting
1645
16462009-03-09 21:21 +0000 [r10186] Jan Rękorajski <baggins/at/pld-linux.org>
1647
1648 * rc.d/init.d/functions: - use exntended regexp functionality
1649
16502009-03-09 21:12 +0000 [r10185] Jan Rękorajski <baggins/at/pld-linux.org>
1651
b30f8040 1652 * rc.d/init.d/network, sysconfig/network-scripts/ifup-aliases,
c89f4fc8
JR
1653 sysconfig/network-scripts/ifup-routes,
1654 sysconfig/network-scripts/tnlup, sysconfig/network-scripts/ifup,
b30f8040
AM
1655 sysconfig/network-scripts/tnldown, rc.d/rc.sysinit,
1656 rc.d/init.d/cryptsetup, sysconfig/network-scripts/ifup-neigh,
1657 sysconfig/network-scripts/functions.network,
1658 rc.d/init.d/functions, sysconfig/network-scripts/ifup-vlan: - man
1659 grep, "Direct invocation as either egrep or fgrep is deprecated",
1660 use grep -F or grep -E
c89f4fc8
JR
1661
16622009-03-09 21:04 +0000 [r10183-10184] Jan Rękorajski <baggins/at/pld-linux.org>
1663
1664 * rc.d/rc.sysinit: - fix syntax
1665
1666 * rc.d/init.d/functions: - man grep, glen. "Direct invocation as
1667 either egrep or fgrep is deprecated" - and better safe than
1668 sorry, use grep -E with proper regexp
1669
16702009-03-09 18:50 +0000 [r10181-10182] Elan Ruusamäe <glen/at/pld-linux.org>
1671
1672 * sysconfig/network-scripts/ifdown-vlan: - ip link help might be
1673 localized, remove unneeded subshell
1674
1675 * rc.d/init.d/functions: - /proc/mounts isn't localized and it has
1676 fixed format (use fgrep)
1677
16782009-03-09 18:03 +0000 [r10180] Jan Rękorajski <baggins/at/pld-linux.org>
1679
1680 * rc.d/rc.sysinit: - use is_fsmounted for checking mount points -
1681 fix mtab entry for /dev/cpuset
1682
16832009-03-09 17:47 +0000 [r10179] Jan Rękorajski <baggins/at/pld-linux.org>
1684
1685 * rc.d/init.d/functions: - use /proc/mounts if available for
1686 checking mounted fs
1687
16882009-03-09 16:07 +0000 [r10178] Jan Rękorajski <baggins/at/pld-linux.org>
1689
1690 * rc.d/rc.sysinit: - check if /proc and /sys are mounted before
1691 trying to mount them
1692
16932009-03-09 15:54 +0000 [r10177] Jan Rękorajski <baggins/at/pld-linux.org>
1694
1695 * rc.d/init.d/functions: - added is_fsmounted function to check if
1696 a given filesystem is mounted, requires /bin/stat (i.e. coreutils
1697 >= 7.1-2)
1698
16992009-03-08 15:48 +0000 [r10176] Tomasz Pala <gotar/at/pld-linux.org>
1700
1701 * sysconfig/network-scripts/ifup: - rc.d/init.d/network calls
1702 "/sbin/ifup tnlcfg-$i boot" causing awk: cannot open tnlcfg-tun0
1703 (No such file or directory) from ifup-post tnlcfg-tun0 (calling
1704 ifup-aliases without full $CONFIG path) This fixes long lasting
1705 bug:
1706 http://www.mail-archive.com/pld-devel-pl@lists.pld-linux.org/msg18413.html
1707 http://www.mail-archive.com/pld-devel-pl@lists.pld-linux.org/msg11198.html
1708
17092009-03-06 12:56 +0000 [r10174] Elan Ruusamäe <glen/at/pld-linux.org>
1710
1711 * rc.d/init.d/functions: - daemon() startup errors dump to stderr
1712
17132009-03-02 12:39 +0000 [r10159] Elan Ruusamäe <glen/at/pld-linux.org>
1714
1715 * rc.d/rc.sysinit: - no bashism, typo
1716
17172009-03-02 12:28 +0000 [r10158] Zbigniew Krzystolik <zbyniu/at/pld-linux.org>
1718
1719 * rc.d/rc.sysinit: - remount rootfs rw only if no option 'ro' in
1720 fstab - hide remove errors on /etc/*mtab~* /fastboot etc
1721
17222009-02-27 16:36 +0000 [r10150] Tomasz Pala <gotar/at/pld-linux.org>
1723
1724 * sysconfig/network-scripts/ifup-vlan: - fixed exit status when no
1725 appropriate tools found
1726
17272009-02-27 16:33 +0000 [r10149] Tomasz Pala <gotar/at/pld-linux.org>
1728
1729 * sysconfig/network-scripts/ifdown-vlan: - restored vconfig support
1730 for older iproute2 users
1731
17322009-02-25 07:43 +0000 [r10146] Elan Ruusamäe <glen/at/pld-linux.org>
1733
1734 * rc.d/init.d/template.init: - less indent by using return in
1735 functions
1736
17372009-02-21 12:43 +0000 [r10135] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1738
4ca37ca2 1739 * rc.d/rc, sysconfig/network-scripts/functions.network: Comparsion
c89f4fc8
JR
1740 correction.
1741
17422009-02-20 09:05 +0000 [r10133] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1743
1744 * configure.ac: Preparations for 0.4.1.27.
1745
e19d587c
AM
17462009-02-19 20:03 +0000 [r10132] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1747
1748 * rc.d/init.d/functions: - 15 seems to be normal color on 16 and
1749 256 color consoles
1750
17512009-02-19 10:15 +0000 [r10130] Elan Ruusamäe <glen/at/pld-linux.org>
1752
1753 * rc.d/init.d/functions: - typo
1754
17552009-02-17 17:23 +0000 [r10127] Tomasz Pala <gotar/at/pld-linux.org>
1756
1757 * rc.d/init.d/functions: - added {waitname:+--name $waitname} to
1758 ssd, otherwise there's no way to start qpopperd and qpoppersd
1759 both at the same time /usr/sbin/qpoppersd already running. - use
1760 long options names
1761
17622009-02-16 01:07 +0000 [r10123-10124] Tomasz Pala <gotar/at/pld-linux.org>
1763
1764 * rc.d/init.d/functions: - keep one style of spacing, do not
1765 pollute sh with C-style comparision == operator
1766
1767 * rc.d/init.d/functions: - expand relative --pidfile to absolute
1768 /var/run path; ssd in killproc has broken plenty of daemons
1769 including amavisd-new, apache and clamav - dropped ancient
1770 /usr/X11R6/bin from $PATH
1771
17722009-02-12 11:29 +0000 [r10122] Elan Ruusamäe <glen/at/pld-linux.org>
1773
1774 * rc.d/init.d/functions: - calculate default INIT_COL from terminal
1775 size
1776
17772009-02-12 11:26 +0000 [r10121] Elan Ruusamäe <glen/at/pld-linux.org>
1778
1779 * sysconfig/system: - no hardcoded default in config for INIT_COL
1780
17812009-02-09 19:59 +0000 [r10115] Elan Ruusamäe <glen/at/pld-linux.org>
1782
1783 * rc.d/init.d/functions: - typo
1784
17852009-02-04 20:28 +0000 [r10099] Paweł Gołaszewski <blues/at/pld-linux.org>
1786
1787 * rc.d/init.d/functions: - makepid functionality to daemon function
1788
17892009-01-25 14:58 +0000 [r10096] Elan Ruusamäe <glen/at/pld-linux.org>
1790
1791 * rc.d/init.d/cryptsetup: - LC_ALL=C for greps
1792
17932009-01-23 15:03 +0000 [r10095] Elan Ruusamäe <glen/at/pld-linux.org>
1794
1795 * sysconfig/network-scripts/functions.network: - local output for
1796 func internal vars
1797
17982009-01-23 13:54 +0000 [r10094] Elan Ruusamäe <glen/at/pld-linux.org>
1799
1800 * sysconfig/network-scripts/ifdown: - grepping pid from ps ax could
1801 be ambigous, use kill -0 for running-pid-check
1802
18032009-01-23 13:45 +0000 [r10093] Elan Ruusamäe <glen/at/pld-linux.org>
1804
1805 * rc.d/init.d/cryptsetup: - revert unwanted commit
1806
18072009-01-23 13:39 +0000 [r10092] Elan Ruusamäe <glen/at/pld-linux.org>
1808
b30f8040
AM
1809 * sysconfig/network-scripts/ifup-vlan,
1810 sysconfig/network-scripts/ifup-ipx,
1811 sysconfig/network-scripts/tnlup,
1812 sysconfig/network-scripts/ifdown-sl,
1813 sysconfig/network-scripts/ifup,
1814 sysconfig/network-scripts/ifdown-irda,
1815 sysconfig/network-scripts/ifup-br,
1816 sysconfig/network-scripts/ifup-plip, sysconfig/system,
a2ee7529
JR
1817 sysconfig/network-scripts/ifup-iucv, rc.d/rc,
1818 sysconfig/network-scripts/ifdown-post, rc.d/rc.init, lang.csh,
1819 hwprofile, service, sysconfig/network-scripts/ifup-sl,
1820 sysconfig/network-scripts/ifup-irda,
1821 sysconfig/network-scripts/ifup-routes, rc.d/rc.shutdown,
e19d587c
AM
1822 sysconfig/network-scripts/ifup-aliases,
1823 sysconfig/network-scripts/ifdown-ppp,
1824 sysconfig/network-scripts/tnldown,
1825 sysconfig/network-scripts/ifup-post,
1826 sysconfig/network-scripts/ifup-plusb,
1827 sysconfig/network-scripts/ifdown,
1828 sysconfig/network-scripts/ifdown-br,
1829 sysconfig/network-scripts/ifup-neigh,
b30f8040 1830 sysconfig/network-scripts/ifup-ppp: - cleanup vi:syntax, not
e19d587c
AM
1831 needed and doesn't work anyway (should be vim:ft if any)
1832
18332009-01-23 13:34 +0000 [r10091] Elan Ruusamäe <glen/at/pld-linux.org>
1834
b30f8040
AM
1835 * Makefile.am, sysconfig/network-scripts/ifdown-br,
1836 rc.d/init.d/cryptsetup,
a2ee7529
JR
1837 sysconfig/network-scripts/functions.network, configure.ac,
1838 sysconfig/network-scripts/ifup-vlan,
1839 sysconfig/network-scripts/ifup-aliases,
e19d587c
AM
1840 sysconfig/network-scripts/tnlup,
1841 sysconfig/network-scripts/ifdown-vlan,
1842 sysconfig/network-scripts/ifup-br,
1843 sysconfig/network-scripts/tnldown,
b30f8040
AM
1844 sysconfig/network-scripts/ifdown: - force LC_ALL=C when grepping
1845 data from possibly localized program outputs
e19d587c
AM
1846
18472009-01-22 09:06 +0000 [r10090] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1848
1849 * sysconfig/interfaces/ifcfg-description: Mention GVRP option.
1850
18512009-01-22 09:02 +0000 [r10089] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1852
1853 * po/pl.po: Update
1854
18552009-01-22 08:56 +0000 [r10087-10088] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1856
1857 * sysconfig/network-scripts/functions.network,
1858 sysconfig/network-scripts/ifup-vlan: Prefer vlan creation using
1859 iproute2, fallback to vconfig.
1860
1861 * sysconfig/network-scripts/ifdown: No need for special handling
1862 for vlans when downing master device.
1863
18642009-01-22 08:41 +0000 [r10086] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1865
1866 * sysconfig/network-scripts/ifdown-vlan: vconfig no longer needed
1867 here.
1868
18692009-01-22 07:43 +0000 [r10085] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1870
b30f8040
AM
1871 * sysconfig/network-scripts/ifdown,
1872 sysconfig/network-scripts/ifdown-vlan: Delete devices using
1873 iproute2.
e19d587c
AM
1874
18752009-01-05 19:08 +0000 [r10050] Jan Rękorajski <baggins/at/pld-linux.org>
1876
1877 * rc.d/rc.sysinit, rc.d/init.d/cpusets: - use noprefix mount option
1878 for cgroup cpuset
1879
18802009-01-02 19:01 +0000 [r10047-10048] Jan Rękorajski <baggins/at/pld-linux.org>
1881
1882 * sysconfig/cpusets/cpuset-test: - removed reference to cpuset
1883 virtualization (feature long dead, and no signs of resurrection)
1884
1885 * rc.d/init.d/cpusets: - fix for /dev/cpuset mounted as cgroup
1886 -ocpuset
1887
48d12e51
JR
18882008-12-31 19:25 +0000 [r10044] Jan Rękorajski <baggins/at/pld-linux.org>
1889
1890 * configure.ac: 0.4.1.26
1891
18922008-12-25 07:08 +0000 [r10040] Jakub Bogusz <qboosh/at/pld-linux.org>
1893
1894 * rc.d/init.d/functions: - optional argument in square brackets
1895
18962008-12-16 19:00 +0000 [r10038] Elan Ruusamäe <glen/at/pld-linux.org>
1897
1898 * rc.d/init.d/functions: - add usage for killproc - shift 2 is
1899 better than shift shift
1900
19012008-12-16 18:55 +0000 [r10037] Elan Ruusamäe <glen/at/pld-linux.org>
1902
1903 * rc.d/init.d/functions: - try ssd for killproc. needs pidfile to
1904 work reliably - what values to use for --retry?
1905
19062008-12-11 17:04 +0000 [r10034] Elan Ruusamäe <glen/at/pld-linux.org>
1907
1908 * rc.d/rc.sysinit: - display LVM VG stats after LVM has been
1909 initialized
1910
19112008-12-09 14:35 +0000 [r10030] Jan Rękorajski <baggins/at/pld-linux.org>
1912
a2ee7529
JR
1913 * sysconfig/network-scripts/ifup-ppp, rc.d/rc.shutdown, po/pl.po,
1914 sysconfig/system, rc.d/rc.sysinit: - removed DevFS support
48d12e51
JR
1915
19162008-12-09 14:31 +0000 [r10029] Jan Rękorajski <baggins/at/pld-linux.org>
1917
1918 * rc.d/rc.sysinit: - udev-135-2 finally creates /dev/cpuset
1919 directory - use cgroup fs in newer kernels
1920
19212008-12-04 19:49 +0000 [r10022] Paweł Sikora <pluto/at/pld-linux.org>
1922
1923 * rc.d/rc.sysinit: - allow usb group to operate on /proc/bus/usb.
1924
19252008-12-02 07:14 +0000 [r10020] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1926
1927 * sysctl.conf: Leave default for kernel.
1928
19292008-12-02 00:08 +0000 [r10019] Paweł Sikora <pluto/at/pld-linux.org>
1930
1931 * sysctl.conf: - describe kernel.randomize_va_space feature.
1932
19332008-11-30 19:27 +0000 [r10016] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1934
1935 * sysconfig/network-scripts/ifup-vlan: Load 8021q module.
1936
19372008-11-30 15:15 +0000 [r10014] Elan Ruusamäe <glen/at/pld-linux.org>
1938
1939 * rc.d/init.d/functions: - add --pidfile to status()
1940
19412008-11-28 16:09 +0000 [r10010] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
1942
a2ee7529
JR
1943 * sysconfig/interfaces/ifcfg-eth0.1,
1944 sysconfig/network-scripts/ifup,
1945 sysconfig/interfaces/ifcfg-description: macvlan support.
48d12e51
JR
1946
19472008-11-27 14:47 +0000 [r10007] Jan Rękorajski <baggins/at/pld-linux.org>
1948
1949 * rc.d/rc.sysinit: - load dm-mod before using dmsetup in multipath
1950 case
1951
19522008-11-18 13:40 +0000 [r9998] Elan Ruusamäe <glen/at/pld-linux.org>
1953
1954 * rc.d/init.d/cryptsetup: - catch missing device errors
1955
19562008-11-18 13:26 +0000 [r9996-9997] Elan Ruusamäe <glen/at/pld-linux.org>
1957
1958 * sysconfig/interfaces/data/chat-ppp0.kou: - it starts pppd right
1959 after connection - with kernel or fixed firmware there's OK said
1960 after ATZ
1961
1962 * sysconfig/interfaces/ifcfg-ppp0.kou: - add debug line (disabled)
1963
19642008-11-14 01:23 +0000 [r9991] Elan Ruusamäe <glen/at/pld-linux.org>
1965
1966 * rc.d/init.d/cryptsetup: - use nls
1967
19682008-11-12 23:27 +0000 [r9985] Elan Ruusamäe <glen/at/pld-linux.org>
1969
1970 * rc.d/init.d/cryptsetup: - dmsetup mknodes so the startup doesn't
1971 complain on missing nodes
1972
19732008-11-10 00:46 +0000 [r9974] Elan Ruusamäe <glen/at/pld-linux.org>
1974
1975 * rc.d/init.d/cryptsetup: - output formatting cosmetics
1976
19772008-11-10 00:15 +0000 [r9973] Elan Ruusamäe <glen/at/pld-linux.org>
1978
1979 * rc.d/init.d/cryptsetup: - no bashism
1980
19812008-11-05 22:48 +0000 [r9970] Elan Ruusamäe <glen/at/pld-linux.org>
1982
1983 * rc.d/init.d/functions: - add --chdir to daemon()
1984
19852008-11-05 22:39 +0000 [r9969] Elan Ruusamäe <glen/at/pld-linux.org>
1986
1987 * rc.d/init.d/functions: - -u is for stopping in ssd
1988
a9ebb51e
ER
19892008-11-04 20:04 +0000 [r9963] Elan Ruusamäe <glen/at/pld-linux.org>
1990
1991 * configure.ac: - wtf 0.4.1.24 was already there? bump to 0.4.1.25
1992 then
1993
19942008-11-04 19:57 +0000 [r9962] Elan Ruusamäe <glen/at/pld-linux.org>
1995
1996 * DEVELOPMENT: - somewhy have to svn up again after configure.ac
1997 commit
1998
fba1005e
ER
19992008-11-04 19:45 +0000 [r9959] Elan Ruusamäe <glen/at/pld-linux.org>
2000
2001 * configure.ac: - 0.4.1.24 release
2002
b33d4f1e
ER
20032008-11-04 18:07 +0000 [r9958] Elan Ruusamäe <glen/at/pld-linux.org>
2004
2005 * lang.sh: - LC_ALL was still overwritten with i18n value even if
2006 one had from ssh session
2007
20082008-10-29 08:54 +0000 [r9927] Elan Ruusamäe <glen/at/pld-linux.org>
2009
2010 * run-parts: - rip out -u <runas_user> -- it's bad concept and
2011 nothing should be using it anyway
2012
20132008-10-28 00:09 +0000 [r9926] Elan Ruusamäe <glen/at/pld-linux.org>
2014
2015 * run-parts: - add --test and -- to behave like debian run-parts(1)
2016
20172008-10-26 13:43 +0000 [r9922] Tomasz Pala <gotar/at/pld-linux.org>
2018
b30f8040 2019 * sysconfig/system, rc.d/rc.sysinit: - introduce START_UDEV
b33d4f1e
ER
2020 variable
2021
20222008-10-25 22:53 +0000 [r9921] Andrzej Dopierała <undefine/at/pld-linux.org>
2023
b30f8040 2024 * sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown:
b33d4f1e
ER
2025 - wpa is also usefull with not wireless devices - eg with 8021x.
2026 - patch by Pawel Nogas <pnogas(AT)amu(DOT)edu(DOT)pl>
2027
20282008-10-25 18:35 +0000 [r9920] Radosław Zieliński <radek/at/pld-linux.org>
2029
2030 * sysconfig/network-scripts/ifup: - removed sed dependency
2031
20322008-10-25 18:16 +0000 [r9918-9919] Radosław Zieliński <radek/at/pld-linux.org>
2033
2034 * sysconfig/interfaces/ifcfg-eth0.1: - typo
2035
b30f8040
AM
2036 * sysconfig/network-scripts/ifdown, doc/net-scripts.txt,
2037 sysconfig/interfaces/ifcfg-eth0, sysconfig/network-scripts/ifup:
4ca37ca2 2038 - support for automatic 6to4 tunnels
b33d4f1e
ER
2039
20402008-10-13 13:21 +0000 [r9909] Tomasz Pala <gotar/at/pld-linux.org>
2041
a2ee7529 2042 * backtick-test.sh (added), rc.d/init.d/network: - restored some
b33d4f1e
ER
2043 backticks - pdksh has broken $(...) closing paren detection, -
2044 added backtick-test.sh to test whenever this would be valid some
2045 day
2046
20472008-10-13 01:04 +0000 [r9908] Tomasz Pala <gotar/at/pld-linux.org>
2048
a2ee7529 2049 * rc.d/init.d/cpusets, rc.d/init.d/functions, rc.d/init.d/network:
b33d4f1e
ER
2050 - unified function definitions (line-saving way), - use
2051 unambiguous $(...) instead of backticks.
2052
20532008-10-12 18:08 +0000 [r9907] Tomasz Pala <gotar/at/pld-linux.org>
2054
2055 * rc.d/init.d/functions: - start-stop-daemon uses -c not -u to
2056 change UID
2057
20582008-09-16 20:39 +0000 [r9869] Elan Ruusamäe <glen/at/pld-linux.org>
2059
2060 * inittab: - full set of samples for default terminals (default
2061 keymap doesn't allow you switch over 12)
2062
20632008-09-15 08:23 +0000 [r9868] Elan Ruusamäe <glen/at/pld-linux.org>
2064
2065 * inittab: - you don't likely need so many terminals
2066
fc378959
ER
20672008-08-07 20:39 +0000 [r9860] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2068
2069 * rc.d/rc.sysinit: Actually don't use -s option since dmesg uses
2070 klogctl() to retrieve real ring buffer size.
2071
20722008-08-07 20:36 +0000 [r9859] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2073
2074 * rc.d/rc.sysinit: dump 524288 of dmesg data
2075
20762008-07-24 10:10 +0000 [r9851] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2077
2078 * sysctl.conf: Don't set net.ipv4.ip_local_port_range; use kernel
2079 default
2080
20812008-07-24 10:06 +0000 [r9850] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2082
2083 * sysctl.conf: Disable tcp syncookies by default (these disable
2084 SACK which according to DaveM 'sets TCP stack back by 10 years')
2085
20862008-07-22 17:39 +0000 [r9849] Jakub Bogusz <qboosh/at/pld-linux.org>
2087
2088 * sysconfig/i18n: - proper encoding for de_DE
2089
2d615fcd 20902008-07-17 20:42 +0000 [r9846] shadzik <shadzik/at/pld-linux.org>
fc378959
ER
2091
2092 * sysconfig/network-scripts/ifup: - wpa_supplicant 0.6.3 doesn't
2093 have a "-w" option!!
2094
20952008-06-10 21:00 +0000 [r9801] Paweł Gołaszewski <blues/at/pld-linux.org>
2096
2097 * sysconfig/network-scripts/ifup-ppp: - try last resort in setting
2098 MODEMPORT - compatibility change.
2099
21002008-06-01 11:28 +0000 [r9785] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2101
2102 * rc.d/init.d/functions: Export ISATTY. Calling this test from
2103 inside of initlog() return true even if output still goes into
2104 terminal. By exporting we make sure that initial test result is
2105 used for entire run of the script. Fixes wrong 'DONE' string
2106 alignment when bringin up dhcp.
2107
21082008-05-22 19:08 +0000 [r9761] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2109
2110 * sysconfig/network-scripts/ifdown: Return can be only from
2111 function. Use exit.
2112
21132008-05-19 06:21 +0000 [r9759-9760] Elan Ruusamäe <glen/at/pld-linux.org>
2114
2115 * rc.d/init.d/functions: - tabs
2116
2117 * rc.d/init.d/functions: - try not to use initlog if $RC_LOGGING is
2118 off (avoits usleeps for each startup)
2119
21202008-05-19 06:05 +0000 [r9756-9757] Elan Ruusamäe <glen/at/pld-linux.org>
2121
2122 * configure.ac: - 0.4.1.23
4a4479ff
ER
2123
2124 * rc.d/init.d/functions: - add --pidfile to daemon()
2125
21262008-04-27 02:00 +0000 [r9733] Elan Ruusamäe <glen/at/pld-linux.org>
2127
2128 * rc.d/init.d/functions: - disable log_success/log_failed when
2129 RC_LOGGING is off
2130
21312008-04-27 01:34 +0000 [r9731-9732] Elan Ruusamäe <glen/at/pld-linux.org>
2132
2133 * sysconfig/interfaces/tnlcfg-description: - utf8
2134
b30f8040 2135 * doc/polski.dsl, doc/sysconfig.docb, doc/rc-scripts.docb: - utf8
4a4479ff
ER
2136
21372008-04-27 01:29 +0000 [r9730] Elan Ruusamäe <glen/at/pld-linux.org>
2138
a2ee7529 2139 * configure.ac, rc-scripts.spec.in (removed), Makefile.am: -
4a4479ff
ER
2140 outdated, use spec from cvs
2141
21422008-04-27 01:24 +0000 [r9729] Elan Ruusamäe <glen/at/pld-linux.org>
2143
b30f8040 2144 * sysconfig/network-scripts/ifdown-irda,
a2ee7529 2145 sysconfig/network-scripts/ifdown-vlan,
4ca37ca2
JR
2146 sysconfig/network-scripts/ifup-br,
2147 sysconfig/network-scripts/tnldown,
b30f8040
AM
2148 sysconfig/network-scripts/ifdown-br, hwprofile,
2149 sysconfig/network-scripts/ifup-irda, rc.d/init.d/functions,
2150 sysconfig/network-scripts/ifup-vlan,
2151 sysconfig/network-scripts/tnlup: - utf8
4a4479ff
ER
2152
21532008-04-27 01:20 +0000 [r9728] Elan Ruusamäe <glen/at/pld-linux.org>
2154
2155 * AUTHORS: - utf8
2156
21572008-04-24 21:23 +0000 [r9724-9725] Elan Ruusamäe <glen/at/pld-linux.org>
2158
2159 * configure.ac: - 0.4.1.22
2160
2161 * rc.d/init.d/functions: - make stripping string suffixes from
2162 EXTRAVER more greedy
2163
48a02724
ER
21642008-04-23 22:35 +0000 [r9720-9722] Elan Ruusamäe <glen/at/pld-linux.org>
2165
2166 * configure.ac: - 0.4.1.21
2167
2168 * rc.d/rc.sysinit: - leave note for future not to fall again
8f8963f3
ER
2169
2170 * rc.d/init.d/functions: - handle also `uname -r` returning
2171 "2.6.25-1"
2172
21732008-04-23 22:27 +0000 [r9718-9719] Elan Ruusamäe <glen/at/pld-linux.org>
2174
2175 * rc.d/rc.sysinit: - second try: /var/run cleanup without find and
2176 without args len exceeded error
2177
2178 * rc.d/init.d/functions: - fix for kernels whose release is
2179 "2.6.25_vanilla-1", found by vip`
2180
21812008-04-16 17:30 +0000 [r9711] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2182
2183 * sysconfig/i18n: Obsolete texts.
2184
c7f7db0b
JR
21852008-04-09 09:02 +0000 [r9703-9704] Jan Rękorajski <baggins/at/pld-linux.org>
2186
2187 * configure.ac: - 0.4.1.20
2188
2189 * rc.d/rc.sysinit: - reverted r9238, /usr may NOT be mounted at
2190 this time, ever heard of NFS?
2191
21922008-03-27 15:42 +0000 [r9688] Patryk Zawadzki <patrys/at/pld-linux.org>
2193
2194 * configure.ac: - bump version to 0.4.1.19
2195
21962008-03-27 15:19 +0000 [r9687] Patryk Zawadzki <patrys/at/pld-linux.org>
2197
2198 * rc.d/rc.shutdown: - force reboot/halt to work with other init
2199 daemons
2200
22012008-03-26 19:43 +0000 [r9685] Sławomir Paszkiewicz <paszczus/at/pld-linux.org>
2202
2203 * configure.ac: - forgot to commit; 0.4.1.18
2204
f064ffe8
SP
22052008-03-26 16:20 +0000 [r9682] Elan Ruusamäe <glen/at/pld-linux.org>
2206
2207 * setsysfont: - /usr is not mounted when this is called from
2208 rc.sysinit
2209
22102008-03-26 14:42 +0000 [r9681] Elan Ruusamäe <glen/at/pld-linux.org>
2211
2212 * sysconfig/network: - i always set full hostname here, why "only
2213 hostname" comment?
2214
22152008-03-26 08:46 +0000 [r9680] Sławomir Paszkiewicz <paszczus/at/pld-linux.org>
2216
2217 * sysconfig/network-scripts/ifup-ppp: - "sync" option must be used
2218 before "plugin" option - changes made by seba (at) pro-ject.net
2219 (merged from cvs)
2220
22212008-03-26 08:42 +0000 [r9677-9679] Sławomir Paszkiewicz <paszczus/at/pld-linux.org>
2222
2223 * sysconfig/interfaces/Makefile.am: - added
2224 ifcfg-ppp0.ueagle4-neostrada
2225
2226 * sysconfig/interfaces/ifcfg-description: - added SYNC option
2227
2228 * sysconfig/interfaces/ifcfg-ppp0.ueagle4-neostrada (added): -
2229 config for neostrada using usb modem Sagem E4
2230
22312008-03-26 08:11 +0000 [r9675] Elan Ruusamäe <glen/at/pld-linux.org>
2232
2233 * configure.ac: - release 0.4.1.17
2234
b214adc3
ER
22352008-03-25 23:41 +0000 [r9674] Elan Ruusamäe <glen/at/pld-linux.org>
2236
2237 * rc.d/init.d/template.init: - more chkconfig vars
2238
22392008-03-25 15:14 +0000 [r9670-9671] Elan Ruusamäe <glen/at/pld-linux.org>
2240
2241 * sysconfig/network-scripts/ifup-ppp: - actually check $MODEMPORT
2242 being chardevice after all *DSL variants
2243
2244 * sysconfig/network-scripts/ifup-ppp: - check $MODEMPORT set from
2245 config (not the value set from this script)
2246
44179b89
ER
22472008-03-24 19:17 +0000 [r9667-9668] Elan Ruusamäe <glen/at/pld-linux.org>
2248
2249 * configure.ac: - release 0.4.1.16
2250
2251 * sysconfig/network-scripts/functions.network: - return val doc for
2252 check_{mii_tool,ethtool,iwconfig} - code readability
2253
22542008-03-22 12:14 +0000 [r9649] Jakub Bogusz <qboosh/at/pld-linux.org>
2255
2256 * sysconfig/interfaces/ifcfg-description: - typo
2257
22582008-03-19 14:21 +0000 [r9646] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2259
2260 * rc.d/rc.shutdown: Use .sh - safer.
2261
22622008-03-19 12:51 +0000 [r9645] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2263
2264 * rc.d/rc.shutdown: Multiple UPS support.
2265
22662008-03-09 12:33 +0000 [r9575] Jakub Bogusz <qboosh/at/pld-linux.org>
2267
2268 * setsysfont: - use "locale charmap" to detect UTF-8 locales
2269 properly - call unicode_stop for non-UTF locales (Linux 2.6.24+
2270 has unicode console by default)
2271
22722008-03-01 18:01 +0000 [r9549] Andrzej Dopierała <undefine/at/pld-linux.org>
2273
2274 * sysconfig/interfaces/ifcfg-eth0: - add commented DHCP_OPTIONS
2275 option to show how to pass parameters to dhcp client
2276
8846e4c1
ER
22772008-02-27 10:35 +0000 [r9533] Elan Ruusamäe <glen/at/pld-linux.org>
2278
2279 * sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown:
2280 - fix for network script that it does not enslave eth interfaces
2281 from it during stop phase (Ilja Bobkevič)
2282
c532e0cd
ER
22832008-02-18 20:56 +0000 [r9424] Elan Ruusamäe <glen/at/pld-linux.org>
2284
2285 * sysconfig/network-scripts/ifup-ppp: - require $MODEMPORT being
2286 character device (/dev/modem, /dev/tts/USB0)
2287
22882008-02-14 15:23 +0000 [r9346] Elan Ruusamäe <glen/at/pld-linux.org>
2289
2290 * sysconfig/interfaces/ifcfg-ppp0.pppoe (added): - add config i
2291 used for adsl setup
2292
22932008-02-11 10:16 +0000 [r9303] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2294
2295 * rc.d/rc.shutdown: mdadm stop will yell that it can't stop rootfs
2296 array. Such errors are misleading and useless.
2297
22982008-02-09 20:00 +0000 [r9279] Elan Ruusamäe <glen/at/pld-linux.org>
2299
2300 * sysconfig/network-scripts/ifup-ppp: - fail on required MODEMPORT
2301 (or set it to /dev/modem?)
2302
23032008-02-08 22:58 +0000 [r9254] Elan Ruusamäe <glen/at/pld-linux.org>
2304
2305 * sysconfig/network-scripts/ifup-ppp: - typo
2306
23072008-02-08 22:17 +0000 [r9252-9253] Elan Ruusamäe <glen/at/pld-linux.org>
2308
2309 * sysconfig/interfaces/data/Makefile.am: - kõu disconnect script
2310
2311 * sysconfig/interfaces/data/chat-ppp0.kou-disconnect (added): -
2312 disconnect script (not tested)
2313
23142008-02-08 19:34 +0000 [r9240-9245] Elan Ruusamäe <glen/at/pld-linux.org>
2315
4ca37ca2
JR
2316 * sysconfig/interfaces/Makefile.am,
2317 sysconfig/interfaces/data/Makefile.am: - files for kõu
c532e0cd
ER
2318 (http://www.kou.ee/)
2319
2320 * sysconfig/interfaces/ifcfg-ppp0.kou: - renamed chatscript
2321
2322 * sysconfig/interfaces/data/chat-ppp0.kou (added),
2323 sysconfig/interfaces/data/chat-kou (removed): - renamed
2324
2325 * sysconfig/interfaces/ifcfg-ppp0.kou (added),
2326 sysconfig/interfaces/ifcfg-kou (removed): - renamed
2327
2328 * sysconfig/interfaces/data/chat-kou (added): - chat script for kõu
2329 (http://www.kou.ee/)
2330
2331 * sysconfig/interfaces/ifcfg-kou (added): - config for kõu
2332 (http://www.kou.ee/)
2333
23342008-02-08 17:34 +0000 [r9238] Elan Ruusamäe <glen/at/pld-linux.org>
2335
2336 * rc.d/rc.sysinit: - use find to overcome arguments length exceeded
2337 when descending to php sessions dir (and yes, /usr is already
2338 mounted when this code is ran)
2339
23402008-02-08 15:39 +0000 [r9237] Elan Ruusamäe <glen/at/pld-linux.org>
2341
2342 * sysconfig/network-scripts/ifup-ppp: - give hint on missing
2343 chatscript error
2344
23452008-02-08 14:54 +0000 [r9236] Elan Ruusamäe <glen/at/pld-linux.org>
2346
2347 * sysconfig/interfaces/ifcfg-description: - placeholder for
2348 WVDIALSECT
2349
23502008-01-29 12:10 +0000 [r9209] Elan Ruusamäe <glen/at/pld-linux.org>
2351
2352 * modules: - mention that /etc/modules.X.Y and /etc/modules.X.Y.Z
2353 are readed too - mention that module options are processed too
2354
23552008-01-15 09:40 +0000 [r9174] Elan Ruusamäe <glen/at/pld-linux.org>
2356
2357 * rc.d/rc.local: - leave EOF clean ;)
2358
22101dbe
ER
23592007-12-30 13:31 +0000 [r9170] Elan Ruusamäe <glen/at/pld-linux.org>
2360
2361 * configure.ac: - prepare 0.4.1.15
2362
23632007-12-27 00:52 +0000 [r9162] Elan Ruusamäe <glen/at/pld-linux.org>
2364
2365 * rc.d/init.d/functions: - handle when there's no terminal attached
2366 (f.e gui tools like smart)
2367
23682007-12-17 17:39 +0000 [r9145] Elan Ruusamäe <glen/at/pld-linux.org>
2369
2370 * rc.d/init.d/local: - implement status
2371
23722007-12-17 17:35 +0000 [r9144] Elan Ruusamäe <glen/at/pld-linux.org>
2373
2374 * rc.d/init.d/allowlogin: - implement status
2375
23762007-12-11 12:29 +0000 [r9137-9140] Elan Ruusamäe <glen/at/pld-linux.org>
2377
2378 * configure.ac: - prepare 0.4.1.14
d1437047
ER
2379
2380 * rc.d/rc.sysinit: - load dm-multipath module before multipath
2381 activating for setups when rootfs was not also on multipath
2382
246266cd
ER
23832007-12-10 22:25 +0000 [r9135] Elan Ruusamäe <glen/at/pld-linux.org>
2384
2385 * lang.sh: - cosmetics
2386
23872007-12-10 22:20 +0000 [r9134] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2388
2389 * lang.sh: Don't overwrite session settings (that can be comming
2390 from ssh).
2391
23922007-12-08 13:05 +0000 [r9132] Elan Ruusamäe <glen/at/pld-linux.org>
2393
2394 * rc.d/init.d/network: - cleanups
2395
23962007-12-08 13:02 +0000 [r9130-9131] Elan Ruusamäe <glen/at/pld-linux.org>
2397
2398 * rc.d/init.d/network: - added reload target (will ask DHCP client
2399 to renew lease), only dhcpcd supported for now
2400
2401 * sysconfig/network-scripts/functions.network: - minor cosetics
2402
24032007-12-05 13:15 +0000 [r9128] Elan Ruusamäe <glen/at/pld-linux.org>
2404
2405 * rc.d/Makefile.am, rc.d/rc.modules (removed): - rc.modules
2406 functionality integrated to rc.sysinit
2407
24082007-12-05 13:02 +0000 [r9127] Elan Ruusamäe <glen/at/pld-linux.org>
2409
2410 * rc.d/rc.sysinit: - formatting
2411
24122007-12-01 20:49 +0000 [r9125] Adam Gołębiowski <adamg/at/pld-linux.org>
2413
2414 * rc.d/rc.sysinit: - skip fsck on / if device node doesn't exist
2415 yet, e.g.: rootfs-on-lvm and udev is used (perhaps we should try
2416 to fsck / once more later on?)
2417
24182007-11-28 20:28 +0000 [r9117] Jakub Bogusz <qboosh/at/pld-linux.org>
2419
2420 * rc.d/init.d/template.init: - simplicity and verboseness wins: let
2421 try-restart inform if service is not running
2422
24232007-11-26 20:37 +0000 [r9102] Elan Ruusamäe <glen/at/pld-linux.org>
2424
b30f8040
AM
2425 * sysconfig/network-scripts/ifdown,
2426 sysconfig/network-scripts/functions.network,
2427 sysconfig/network-scripts/ifup: - apply
2428 SOURCES/rc-scripts-dev_alias.patch (if it is buggy then the bugs
2429 should be fixed -- it's been applied in pld ac for ages)
246266cd
ER
2430
24312007-11-26 20:32 +0000 [r9101] Elan Ruusamäe <glen/at/pld-linux.org>
2432
2433 * rc.d/rc.sysinit: - /etc/rc.d/rc.modules moved to internal
2434 functions - module paramters also accepted from modules file
2435
24362007-11-26 20:15 +0000 [r9100] Elan Ruusamäe <glen/at/pld-linux.org>
2437
2438 * rc.d/rc.sysinit: - make $RUN_DEPMOD=ifmissing really behave so as
2439 described (depmod -A stats every module file in modules dir)
2440
24412007-11-26 20:08 +0000 [r9096-9099] Elan Ruusamäe <glen/at/pld-linux.org>
2442
2443 * rc.d/rc.modules: - plain modprobe the module - skip loading
2444 rc-scripts functions if they appear to be loaded already
2445
2446 * rc.d/rc.shutdown: - apply SOURCES/rc-scripts-fuser.patch
2447
2448 * rc.d/init.d/functions: - tab-safe is_empty_file() now (from
2449 rc.modules)
2450
2451 * sysconfig/system: - add $RC_BOOTLOG=yes
2452
24532007-11-26 17:46 +0000 [r9092] Elan Ruusamäe <glen/at/pld-linux.org>
2454
2455 * configure.ac: - prepare 0.4.1.13
2456
7d128417
ER
24572007-11-25 11:18 +0000 [r9091] Jakub Bogusz <qboosh/at/pld-linux.org>
2458
2459 * rc.d/init.d/template.init: - force-reload is not supposed to
2460 start service if it is not running - new try-restart action (as
2461 specified by LSB 3.1.0, formerly "condrestart" in some distros)
2462 it should restart service if running and just exit sucessfully
2463 otherwise
2464
24652007-11-25 08:46 +0000 [r9090] Jakub Bogusz <qboosh/at/pld-linux.org>
2466
2467 * rc.d/init.d/template.init: - simplified
2468
24692007-11-21 23:24 +0000 [r9076-9077] Elan Ruusamäe <glen/at/pld-linux.org>
2470
2471 * rc.d/init.d/template.init: - better this way
2472
2473 * rc.d/init.d/template.init: - this should be restart, who put
2474 reload there?
2475
24762007-11-21 23:18 +0000 [r9074-9075] Elan Ruusamäe <glen/at/pld-linux.org>
2477
2478 * rc.d/init.d/template.init: - reload also could use pidfile
2479
2480 * rc.d/init.d/template.init: - one more killproc sample
2481
24822007-11-13 18:57 +0000 [r9043] Elan Ruusamäe <glen/at/pld-linux.org>
2483
2484 * rc.d/rc.sysinit: - suffix dm-multipath partitions with pN
2485
24862007-11-09 01:54 +0000 [r9033] Elan Ruusamäe <glen/at/pld-linux.org>
2487
2488 * rc.d/rc.shutdown: - blogd might be already down and it might had
2489 been started manually
2490
24912007-11-09 01:47 +0000 [r9032] Elan Ruusamäe <glen/at/pld-linux.org>
2492
2493 * sysconfig/hwprofiles/Makefile.am: - if the file is not packaged
2494 in spec, don't install it either
2495
24962007-11-09 01:37 +0000 [r9030-9031] Elan Ruusamäe <glen/at/pld-linux.org>
2497
b30f8040 2498 * rc.d/rc.sysinit, rc.d/rc.shutdown: - /etc/crypttab shouldn't be
7d128417
ER
2499 empty when using it
2500
2501 * rc.d/init.d/functions: - add is_empty_file() function
2502
25032007-11-09 01:20 +0000 [r9028-9029] Elan Ruusamäe <glen/at/pld-linux.org>
2504
2505 * crypttab (added), Makefile.am: - add sample /etc/crypttab
2506
2507 * TODO: - cleanup
2508
25092007-11-09 01:10 +0000 [r9027] Elan Ruusamäe <glen/at/pld-linux.org>
2510
b30f8040 2511 * rc.d/rc.sysinit, rc.d/rc.shutdown: - bugfixes for crypttab
7d128417
ER
2512
25132007-11-09 00:49 +0000 [r9025-9026] Elan Ruusamäe <glen/at/pld-linux.org>
2514
2515 * rc.d/rc.shutdown: - add /etc/crypttab processing
2516
2517 * rc.d/init.d/cryptsetup: - add halt_crypto() from fc
2518 initscripts-8.54 - add standalone mode for start/stop
2519
25202007-11-09 00:37 +0000 [r9024] Elan Ruusamäe <glen/at/pld-linux.org>
2521
2522 * rc.d/rc.sysinit: - initial /etc/crypttab processing
2523
25242007-11-09 00:33 +0000 [r9021-9023] Elan Ruusamäe <glen/at/pld-linux.org>
2525
2526 * rc.d/init.d/Makefile.am: - add cryptsetup
2527
2528 * rc.d/init.d/cryptsetup (added): - based on code from rc.sysinit
2529 of fc initscripts-8.54
2530
2531 * man/Makefile.am, man/crypttab.5 (added): - add crypttab.5 from fc
2532 initscripts-8.54
2533
25342007-11-09 00:21 +0000 [r9020] Elan Ruusamäe <glen/at/pld-linux.org>
2535
2536 * rc.d/init.d/random: - use subsys lock files
2537
25382007-11-09 00:00 +0000 [r9019] Elan Ruusamäe <glen/at/pld-linux.org>
2539
b30f8040 2540 * rc.d/rc.shutdown, rc.d/rc.sysinit: - blogd updates
7d128417
ER
2541
25422007-11-08 00:42 +0000 [r9016] Elan Ruusamäe <glen/at/pld-linux.org>
2543
b30f8040 2544 * src/usleep.c, man/usleep.1, src/Makefile.am: - update with suse
7d128417
ER
2545 variant from killproc-2.12 (and who's oot?
2546 http://lists.rpath.com/pipermail/initscripts-commits/2006-December/000573.html)
2547
25482007-11-08 00:29 +0000 [r9013-9015] Elan Ruusamäe <glen/at/pld-linux.org>
2549
2550 * src/initlog.c: - update from initscripts-8.54, except killing
2551 startDaemon() and adding deprecation message
2552
2553 * src/initlog.conf: - update from initscripts-8.54
2554
2555 * src/minilogd.c: - update from initscripts-8.54
2556
e49f84a3
ER
25572007-11-06 18:55 +0000 [r9004-9005] Elan Ruusamäe <glen/at/pld-linux.org>
2558
2559 * configure.ac: - release 0.4.1.12
2560
2561 * rc.d/init.d/functions: - missing shift for nice level parsing in
2562 daemon(). fixes some (broken) initscripts
2563
25642007-11-05 18:09 +0000 [r8991] Elan Ruusamäe <glen/at/pld-linux.org>
2565
2566 * sysconfig/clock: - UTC clock by default. See:
2567 http://glen.alkohol.ee/pld/clock-utc.html
2568
25692007-11-02 02:29 +0000 [r8957-8959] Elan Ruusamäe <glen/at/pld-linux.org>
2570
2571 * configure.ac: - release 0.4.1.11
2572
2573 * rc.d/init.d/functions: - ksh doesn't like $2 in # modifier
2574
54c89f1d
ER
25752007-11-01 13:23 +0000 [r8947-8948] Elan Ruusamäe <glen/at/pld-linux.org>
2576
2577 * man/fstab-decode.8 (added): - add from fc
2578
2579 * src/fstab-decode.c (added): - add from fc
2580
25812007-11-01 13:20 +0000 [r8946] Elan Ruusamäe <glen/at/pld-linux.org>
2582
2583 * configure.ac: - release 0.4.1.10
2584
25852007-11-01 12:20 +0000 [r8944] Elan Ruusamäe <glen/at/pld-linux.org>
2586
2587 * rc.d/rc.sysinit: - /dev (with devfs) could be mounted by kernel
2588 (arekm note)
2589
25902007-11-01 03:00 +0000 [r8941-8942] Elan Ruusamäe <glen/at/pld-linux.org>
2591
b30f8040 2592 * man/Makefile.am, src/Makefile.am: - add fstab-decode from rh
54c89f1d
ER
2593
2594 * rc.d/rc.sysinit: - don't get tempted to kill blogd
2595
25962007-11-01 02:53 +0000 [r8940] Elan Ruusamäe <glen/at/pld-linux.org>
2597
2598 * rc.d/rc.sysinit: - read /proc/cmdline after /proc mount
2599
26002007-11-01 02:36 +0000 [r8937-8939] Elan Ruusamäe <glen/at/pld-linux.org>
2601
2602 * sysconfig/system: - devfs comment update
2603
2604 * rc.d/rc.sysinit: - devfsd without devfs makes no sense :)
2605
2606 * rc.d/rc.sysinit: - no need to source udev configs here - just
2607 umount /initrd/dev without checking
2608
46fe5da7
ER
26092007-11-01 02:10 +0000 [r8935] Elan Ruusamäe <glen/at/pld-linux.org>
2610
2611 * rc.d/rc.sysinit: - $PATH is set from init.d/functions - improve
2612 dm-multipath setup - attempt harder to create all LVM nodes, even
2613 the ones initialized from initrd - kill blogd at the end of
2614 script
2615
26162007-11-01 02:06 +0000 [r8934] Elan Ruusamäe <glen/at/pld-linux.org>
2617
2618 * rc.d/rc.sysinit: - umount /initrd earlier, right after udev
2619 startup
2620
26212007-11-01 01:34 +0000 [r8932-8933] Elan Ruusamäe <glen/at/pld-linux.org>
2622
2623 * rc.d/init.d/functions: - strstr() from fedora initscripts
2624
2625 * rc.d/rc.sysinit: - read /proc/cmdline just once (idea stolen from
2626 fedora)
2627
26282007-11-01 01:23 +0000 [r8930-8931] Elan Ruusamäe <glen/at/pld-linux.org>
2629
b30f8040 2630 * rc.d/init.d/functions, rc.d/rc.sysinit: - disable_selinux(),
46fe5da7
ER
2631 relabel_selinux(), clean_vserver_mtab() used only in rc.sysinit,
2632 moved there
2633
2634 * rc.d/init.d/functions: - local vars
2635
26362007-11-01 01:13 +0000 [r8929] Elan Ruusamäe <glen/at/pld-linux.org>
2637
2638 * rc.d/init.d/functions: - drop redhat/mandrake compat - simple if
2639 should be lighter than function call
2640
26412007-11-01 01:05 +0000 [r8927-8928] Elan Ruusamäe <glen/at/pld-linux.org>
2642
2643 * rc.d/init.d/functions: - drop unneeded subshell
2644
2645 * rc.d/init.d/functions: - use shell construct to test is pathname
2646 full path
2647
26482007-11-01 00:59 +0000 [r8926] Elan Ruusamäe <glen/at/pld-linux.org>
2649
2650 * rc.d/init.d/functions: - use shell constructs for basename()
2651
26522007-11-01 00:54 +0000 [r8925] Elan Ruusamäe <glen/at/pld-linux.org>
2653
2654 * rc.d/init.d/functions: - avoid endless loop when one puts --user
2655 after daemon name - some small optimizations - update daemon()
2656 usage
2657
26582007-11-01 00:48 +0000 [r8924] Elan Ruusamäe <glen/at/pld-linux.org>
2659
2660 * sysconfig/system: - add DEFAULT_SERVICE_UMASK=022
2661
26622007-11-01 00:35 +0000 [r8922-8923] Elan Ruusamäe <glen/at/pld-linux.org>
2663
2664 * rc.d/init.d/functions: - shell version
2665
2666 * rc.d/init.d/functions: - set ulimits with one awk call in
2667 daemon()
2668
26692007-10-31 23:31 +0000 [r8920-8921] Elan Ruusamäe <glen/at/pld-linux.org>
2670
2671 * dumb.sh: - usable
2672
2673 * rc.d/init.d/functions: - typo?
2674
26752007-10-31 20:48 +0000 [r8919] Elan Ruusamäe <glen/at/pld-linux.org>
2676
2677 * rc.d/rc.sysinit: - small cleanups and fixes
2678
26792007-10-30 19:42 +0000 [r8904] Elan Ruusamäe <glen/at/pld-linux.org>
2680
2681 * rc.d/rc.sysinit: - move $MODULES_CONF closer where it is used
2682
26832007-10-30 16:23 +0000 [r8903] Elan Ruusamäe <glen/at/pld-linux.org>
2684
2685 * rc.d/rc.sysinit: - fix obvious typo (perhaps drop it as it never
2686 worked?)
2687
26882007-10-30 16:10 +0000 [r8901-8902] Elan Ruusamäe <glen/at/pld-linux.org>
2689
2690 * rc.d/rc.sysinit: - activate dm-multipath
2691
2692 * rc.d/rc.sysinit: - small optimize to use only awk
2693
26942007-10-29 11:29 +0000 [r8897] Elan Ruusamäe <glen/at/pld-linux.org>
2695
2696 * sysconfig/network-scripts/ifup: - assume default
2697 WLAN_WPA_CONFIG=/etc/wpa_supplicant.conf
2698
26992007-10-28 17:58 +0000 [r8891-8893] Elan Ruusamäe <glen/at/pld-linux.org>
2700
2701 * sysconfig/interfaces/ifcfg-description: - $HOTPLUG is processed
2702 by udev (udev_net_helper)
2703
2704 * sysconfig/network-scripts/functions.network: - allow
2705 WLAN_MODE=managed in lowercase (as it's in doc)
2706
2707 * sysconfig/network-scripts/functions.network: - key index and
2708 value should be different arguments
2709
27102007-10-28 17:36 +0000 [r8890] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2711
2712 * rc.d/rc.shutdown: Revert ntfsfix. Please use something like
2713 init.d/ntfsfix for that.
2714
27152007-10-28 16:59 +0000 [r8887-8889] Elan Ruusamäe <glen/at/pld-linux.org>
2716
2717 * sysconfig/network-scripts/functions.network: - [ -n "" ] and [ ""
2718 ] are the same, save some bytes/readability ;)
2719
2720 * sysconfig/network-scripts/functions.network: - handle wlan
2721 different four keys
2722
2723 * sysconfig/interfaces/ifcfg-description: - new WLAN options
2724
27252007-10-28 16:43 +0000 [r8885-8886] Elan Ruusamäe <glen/at/pld-linux.org>
2726
2727 * sysconfig/network-scripts/functions.network: - reuse
2728 WLAN_ENCRYPTION
2729
2730 * sysconfig/network-scripts/functions.network: - optimize
2731 wireless_param() by calling eval once
2732
27332007-10-28 16:13 +0000 [r8884] Elan Ruusamäe <glen/at/pld-linux.org>
2734
2735 * sysconfig/network-scripts/functions.network: - no need for
2736 LC_ALL=C to grep fixed string
2737
27382007-10-28 13:06 +0000 [r8883] Paweł Gołaszewski <blues/at/pld-linux.org>
2739
2740 * rc.d/rc.shutdown: - run ntfsfix if there are some ntfs
2741 filesystems mounted and if proper app is installed
2742
27432007-10-26 12:48 +0000 [r8878] Elan Ruusamäe <glen/at/pld-linux.org>
2744
2745 * sysconfig/system: - use default nice "+0" to avoid confusion as
2746 "0" is not valid in service setup
2747
27482007-10-04 20:22 +0000 [r8778] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2749
2750 * rc.d/rc.sysinit: Activate ATARAID devices.
2751
27522007-10-03 13:10 +0000 [r8771] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2753
2754 * sysconfig/network-scripts/functions.network: Do sanity check only
2755 when configuration file exists.
2756
27572007-10-03 06:55 +0000 [r8770] Elan Ruusamäe <glen/at/pld-linux.org>
2758
2759 * sysconfig/network-scripts/ifup: - trim network length from
2760 $IP4ADDR when doing arping
2761
27622007-10-02 22:32 +0000 [r8769] Jan Rękorajski <baggins/at/pld-linux.org>
2763
2764 * rc.d/rc.sysinit: - don't try to update mtab when mounting usbfs
2765 (root is ro yet)
2766
27672007-10-01 08:45 +0000 [r8768] Elan Ruusamäe <glen/at/pld-linux.org>
2768
2769 * sysconfig/network-scripts/functions.network: - support $IPADDR +
2770 $NETMASK combination if no prefix in $IPADDR present
2771
96cdeeff
ER
27722007-09-26 12:17 +0000 [r8753-8754] Elan Ruusamäe <glen/at/pld-linux.org>
2773
2774 * configure.ac: - 0.4.1.9
2775
2776 * sysconfig/network-scripts/ifup: - typo in arping line
2777
27782007-09-25 15:59 +0000 [r8751] Jan Rękorajski <baggins/at/pld-linux.org>
2779
2780 * rc.d/rc.shutdown: - typo
2781
27822007-09-25 15:54 +0000 [r8749-8750] Jan Rękorajski <baggins/at/pld-linux.org>
2783
2784 * rc.d/init.d/network: - no need to play with NFS, it screws up /
2785 over NFS and we have nfsfs for it
2786
2787 * rc.d/init.d/local: - source functions library (for msg_usage), no
2788 need to set PATH
2789
27902007-09-25 11:34 +0000 [r8745-8746] Elan Ruusamäe <glen/at/pld-linux.org>
2791
2792 * configure.ac: - 0.4.1.8
2793
2794 * sysconfig/network: - more info about AUTOMATIC_IFCFG
2795
c25bdcb1
ER
27962007-09-11 18:47 +0000 [r8720] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2797
2798 * sysconfig/network-scripts/ifup: PLDize ARP cache updating
2799 procedure.
2800
28012007-09-11 18:33 +0000 [r8719] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2802
2803 * sysconfig/network-scripts/ifup: Update ARP cache of neighbours
2804 (from fedora).
2805
28062007-07-14 20:33 +0000 [r8676] Radosław Zieliński <radek/at/pld-linux.org>
2807
2808 * sysconfig/network: - AUTOMATIC_IFCFG=no
2809
28102007-07-03 11:51 +0000 [r8656-8658] Elan Ruusamäe <glen/at/pld-linux.org>
2811
2812 * configure.ac: - release 0.4.1.7
2813
2814 * rc.d/init.d/functions: - do not depend on which command to find
2815 rpcinfo
2816
34f8ae99
ER
28172007-06-14 18:42 +0000 [r8640] Elan Ruusamäe <glen/at/pld-linux.org>
2818
b30f8040 2819 * sysconfig/network-scripts/bondup (removed),
34f8ae99 2820 sysconfig/network-scripts/Makefile.am,
b30f8040
AM
2821 sysconfig/network-scripts/bonddown (removed),
2822 sysconfig/interfaces/Makefile.am, rc.d/init.d/network,
2823 sysconfig/interfaces/ifcfg-bond0 (removed): - revert bonding
4ca37ca2 2824 support (unfinished and broken)
34f8ae99
ER
2825
28262007-06-05 10:45 +0000 [r8637-8638] Elan Ruusamäe <glen/at/pld-linux.org>
2827
2828 * sysconfig/interfaces/Makefile.am: - add ifcfg-bond0
2829
2830 * sysconfig/interfaces/ifcfg-bond0 (added): - sample config
2831
28322007-06-05 10:39 +0000 [r8636] Elan Ruusamäe <glen/at/pld-linux.org>
2833
b30f8040
AM
2834 * sysconfig/network-scripts/Makefile.am,
2835 sysconfig/network-scripts/bonddown (added), rc.d/init.d/network,
2836 sysconfig/network-scripts/bondup (added): - bonding support by
4ca37ca2 2837 Justas Vilimas
34f8ae99
ER
2838
28392007-06-05 10:27 +0000 [r8635] Elan Ruusamäe <glen/at/pld-linux.org>
2840
2841 * TODO: - save
2842
28432007-05-30 11:51 +0000 [r8631] Elan Ruusamäe <glen/at/pld-linux.org>
2844
b30f8040 2845 * rc.d/rc.shutdown, rc.d/rc, rc.d/rc.sysinit, rc.d/init.d/single: -
34f8ae99
ER
2846 see ChangeLog for Changes
2847
28482007-05-09 20:40 +0000 [r8500] Elan Ruusamäe <glen/at/pld-linux.org>
2849
2850 * rc.d/init.d/functions: - keep /etc/mtab permissions (whatever
2851 they are) inside vserver - which outputs to stderr if it can't
2852 find the program
2853
28542007-05-01 01:10 +0000 [r8489] Jan Rękorajski <baggins/at/pld-linux.org>
2855
2856 * configure.ac: - 0.4.1.6
2857
1c5214fd
JR
28582007-05-01 01:02 +0000 [r8488] Jan Rękorajski <baggins/at/pld-linux.org>
2859
2860 * DEVELOPMENT: - added warning about parenthesis in command
2861 substitution
2862
28632007-05-01 00:53 +0000 [r8487] Jan Rękorajski <baggins/at/pld-linux.org>
2864
a2ee7529 2865 * rc.d/rc.sysinit, rc.d/init.d/network: - reverted some command
1c5214fd
JR
2866 substitution changes due to conflicting parenthesis
2867
28682007-04-28 18:34 +0000 [r8484-8485] Jakub Bogusz <qboosh/at/pld-linux.org>
2869
2870 * sysconfig/network-scripts/ifdown-ppp: - kill ugly warning if pppd
2871 was nicely killed
2872
b30f8040 2873 * ppp/ip-down, ppp/ip-up: - proper CONFIG sources (needed to
1c5214fd
JR
2874 override DEVICE from pppd and get ppp/ip-{up,down} scripts work
2875 again
2876
28772007-04-27 20:45 +0000 [r8483] Jan Rękorajski <baggins/at/pld-linux.org>
2878
2879 * rc.d/init.d/functions: - restore stderr redirection
2880
28812007-04-27 20:21 +0000 [r8482] Jan Rękorajski <baggins/at/pld-linux.org>
2882
2883 * rc.d/init.d/functions: - replace awk usage with shell constructs
2884
28852007-04-27 14:02 +0000 [r8481] Jan Rękorajski <baggins/at/pld-linux.org>
2886
2887 * rc.d/rc.modules: - replace awk usage with shell constructs
2888
28892007-04-27 13:32 +0000 [r8480] Jan Rękorajski <baggins/at/pld-linux.org>
2890
2891 * rc.d/rc: - replace awk usage with shell constructs
2892
28932007-04-26 22:03 +0000 [r8479] Jan Rękorajski <baggins/at/pld-linux.org>
2894
2895 * rc.d/init.d/functions: - removed unneeded termput hpa
2896
28972007-04-26 21:38 +0000 [r8478] Jan Rękorajski <baggins/at/pld-linux.org>
2898
2899 * rc.d/init.d/functions: - shell magic fixing screwed dots in
2900 show() on serial console
2901
29022007-04-26 16:51 +0000 [r8475] Jan Rękorajski <baggins/at/pld-linux.org>
2903
2904 * configure.ac: - Release 0.4.1.5
2905
248786a8
JR
29062007-04-26 16:45 +0000 [r8474] Jan Rękorajski <baggins/at/pld-linux.org>
2907
2908 * setsysfont: - replaced sed with awk
2909
29102007-04-26 15:56 +0000 [r8473] Jan Rękorajski <baggins/at/pld-linux.org>
2911
b30f8040
AM
2912 * sysconfig/network-scripts/ifdown, ppp/ip-up.d/logger,
2913 rc.d/rc.sysinit, run-parts, sysconfig/interfaces/up.d/ppp/logger,
2914 ppp/ip-down.d/logger, sysconfig/interfaces/down.d/ppp/logger,
2915 sysconfig/hwprofiles/Makefile.am, service, rc.d/init.d/cpusets,
2916 sysconfig/network-scripts/functions.network,
a2ee7529 2917 sysconfig/network-scripts/ifup-ipx, rc.d/init.d/network,
b30f8040
AM
2918 sysconfig/network-scripts/ifup: - use $() for command
2919 substitution
248786a8
JR
2920
29212007-04-26 15:30 +0000 [r8472] Jan Rękorajski <baggins/at/pld-linux.org>
2922
2923 * rc.d/init.d/functions: - unify command substitution (`` -> $())
2924
29252007-04-26 15:24 +0000 [r8471] Jan Rękorajski <baggins/at/pld-linux.org>
2926
2927 * rc.d/init.d/functions: - typeset local in check_portmapper
2928
29292007-04-26 14:55 +0000 [r8470] Jan Rękorajski <baggins/at/pld-linux.org>
2930
2931 * rc.d/init.d/functions: - generic check_portmapper function
2932
29332007-04-16 17:26 +0000 [r8460] Jan Rękorajski <baggins/at/pld-linux.org>
2934
2935 * sysconfig/network-scripts/functions.network: - use shell
2936 construct instead of grep in calcnetmask
2937
29382007-04-16 16:21 +0000 [r8459] Jan Rękorajski <baggins/at/pld-linux.org>
2939
2940 * sysconfig/network-scripts/functions.network: - calcprefix without
2941 need of awk
2942
29432007-04-14 21:55 +0000 [r8458] Paweł Gołaszewski <blues/at/pld-linux.org>
2944
2945 * rc.d/init.d/functions: - allow to have more than one line in
2946 pidfile
2947
29482007-03-20 12:09 +0000 [r8389] Jan Rękorajski <baggins/at/pld-linux.org>
2949
2950 * rc.d/init.d/network: - simpler way to umount nfs4
2951
29522007-03-20 11:53 +0000 [r8388] Jan Rękorajski <baggins/at/pld-linux.org>
2953
2954 * rc.d/init.d/network: - unmount NFSv4 filesystems
2955
29562007-03-20 11:48 +0000 [r8387] Jan Rękorajski <baggins/at/pld-linux.org>
2957
2958 * rc.d/rc.sysinit: - cleaner solution for empty hostname
2959
29602007-03-19 18:58 +0000 [r8384] Jan Rękorajski <baggins/at/pld-linux.org>
2961
2962 * rc.d/rc.sysinit: - nfs4 is also non-local fs
2963
29642007-03-19 17:27 +0000 [r8383] Jan Rękorajski <baggins/at/pld-linux.org>
2965
2966 * rc.d/rc.sysinit: - in case of empty HOSTNAME set it to what the
2967 kernel thinks it is (for example workstation with kernel level IP
2968 config and / over NFS)
2969
29702007-03-15 17:19 +0000 [r8379] Elan Ruusamäe <glen/at/pld-linux.org>
2971
2972 * rc.d/rc.sysinit: - can start blogd rather earlier
2973
29742007-03-14 18:51 +0000 [r8378] Jan Rękorajski <baggins/at/pld-linux.org>
2975
2976 * rc.d/init.d/cpusets: - fixed glen's misoptimization
2977
29782007-03-13 17:11 +0000 [r8372-8373] Elan Ruusamäe <glen/at/pld-linux.org>
2979
2980 * rc.d/init.d/template.init: - avoid doing something silly if plain
2981 template is used
2982
2983 * rc.d/init.d/template.init: - start does not have exit code
2984
29852007-03-09 21:10 +0000 [r8371] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
2986
2987 * sysconfig/interfaces/ifcfg-eth0: Add sfq as default qdisc.
2988
29892007-03-07 10:24 +0000 [r8367] Elan Ruusamäe <glen/at/pld-linux.org>
2990
2991 * changelog.sh: - correct comment
2992
29932007-03-02 15:37 +0000 [r8323] Elan Ruusamäe <glen/at/pld-linux.org>
2994
2995 * changelog.sh: - detect users file charset
2996
29972007-02-27 21:10 +0000 [r8311-8313] Elan Ruusamäe <glen/at/pld-linux.org>
2998
2999 * rc.d/init.d/random: - comment says do not, so won't!
3000
b30f8040
AM
3001 * rc.d/init.d/random, rc.d/init.d/cpusets, rc.d/init.d/allowlogin,
3002 rc.d/init.d/network, rc.d/init.d/local: - well, PLDIZE!
248786a8 3003
b30f8040 3004 * rc.d/init.d/cpusets, rc.d/init.d/allowlogin,
a2ee7529 3005 rc.d/init.d/functions, rc.d/init.d/Makefile.am,
4ca37ca2 3006 rc.d/init.d/network, rc.d/init.d/local, rc.d/init.d/sys-chroots,
b30f8040
AM
3007 rc.d/init.d/template.init, rc.d/init.d/random,
3008 rc.d/init.d/single, rc.d/init.d/killall: - vim autodetects syntax
3009 from shebang
248786a8 3010
ab308027
ER
30112007-02-25 00:59 +0000 [r8290-8293] Elan Ruusamäe <glen/at/pld-linux.org>
3012
3013 * configure.ac: - Release 0.4.1.4
3014
b30f8040
AM
3015 * sysconfig/Makefile.am, sysconfig/timezone (removed),
3016 rc.d/init.d/Makefile.am, rc.d/init.d/timezone (removed): -
3017 timezone moved to tzdata.spec
ab308027
ER
3018
3019 * DEVELOPMENT: - sync order
3020
3021 * DEVELOPMENT: - how to make release
3022
91ba1769
ER
30232007-02-08 15:42 +0000 [r8239] Elan Ruusamäe <glen/at/pld-linux.org>
3024
3025 * sysconfig/network-scripts/functions.network: - allow tnlcfg-
3026 prefix in interface CONFIGs
3027
30282007-02-05 18:54 +0000 [r8223] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3029
3030 * rc.d/rc.sysinit: Delay (or even skip) clock setting if /dev/rtc
3031 doesn't exist.
3032
30332007-02-04 21:39 +0000 [r8222] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3034
3035 * sysconfig/interfaces/data/chat-ppp0.gprs-plusgsm: Update from
3036 Mateusz Korniak.
3037
30382007-01-28 14:25 +0000 [r8209-8210] Elan Ruusamäe <glen/at/pld-linux.org>
3039
4ca37ca2 3040 * rc.d/rc.sysinit, rc.d/init.d/functions: - $CONSOLETYPE used only
91ba1769
ER
3041 in rc.sysinit
3042
3043 * rc.d/init.d/functions: - termput() cannot cache in shell vars as
3044 it's always called from subshell
3045
30462007-01-28 14:08 +0000 [r8207-8208] Elan Ruusamäe <glen/at/pld-linux.org>
3047
3048 * sysconfig/init-colors, sysconfig/init-colors.gentoo: Typo.
3049
3050 * sysconfig/system: Add VSERVER option here.
3051
30522007-01-22 19:15 +0000 [r8194] Elan Ruusamäe <glen/at/pld-linux.org>
3053
3054 * sysconfig/network-scripts/ifdown: - do sleep 1 only when bringing
3055 down with dhcpcd
3056
30572007-01-22 19:12 +0000 [r8192-8193] Elan Ruusamäe <glen/at/pld-linux.org>
3058
3059 * sysconfig/network-scripts/ifdown: - reuase $DHCP_CLIENT
3060
b30f8040
AM
3061 * sysconfig/network-scripts/ifdown,
3062 sysconfig/network-scripts/functions.network,
3063 sysconfig/network-scripts/ifup: - be sure that dhcp client
3064 detection is same for ifup and ifdown
91ba1769
ER
3065
30662007-01-22 18:47 +0000 [r8189-8191] Elan Ruusamäe <glen/at/pld-linux.org>
3067
3068 * sysconfig/network-scripts/ifup-routes: - kill subshell
3069
3070 * sysconfig/network-scripts/ifup-neigh: - IPV4_NETWORKING does not
3071 change it's value in a loop.
3072
3073 * sysconfig/network-scripts/ifup-aliases,
3074 sysconfig/network-scripts/ifup-routes,
3075 sysconfig/network-scripts/ifup-neigh: - updated comments
3076
30772007-01-22 18:41 +0000 [r8188] Elan Ruusamäe <glen/at/pld-linux.org>
3078
b30f8040
AM
3079 * sysconfig/network-scripts/ifup-neigh,
3080 sysconfig/network-scripts/ifup-aliases,
91ba1769 3081 sysconfig/network-scripts/ifup-routes,
b30f8040 3082 sysconfig/network-scripts/ifup-post: ifup-{aliases,routes,neigh}
91ba1769
ER
3083 are now sourced instead of executed
3084
30852007-01-22 18:37 +0000 [r8187] Elan Ruusamäe <glen/at/pld-linux.org>
3086
3087 * sysconfig/network-scripts/ifup-aliases: Die debug
3088
30892007-01-22 18:16 +0000 [r8186] Elan Ruusamäe <glen/at/pld-linux.org>
3090
3091 * sysconfig/network-scripts/functions.network: Cache hostname
3092 output to call it less times
3093
30942007-01-22 18:09 +0000 [r8185] Elan Ruusamäe <glen/at/pld-linux.org>
3095
3096 * sysconfig/network-scripts/functions.network: Less subshells in
3097 source_config().
3098
30992007-01-18 20:20 +0000 [r8173] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3100
3101 * sysconfig/network-scripts/ifup-aliases: Find out number of
3102 aliases from ifcfg-xyz file.
3103
31042007-01-16 23:00 +0000 [r8171] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3105
3106 * sysconfig/network-scripts/ifup-br: multicast/arp should be set on
3107 slave devices (patch by Szymon Siwek).
3108
31092007-01-11 14:29 +0000 [r8152-8153] Elan Ruusamäe <glen/at/pld-linux.org>
3110
3111 * configure.ac: Release 0.4.1.3
3112
3113 * make-tag.sh (added): Nifty script to make releases in svn tagged.
3114
b65a681c
ER
31152007-01-11 14:19 +0000 [r8149] Elan Ruusamäe <glen/at/pld-linux.org>
3116
3117 * changelog.sh: Autodetect svn path.
3118
31192007-01-11 14:15 +0000 [r8147-8148] Elan Ruusamäe <glen/at/pld-linux.org>
3120
3121 * autogen.sh: Changelog generation moved to separate script.
3122
3123 * changelog.sh (added): Based on geninitrd/changelog.sh
3124
31252007-01-11 14:11 +0000 [r8145] Elan Ruusamäe <glen/at/pld-linux.org>
3126
3127 * Makefile.am: Fix for make distcheck.
3128
9806f136
ER
31292006-12-18 21:28 +0000 [r8111] Elan Ruusamäe <glen/at/pld-linux.org>
3130
3131 * sysctl.conf: Add kernel.core_uses_pid
3132
31332006-12-14 08:08 +0000 [r8100-8101] Elan Ruusamäe <glen/at/pld-linux.org>
3134
3135 * sysconfig/system: Typo.
3136
3137 * sysconfig/system: Spelling
3138
31392006-12-08 12:17 +0000 [r8088] Elan Ruusamäe <glen/at/pld-linux.org>
3140
3141 * Makefile.am: Create /var/cache/rc-scripts/msg.cache on install.
3142
31432006-12-08 12:07 +0000 [r8087] Elan Ruusamäe <glen/at/pld-linux.org>
3144
3145 * sysconfig/network: Add $NETWORKING back, as it's used by a lot of
3146 initscripts
3147
31482006-12-07 22:24 +0000 [r8086] Elan Ruusamäe <glen/at/pld-linux.org>
3149
3150 * rc.d/init.d/cpusets: Error exit code
3151
31522006-12-07 21:52 +0000 [r8085] Elan Ruusamäe <glen/at/pld-linux.org>
3153
3154 * rc.d/init.d/network: Small cosmetics.
3155
31562006-12-07 21:47 +0000 [r8083-8084] Elan Ruusamäe <glen/at/pld-linux.org>
3157
3158 * rc.d/init.d/network: Reindent.
3159
3160 * rc.d/init.d/network: Small reorganizing.
3161
31622006-12-07 21:42 +0000 [r8080-8082] Elan Ruusamäe <glen/at/pld-linux.org>
3163
3164 * sysconfig/network: $NETWORKING was supposed to be obsoleted.
3165
3166 * rc.d/init.d/network: $NETWORKING was supposed to be obsoleted.
3167
3168 * rc.d/init.d/sys-chroots: Optimize for faster exit if not
3169 configured.
3170
31712006-12-07 21:32 +0000 [r8077-8079] Elan Ruusamäe <glen/at/pld-linux.org>
3172
3173 * rc.d/init.d/killall: As we don't source functions, we must set
3174 sane PATH to ensure security
3175
3176 * rc.d/init.d/local: As we don't source functions, we must set sane
3177 PATH to ensure security
3178
3179 * rc.d/init.d/killall: Probability that there exists init.d/$subsys
3180 is bigger than init.d/$subsys.init.
3181
31822006-12-07 21:18 +0000 [r8076] Elan Ruusamäe <glen/at/pld-linux.org>
3183
3184 * rc.d/init.d/cpusets: Exit early if cpusets not enabled in
3185 sysconfig/system.
3186
31872006-12-05 17:39 +0000 [r8073] Elan Ruusamäe <glen/at/pld-linux.org>
3188
3189 * rc.d/rc.shutdown: Fixes for /usr on separate parition (not
3190 tested!).
3191
31922006-12-05 17:32 +0000 [r8072] Elan Ruusamäe <glen/at/pld-linux.org>
3193
3194 * rc.d/init.d/functions: Store cachefile in /var, read/write errors
3195 are ignored anyway.
3196
31972006-12-05 17:07 +0000 [r8070] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3198
3199 * configure.ac: Release 0.4.0.2.
3200
fdfbea57
AM
32012006-11-27 12:36 +0000 [r8006] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3202
3203 * rc.d/rc.sysinit: Revert remounting based on /proc/mounts entries
3204 (current rootfs state is not reflected there).
3205
32062006-11-26 14:35 +0000 [r7999] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3207
3208 * AUTHORS: Readd timezone setup & resolvesymlink to Paweł Wilk.
3209
32102006-11-26 10:05 +0000 [r7998] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3211
b30f8040 3212 * AUTHORS, src/Makefile.am: Fix resolvesymlink_SOURCE typo. Updated
fdfbea57
AM
3213 Paweł Wilk email address.
3214
32152006-11-26 10:02 +0000 [r7997] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3216
b30f8040
AM
3217 * rc.d/init.d/functions, rc.d/rc.shutdown, AUTHORS, po/pl.po,
3218 src/pci-config.c (removed), rc-scripts.spec.in, src/Makefile.am:
3219 Revert nVidia madness. rc-scripts is not a place for such
3220 workaround.
fdfbea57
AM
3221
32222006-11-26 08:06 +0000 [r7993] Paweł Wilk <siefca/at/pld-linux.org>
3223
3224 * rc.d/init.d/functions: - small improvement in
3225 forcedeth_wourkaround()
3226
32272006-11-25 20:36 +0000 [r7992] Paweł Wilk <siefca/at/pld-linux.org>
3228
3229 * rc.d/init.d/functions: - added important check in
3230 forcedeth_workaround() which detects co-working drivers
3231
32322006-11-25 16:01 +0000 [r7991] Paweł Wilk <siefca/at/pld-linux.org>
3233
3234 * po/pl.po: - added translation for WOL work-around message
3235
32362006-11-25 12:09 +0000 [r7989] Paweł Wilk <siefca/at/pld-linux.org>
3237
b30f8040
AM
3238 * src/Makefile.am, rc.d/init.d/functions, rc.d/rc.shutdown,
3239 AUTHORS, src/pci-config.c (added), rc-scripts.spec.in: - added
3240 Wake-On-Lan work-around for nForce ethernet drivers - added
fdfbea57
AM
3241 pci-config utility which allows power state manipulation and
3242 devices listing
3243
32442006-11-19 15:45 +0000 [r7986] Elan Ruusamäe <glen/at/pld-linux.org>
3245
3246 * sysctl.conf: Add dev.rtc.max-user-freq.
3247
32482006-11-01 22:53 +0000 [r7938] Elan Ruusamäe <glen/at/pld-linux.org>
3249
3250 * rc.d/init.d/functions: Ignore errors if msg cachefile can not be
3251 written (functions sourced by non-root user of readonly
3252 filesystem).
3253
32542006-11-01 13:23 +0000 [r7931] Elan Ruusamäe <glen/at/pld-linux.org>
3255
3256 * sysconfig/network-scripts/functions.network: Avoid "RTNETLINK
3257 answers: File exists" message and say possible cause instead.
3258
32592006-11-01 13:09 +0000 [r7930] Elan Ruusamäe <glen/at/pld-linux.org>
3260
3261 * sysconfig/network-scripts/ifup: Pointless subshell dropped
3262
32632006-11-01 00:35 +0000 [r7926] Paweł Gołaszewski <blues/at/pld-linux.org>
3264
3265 * sysconfig/interfaces/ifcfg-description: - more docs
3266
32672006-10-23 14:11 +0000 [r7894] Marcin Winkler <mwinkler/at/pld-linux.org>
3268
3269 * rc.d/init.d/network: - fix s@usb@usr@
3270
32712006-10-19 14:15 +0000 [r7878] Elan Ruusamäe <glen/at/pld-linux.org>
3272
3273 * rc.d/init.d/functions: Avoid heredoc, pdksh makes tmpfile then.
3274
32752006-10-19 13:06 +0000 [r7875] Elan Ruusamäe <glen/at/pld-linux.org>
3276
3277 * rc.d/rc.sysinit: Fix syntax errors.
3278
32792006-10-19 09:55 +0000 [r7871] Elan Ruusamäe <glen/at/pld-linux.org>
3280
3281 * rc.d/rc.sysinit: Simplify.
3282
32832006-10-18 20:02 +0000 [r7869] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3284
3285 * rc.d/rc.sysinit: Detect more posible cases when rootfs is read
3286 only.
3287
32882006-10-18 12:22 +0000 [r7868] Elan Ruusamäe <glen/at/pld-linux.org>
3289
3290 * sysconfig/network-scripts/functions.network: Avoid bringing down
3291 eth0 in case of bad config.
3292
32932006-10-18 11:55 +0000 [r7867] Elan Ruusamäe <glen/at/pld-linux.org>
3294
3295 * rc.d/init.d/network: Remove ifcfg- prefix from interface names.
3296
32972006-10-15 11:22 +0000 [r7856] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3298
3299 * sysconfig/network-scripts/tnlup: Load sit module for sit tunnels.
3300
33012006-10-13 06:34 +0000 [r7853] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3302
3303 * configure.ac: Prepare for 0.4.1.1 (beta1).
3304
4fd4abaa
AM
33052006-10-13 06:23 +0000 [r7851-7852] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3306
3307 * man/Makefile.am: Add getkey.1
3308
4ca37ca2 3309 * src/getkey.c, man/getkey.1 (added): Updated.
4fd4abaa
AM
3310
33112006-10-12 21:07 +0000 [r7849-7850] Elan Ruusamäe <glen/at/pld-linux.org>
3312
4ca37ca2 3313 * sysconfig/interfaces/ifcfg-ppp0.ueagle-neostrada,
4fd4abaa
AM
3314 sysconfig/interfaces/ifcfg-eth0.1,
3315 sysconfig/interfaces/ifcfg-ppp0.speedtouch-neostrada,
4ca37ca2
JR
3316 sysconfig/interfaces/ifcfg-ppp0.eagle-usb-neostrada,
3317 sysconfig/interfaces/ifcfg-ppp0.gprs-idea: Propset Id
4fd4abaa 3318
b30f8040 3319 * sysconfig/interfaces/ifcfg-ppp0.callback,
4ca37ca2
JR
3320 sysconfig/interfaces/ifcfg-ppp0.gprs-plusgsm,
3321 sysconfig/interfaces/ifcfg-br0,
3322 sysconfig/interfaces/ifcfg-description,
3323 sysconfig/interfaces/ifcfg-irlan0,
3324 sysconfig/interfaces/ifcfg-ppp0.tpsa,
3325 sysconfig/interfaces/ifcfg-ppp0.gprs-idea,
3326 sysconfig/interfaces/ifcfg-ppp0.leased1,
b30f8040
AM
3327 sysconfig/interfaces/ifcfg-ppp0.leased2,
3328 sysconfig/interfaces/ifcfg-ppp0.ueagle-neostrada,
3329 sysconfig/interfaces/ifcfg-sl0,
3330 sysconfig/interfaces/ifcfg-eth0.1,
3331 sysconfig/interfaces/ifcfg-irda0,
3332 sysconfig/interfaces/ifcfg-ppp0.speedtouch-neostrada,
3333 sysconfig/interfaces/ifcfg-eth0,
3334 sysconfig/interfaces/ifcfg-ppp0.eagle-usb-neostrada: Unify file
3335 header.
4fd4abaa
AM
3336
33372006-10-12 19:49 +0000 [r7848] Elan Ruusamäe <glen/at/pld-linux.org>
3338
3339 * sysconfig/static-routes: Add sample of single host routing
3340
33412006-10-05 20:39 +0000 [r7842] Elan Ruusamäe <glen/at/pld-linux.org>
3342
3343 * rc.d/rc.sysinit: Use simple if.
3344
33452006-10-05 17:22 +0000 [r7840-7841] Elan Ruusamäe <glen/at/pld-linux.org>
3346
3347 * rc.d/rc.sysinit: There are no comments in /proc/mounts.
3348
3349 * rc.d/rc.sysinit: There could be multiple entries for root dir.
3350
248786a8 33512006-10-02 22:03 +0000 [r7839] Paweł Sikora <pluto/at/pld-linux.org>
4fd4abaa
AM
3352
3353 * sysconfig/network-scripts/functions.network: - wireless-tools >=
3354 29 uses `nick' command.
3355
33562006-09-30 10:50 +0000 [r7827] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3357
3358 * sysconfig/network-scripts/ifup-br: Update brctl parameters to
3359 mach new version of bridge-utils (should be backward compatible).
3360 By Szymon Siwek.
3361
33622006-09-28 23:38 +0000 [r7826] Elan Ruusamäe <glen/at/pld-linux.org>
3363
3364 * sysctl.conf: Default local port range is too evil. can't even
3365 start mysqld!
3366
33672006-09-28 14:35 +0000 [r7823] Elan Ruusamäe <glen/at/pld-linux.org>
3368
3369 * rc.d/rc.sysinit: Remount rootfs only if it's not already rw (or
3370 it's better to ignore remount errors?)
3371
33722006-09-27 22:30 +0000 [r7820] Elan Ruusamäe <glen/at/pld-linux.org>
3373
3374 * rc.d/rc.sysinit: Relax fstab format when finding rootfs passno
3375 (allow comments at the end of line).
3376
33772006-09-27 13:35 +0000 [r7819] Elan Ruusamäe <glen/at/pld-linux.org>
3378
3379 * rc.d/rc.sysinit: Optimize less uname -r calls.
3380
33812006-09-26 23:59 +0000 [r7818] Elan Ruusamäe <glen/at/pld-linux.org>
3382
3383 * rc.d/rc.sysinit: Reflect init_gettext function rename.
3384
33852006-09-26 23:48 +0000 [r7817] Elan Ruusamäe <glen/at/pld-linux.org>
3386
3387 * rc.d/init.d/functions: Add checking of msg cache validity. $TPUT
3388 and $GETTEXT need to be set before msg cache can be generated.
3389
33902006-09-24 09:35 +0000 [r7806] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3391
3392 * rc-scripts.spec.in: rc.local is now run from init.d/local script.
3393
33942006-09-24 09:29 +0000 [r7805] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3395
3396 * configure.ac: Prepare for 0.4.1.0 release (consider it beta).
3397
715860cc
AM
33982006-09-18 23:09 +0000 [r7794] Elan Ruusamäe <glen/at/pld-linux.org>
3399
4ca37ca2 3400 * rc.d/init.d/functions, rc.d/rc.sysinit: Allow /usr being mounted
715860cc
AM
3401 afterwards.
3402
34032006-09-18 19:06 +0000 [r7793] Elan Ruusamäe <glen/at/pld-linux.org>
3404
3405 * rc.d/init.d/allowlogin: Drop superfluous default setting.
3406
34072006-09-18 19:02 +0000 [r7792] Elan Ruusamäe <glen/at/pld-linux.org>
3408
3409 * rc.d/init.d/sys-chroots: Don't touch chkconfig symlinks on
3410 chroot, instead play with network subsys lockfile. This allows
3411 you define sys-chroots from livecd without corrupting that
3412 chroot.
3413
34142006-09-18 18:58 +0000 [r7791] Elan Ruusamäe <glen/at/pld-linux.org>
3415
4ca37ca2
JR
3416 * rc.d/init.d/sys-chroots, rc.d/rc, rc.d/rc.sysinit,
3417 rc.d/init.d/allowlogin: /etc/sysconfig/system already loaded by
715860cc
AM
3418 init.d/functions. Adjust defaults if no sysconfig/system is
3419 present (so the checks stay same after these changes).
3420
34212006-09-18 18:50 +0000 [r7790] Elan Ruusamäe <glen/at/pld-linux.org>
3422
3423 * rc.d/rc.sysinit: RUN_LDCONFIG not used here.
3424
34252006-09-18 17:55 +0000 [r7789] Elan Ruusamäe <glen/at/pld-linux.org>
3426
3427 * rc.d/init.d/functions: Corrected tput check.
3428
34292006-09-18 12:41 +0000 [r7788] Elan Ruusamäe <glen/at/pld-linux.org>
3430
3431 * rc.d/init.d/functions: Trap and hide errors when reading msg
3432 cachefile.
3433
34342006-09-17 22:06 +0000 [r7787] Elan Ruusamäe <glen/at/pld-linux.org>
3435
3436 * rc.d/init.d/functions: Punctuation.
3437
34382006-09-17 21:52 +0000 [r7786] Elan Ruusamäe <glen/at/pld-linux.org>
3439
3440 * rc.d/init.d/functions: No need to force any settings for initng.
3441
34422006-09-17 19:05 +0000 [r7785] Elan Ruusamäe <glen/at/pld-linux.org>
3443
3444 * rc.d/init.d/timezone: Use lockfiles.
3445
34462006-09-17 18:34 +0000 [r7784] Elan Ruusamäe <glen/at/pld-linux.org>
3447
3448 * rc.d/init.d/functions: Cache colors in filesystem too.
3449
34502006-09-17 18:21 +0000 [r7783] Elan Ruusamäe <glen/at/pld-linux.org>
3451
3452 * rc.d/init.d/functions: busy(), ok(), started(), are constant so
3453 their values can be cached.
3454
34552006-09-17 18:15 +0000 [r7781-7782] Elan Ruusamäe <glen/at/pld-linux.org>
3456
3457 * rc.d/init.d/functions: Buffer show() function so the display to
3458 be more smooth.
3459
3460 * rc.d/init.d/functions: Correct show() function printf handling.
3461
34622006-09-17 17:53 +0000 [r7779-7780] Elan Ruusamäe <glen/at/pld-linux.org>
3463
3464 * rc.d/init.d/template.init: RETVAL is set by start(); if any.
3465
3466 * rc.d/init.d/sys-chroots: RETVAL is set by start(); if any.
3467
34682006-09-17 17:10 +0000 [r7778] Elan Ruusamäe <glen/at/pld-linux.org>
3469
3470 * rc.d/init.d/template.init: Demonstrate use of functions.
3471
34722006-09-17 17:06 +0000 [r7777] Elan Ruusamäe <glen/at/pld-linux.org>
3473
3474 * rc.d/init.d/network: Shortcuts for vserver.
3475
34762006-09-17 16:59 +0000 [r7776] Elan Ruusamäe <glen/at/pld-linux.org>
3477
3478 * rc.d/init.d/cpusets: Merge optimzations from network script.
3479
34802006-09-17 16:52 +0000 [r7775] Elan Ruusamäe <glen/at/pld-linux.org>
3481
3482 * rc.d/init.d/network: Add bug-5795.patch (assume it's correct).
3483
34842006-09-17 16:47 +0000 [r7774] Elan Ruusamäe <glen/at/pld-linux.org>
3485
b30f8040
AM
3486 * rc.d/init.d/cpusets, rc.d/init.d/network, rc.d/init.d/timezone,
3487 rc.d/init.d/sys-chroots: Use functions to avoid reexec for
3488 restart.
715860cc
AM
3489
34902006-09-17 16:27 +0000 [r7771-7773] Elan Ruusamäe <glen/at/pld-linux.org>
3491
3492 * rc.d/init.d/local, rc.d/init.d/sys-chroots: Propset Id
3493
3494 * rc.d/init.d/local: Update chkconfig description.
3495
a2ee7529 3496 * rc.d/init.d/cpusets, rc.d/init.d/local: LSB compliance.
715860cc
AM
3497
34982006-09-17 15:57 +0000 [r7770] Elan Ruusamäe <glen/at/pld-linux.org>
3499
3500 * rc.d/init.d/functions: Cache termput calls within same script.
3501
35022006-09-17 15:42 +0000 [r7769] Elan Ruusamäe <glen/at/pld-linux.org>
3503
3504 * rc.d/init.d/functions: Kill bogus +arg checks.
3505
35062006-09-17 15:29 +0000 [r7768] Elan Ruusamäe <glen/at/pld-linux.org>
3507
3508 * rc.d/init.d/functions: Always use cached in show() function
3509 (There's no benefit of doing otherwise).
3510
35112006-09-17 15:18 +0000 [r7765-7767] Elan Ruusamäe <glen/at/pld-linux.org>
3512
3513 * rc.d/init.d/functions: Cleanup nls() function.
3514
3515 * rc.d/init.d/functions: Avoid overwriting global NLS_DOMAIN if can
3516 do without.
3517
3518 * rc.d/init.d/functions: Keep state of have gettext and have tput
3519 per whole initscript.
3520
35212006-09-17 15:01 +0000 [r7764] Elan Ruusamäe <glen/at/pld-linux.org>
3522
3523 * rc.d/init.d/functions: Use buggy awk-printf wrapper only if
3524 /bin/printf is not available.
3525
35262006-09-17 13:49 +0000 [r7763] Elan Ruusamäe <glen/at/pld-linux.org>
3527
3528 * rc.d/init.d/Makefile.am, rc.d/init.d/local (added): Use locking
3529 for rc.local , so that it's no longer invoked between runlevel
3530 changes.
3531
35322006-09-17 13:36 +0000 [r7761-7762] Elan Ruusamäe <glen/at/pld-linux.org>
3533
3534 * rc.d/init.d/cpusets: Cosmetics for vim
3535
a2ee7529
JR
3536 * rc.d/init.d/allowlogin, rc.d/init.d/network,
3537 rc.d/init.d/timezone, rc.d/init.d/random: LSB compliance
715860cc
AM
3538
35392006-09-17 13:26 +0000 [r7758-7760] Elan Ruusamäe <glen/at/pld-linux.org>
3540
3541 * rc.d/init.d/single: Adjust indent.
3542
b30f8040 3543 * rc.d/init.d/single, rc.d/init.d/cpusets, rc.d/init.d/network:
715860cc
AM
3544 Sane $PATH is initialized in init.d/functions.
3545
b30f8040
AM
3546 * rc.d/init.d/random, rc.d/init.d/single, rc.d/init.d/cpusets,
3547 rc.d/init.d/allowlogin, rc.d/init.d/network,
3548 rc.d/init.d/timezone: NLS_DOMAIN="rc-scripts" is the default
3549 setting, remove.
715860cc
AM
3550
35512006-09-09 19:13 +0000 [r7745] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3552
3553 * sysconfig/network-scripts/ifdown: Allow to kill
3554 dhcp/wpa_supplicant daemon even if device disappears/is down due
3555 to some reasons.
3556
35572006-09-08 18:35 +0000 [r7739] Radosław Zieliński <radek/at/pld-linux.org>
3558
3559 * sysconfig/interfaces/ifcfg-ppp0.speedtouch-neostrada,
3560 sysconfig/network-scripts/ifup-ppp: - speedtouch-neostrada fixes:
3561 - use modem_run in kernel mode only if PPPOA_FIRMWARE is not
3562 empty; comment out PPPOA_FIRMWARE in default ifcfg-ppp0 - comment
3563 out MTU=1452; doesn't work (for me) if it's defined
3564
35652006-08-31 11:58 +0000 [r7694] Elan Ruusamäe <glen/at/pld-linux.org>
3566
3567 * sysconfig/interfaces/ifcfg-description: Correct english
3568 description.
3569
35702006-08-31 09:51 +0000 [r7693] Elan Ruusamäe <glen/at/pld-linux.org>
3571
3572 * sysconfig/network-scripts/ifup: Restore basename change.
3573
35742006-08-31 07:26 +0000 [r7692] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3575
a2ee7529
JR
3576 * sysconfig/network-scripts/functions.network,
3577 sysconfig/network-scripts/ifup: Detect if wireless interface is
3578 turned on.
715860cc
AM
3579
35802006-08-10 12:14 +0000 [r7656] Jan Rękorajski <baggins/at/pld-linux.org>
3581
3582 * rc.d/init.d/network: - check for /usb/bin/wc existence (in case
3583 of /usr over NFS)
3584
35852006-07-24 14:02 +0000 [r7546] Elan Ruusamäe <glen/at/pld-linux.org>
3586
3587 * sysconfig/interfaces/ifcfg-irlan0, doc/net-scripts.txt:
3588 s/BOOTMETHOD/BOOTPROTO/g once more.
3589
35902006-07-24 13:59 +0000 [r7544-7545] Elan Ruusamäe <glen/at/pld-linux.org>
3591
3592 * sysconfig/network-scripts/ifup: Default $DHCP_HOSTNAME to
3593 $HOSTNAME.
3594
3595 * sysconfig/network-scripts/ifup: Optimize: remove three basename
3596 calls
3597
35982006-07-20 14:13 +0000 [r7537] Elan Ruusamäe <glen/at/pld-linux.org>
3599
3600 * TODO: - killproc() s%!&*ks
3601
36022006-07-19 16:38 +0000 [r7535] Jan Rękorajski <baggins/at/pld-linux.org>
3603
3604 * sysconfig/hwprofiles/files: - added xorg.conf
3605
36062006-07-09 08:06 +0000 [r7499] Adam Gołębiowski <adamg/at/pld-linux.org>
3607
3608 * sysconfig/network-scripts/functions.network: - typo; noticed by
3609 Szymon Siwek (sls (at) poczta wp pl)
3610
36112006-07-04 14:59 +0000 [r7491] Elan Ruusamäe <glen/at/pld-linux.org>
3612
3613 * TODO: Add LVM on dmraid problem
3614
d5bbf29e
ER
36152006-05-28 19:05 +0000 [r7454] Elan Ruusamäe <glen/at/pld-linux.org>
3616
3617 * autogen.sh: Always run changelog generation when asked. Obfuscate
3618 email addreses here. Use mktemp if available. Allow various
3619 locations for CVSROOT/users file.
3620
36212006-05-23 15:38 +0000 [r7436] Elan Ruusamäe <glen/at/pld-linux.org>
3622
3623 * sysconfig/network-scripts/functions.network: Try harder to get
3624 value for WLAN_NICKNAME.
3625
36262006-05-15 23:18 +0000 [r7408] Zbigniew Krzystolik <zbyniu/at/pld-linux.org>
3627
3628 * sysctl.conf: - grsecurity options updated
3629
36302006-05-07 17:33 +0000 [r7394] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3631
3632 * configure.ac: Release 0.4.0.27.
3633
49073859
AM
36342006-05-07 17:27 +0000 [r7391-7393] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3635
3636 * rc-scripts.spec.in: Add sysconfig/hwprofiles dir.
3637
3638 * rc.d/rc.shutdown: Speedup shutdown (glen).
3639
b30f8040
AM
3640 * sysconfig/interfaces/ifcfg-ppp0.gprs-plusgsm,
3641 sysconfig/interfaces/ifcfg-ppp0.gprs-idea,
3642 sysconfig/interfaces/Makefile.am: Add ifcfg-ppp0.gprs-idea to
3643 makefiles. Add proper initstring to ifcfg-ppp0.gprs-plusgsm.
3644 Another PHONE for gprs-idea (this one works for me with ipaq over
3645 BT).
49073859
AM
3646
36472006-05-07 17:18 +0000 [r7390] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3648
4ca37ca2
JR
3649 * sysconfig/Makefile.am, doc/Makefile.am,
3650 sysconfig/interfaces/up.d/all/Makefile.am,
49073859
AM
3651 sysconfig/hwprofiles/Makefile.am,
3652 sysconfig/interfaces/Makefile.am,
4ca37ca2
JR
3653 sysconfig/interfaces/down.d/all/Makefile.am,
3654 sysconfig/interfaces/data/Makefile.am: Avoid installing files
3655 that aren't packaged (glen).
49073859
AM
3656
36572006-05-07 11:09 +0000 [r7389] Elan Ruusamäe <glen/at/pld-linux.org>
3658
3659 * rc.d/init.d/network: Fix missing $bootprio.
3660
36612006-05-07 10:46 +0000 [r7388] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3662
3663 * rc.d/init.d/network: Fix interfaces_boot detection (Adam Ryba).
3664
36652006-04-25 07:20 +0000 [r7370] Elan Ruusamäe <glen/at/pld-linux.org>
3666
3667 * rc.d/rc: Tabs.
3668
36692006-03-23 09:22 +0000 [r7293] Tomasz Pala <gotar/at/pld-linux.org>
3670
3671 * sysconfig/network: - hostname -h [...] Unless you are using bind
3672 or NIS for host lookups you can change the FQDN (Fully Qualified
3673 Domain Name) and the DNS domain name (which is part of the FQDN)
3674 in the /etc/hosts file.
3675
36762006-03-22 19:54 +0000 [r7279] Elan Ruusamäe <glen/at/pld-linux.org>
3677
3678 * rc.d/rc.sysinit: Vserver speedup (skips extra 5 second delay in
3679 some cases)
3680
36812006-03-20 17:22 +0000 [r7253] Radosław Zieliński <radek/at/pld-linux.org>
3682
3683 * rc.d/rc.sysinit: - allow \t in "alias usb-controller" (from
3684 Lukasz Masko, nov 2005)
3685
36862006-03-11 14:54 +0000 [r7144] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3687
3688 * sysconfig/network-scripts/ifup-ppp: Typo bugfix.
3689
36902006-03-09 17:54 +0000 [r7132] Elan Ruusamäe <glen/at/pld-linux.org>
3691
3692 * rc.d/init.d/network: Tabs.
3693
36942006-03-09 17:47 +0000 [r7131] Elan Ruusamäe <glen/at/pld-linux.org>
3695
3696 * rc.d/init.d/network: Rewritten configuration parsing portion
3697 (solves ~ and .rpmnew files ignorance). execve() calls reduced
3698 from 25 to 4. Tested with ash and ksh. There could be bugs!
3699
37002006-03-09 16:20 +0000 [r7127] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3701
3702 * configure.ac: Prepare for 0.4.0.26.
3703
7341fab3
AM
37042006-03-09 14:58 +0000 [r7126] Jan Rękorajski <baggins/at/pld-linux.org>
3705
3706 * rc.d/init.d/template.init: - no, please don't remove vim modeline
3707
37082006-03-09 11:21 +0000 [r7125] Elan Ruusamäe <glen/at/pld-linux.org>
3709
3710 * rc.d/init.d/template.init: vim modeline is unneccessary here.
3711
37122006-03-08 15:07 +0000 [r7121] Jan Rękorajski <baggins/at/pld-linux.org>
3713
3714 * rc.d/rc.sysinit: - human readable cleaning of /var/lock - and
3715 don't remove /var/lock/cvs
3716
37172006-03-05 13:41 +0000 [r7096] Adam Gołębiowski <adamg/at/pld-linux.org>
3718
3719 * sysconfig/system: - typos
3720
37212006-03-03 21:54 +0000 [r7083] Elan Ruusamäe <glen/at/pld-linux.org>
3722
3723 * rc.d/rc.sysinit: The is_no() function comes from functions, don't
3724 use it before it's defined
3725
37262006-02-27 18:09 +0000 [r7036] Elan Ruusamäe <glen/at/pld-linux.org>
3727
3728 * setsysfont: Revert hardcoded part. Fix your config instead.
3729
37302006-02-27 17:49 +0000 [r7035] Elan Ruusamäe <glen/at/pld-linux.org>
3731
3732 * rc.d/init.d/cpusets: - expand Id keyword
3733
37342006-02-27 13:47 +0000 [r7034] Elan Ruusamäe <glen/at/pld-linux.org>
3735
3736 * rc.d/init.d/network: In vserver /sbin/ip is not required.
3737
37382006-02-26 11:05 +0000 [r7020] Elan Ruusamäe <glen/at/pld-linux.org>
3739
3740 * rc.d/init.d/functions: Disable colors and enable FASTRC for
3741 initng.
3742
37432006-02-26 10:45 +0000 [r7019] Elan Ruusamäe <glen/at/pld-linux.org>
3744
3745 * setsysfont: Unicode fixes.
3746
37472006-02-24 11:04 +0000 [r7006] Elan Ruusamäe <glen/at/pld-linux.org>
3748
3749 * rc.d/rc.sysinit: Boot logging possibility with showconsole.
3750
37512006-02-23 14:43 +0000 [r7005] Elan Ruusamäe <glen/at/pld-linux.org>
3752
3753 * rc.d/rc.sysinit: Respect fs_passno for rootfs when doing rootfs
3754 fsck. Enable paralell fsck for other filesystems.
3755
37562006-02-23 14:23 +0000 [r7004] Elan Ruusamäe <glen/at/pld-linux.org>
3757
3758 * rc.d/rc.sysinit: Ignore "rootfs" when setting _ROOTFS_TYPE.
3759
37602006-02-23 13:57 +0000 [r7003] Elan Ruusamäe <glen/at/pld-linux.org>
3761
3762 * rc.d/rc.sysinit: Make /dev/cpuset dir for udev. Check
3763 /proc/mounts instead of /proc/filesystems when filling /etc/mtab.
3764
37652006-02-23 10:38 +0000 [r7002] Elan Ruusamäe <glen/at/pld-linux.org>
3766
b30f8040
AM
3767 * doc/net-scripts.txt, doc/sysvinitfiles, rc.d/init.d/functions,
3768 rc-scripts.spec.in, inittab, rc.d/rc.sysinit, run-parts: We are
3769 PLD Linux (not just PLD).
7341fab3
AM
3770
37712006-02-23 10:35 +0000 [r6999-7001] Elan Ruusamäe <glen/at/pld-linux.org>
3772
3773 * sysconfig/init-colors: We are PLD Linux (not just PLD), fix
3774 init-colors.gentoo path.
3775
3776 * sysconfig/i18n: Have here also listed en_US.UTF-8
3777
3778 * sysconfig/interfaces/ifcfg-eth0: By default boot eth0 with dhcp.
3779 If you have static IP configuration, you need to edit this file
3780 anyway
3781
37822006-02-14 00:24 +0000 [r6972] Jan Rękorajski <baggins/at/pld-linux.org>
3783
4ca37ca2 3784 * sysconfig/cpusets/cpuset-test, rc.d/init.d/cpusets: - cpuset
7341fab3
AM
3785 virtualization support
3786
37872006-02-10 22:21 +0000 [r6965] Elan Ruusamäe <glen/at/pld-linux.org>
3788
3789 * rc.d/rc.sysinit: Reverted last change
3790
37912006-02-10 19:47 +0000 [r6964] Elan Ruusamäe <glen/at/pld-linux.org>
3792
3793 * rc.d/rc.sysinit: Disable DELAY_LOGIN for vserver, suggested by
3794 Patrys
3795
37962006-02-10 19:40 +0000 [r6960-6963] Elan Ruusamäe <glen/at/pld-linux.org>
3797
3798 * rc.d/rc.sysinit: Remove stupid sleep 1
3799
3800 * rc.d/rc.sysinit: No SELinux labels for vserver
3801
3802 * rc.d/rc.sysinit: Fixing indent
3803
3804 * rc.d/rc.sysinit: setsysfont and selinux make no sense inside
3805 vserver (no devices attached)
3806
38072006-02-10 19:31 +0000 [r6959] Elan Ruusamäe <glen/at/pld-linux.org>
3808
3809 * rc.d/rc.sysinit: Do not mount /proc in vserver
3810
38112006-02-10 19:17 +0000 [r6958] Elan Ruusamäe <glen/at/pld-linux.org>
3812
3813 * rc.d/init.d/network: One can't (u)mount anything inside vserver,
3814 not even network mounts
3815
38162006-02-08 17:41 +0000 [r6952] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3817
3818 * rc.d/rc.sysinit: Redirect errors from mounts grepping to
3819 /dev/null.
3820
38212006-02-05 15:32 +0000 [r6922] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3822
b30f8040 3823 * rc.d/rc.sysinit, sysconfig/system: Rename PROMPT to RC_PROMPT
7341fab3
AM
3824 (PROMPT is internal zsh variable). Fixed RC_PROMPT testing to
3825 work as described in sysconfig/system.
3826
38272006-01-21 13:49 +0000 [r6875-6876] Elan Ruusamäe <glen/at/pld-linux.org>
3828
3829 * rc.d/init.d/template.init: Allow some actions when network is
3830 down (by ankry /at/ 2003-07-03).
3831
3832 * rc.d/init.d/template.init: - remove old syntax
3833
38342006-01-21 12:32 +0000 [r6874] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3835
3836 * sysconfig/interfaces/ifcfg-description: Describe current
3837 PPPoE/PPPoA config.
3838
38392006-01-21 12:18 +0000 [r6873] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3840
3841 * sysconfig/interfaces/ifcfg-ppp0.ueagle-neostrada,
3842 sysconfig/network-scripts/ifup-ppp: Generic PPP over ATM support.
3843
38442006-01-20 18:02 +0000 [r6871] Jan Rękorajski <baggins/at/pld-linux.org>
3845
3846 * rc.d/rc.sysinit: - give getkey a timeout of 5s, better safe than
3847 hung init process
3848
38492006-01-20 15:40 +0000 [r6869] Jan Rękorajski <baggins/at/pld-linux.org>
3850
3851 * rc.d/init.d/functions: - skip filter_chroot() in vserver fixes
3852 running %pre/%post scripts for packages installed in vserver
3853
38542006-01-19 08:52 +0000 [r6864] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3855
4ca37ca2
JR
3856 * sysconfig/interfaces/Makefile.am,
3857 sysconfig/interfaces/ifcfg-ppp0.ueagle-neostrada (added): Add
3858 ueagle example (abram).
7341fab3
AM
3859
38602006-01-18 08:18 +0000 [r6844] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3861
3862 * configure.ac: Prepare for 0.4.0.25.
3863
94ee9fab
AM
38642006-01-15 12:01 +0000 [r6809] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3865
4ca37ca2 3866 * rc.d/init.d/sys-chroots, rc.d/rc.sysinit: Use correct chown
94ee9fab
AM
3867 user:group notation.
3868
38692006-01-13 18:07 +0000 [r6803] Jan Rękorajski <baggins/at/pld-linux.org>
3870
3871 * rc.d/rc.sysinit: - more non-vserver stuff ifed
3872
38732006-01-12 16:21 +0000 [r6798-6800] Jan Rękorajski <baggins/at/pld-linux.org>
3874
3875 * rc.d/rc.sysinit: - cleanup if vserver logic
3876
3877 * rc.d/rc.sysinit: - merge more vserver ifs
3878
3879 * rc.d/rc.sysinit: - typo
3880
38812006-01-12 16:10 +0000 [r6797] Jan Rękorajski <baggins/at/pld-linux.org>
3882
3883 * rc.d/rc.sysinit: - more non-vserver things if'ed - kill psdevtab
3884 removal (file is obsolete since 1998)
3885
38862006-01-12 16:01 +0000 [r6796] Jan Rękorajski <baggins/at/pld-linux.org>
3887
3888 * rc.d/rc.shutdown: - cleanup
3889
38902006-01-12 15:29 +0000 [r6795] Jan Rękorajski <baggins/at/pld-linux.org>
3891
b30f8040 3892 * rc.d/rc.shutdown, rc.d/rc.sysinit: - skip swap/quota/acct in
94ee9fab
AM
3893 vserver
3894
38952006-01-10 20:59 +0000 [r6788] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3896
3897 * rc.d/rc.sysinit: mdadm now creates missing nodes when assembling
3898 an array.
3899
39002006-01-09 17:23 +0000 [r6781] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3901
3902 * sysconfig/network-scripts/functions.network: Typos fixed.
3903
39042006-01-08 21:53 +0000 [r6777] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3905
3906 * configure.ac: Prepare for 0.4.0.24.
3907
1d967f19
AM
39082006-01-07 15:57 +0000 [r6762] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3909
3910 * sysconfig/network-scripts/functions.network: ESSID setting is
3911 done only once, at the end just before commit.
3912
39132006-01-06 15:57 +0000 [r6750] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3914
3915 * rc.d/rc.sysinit: Don't use run_cmd for starting udev since
3916 start_udev can handle messages itself.
3917
39182006-01-05 22:52 +0000 [r6747] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3919
b30f8040 3920 * setsysfont, rc.d/rc.sysinit: Fix console detection by not running
1d967f19
AM
3921 setsysfont trough run_cmd (fixes utf8 font handling, too).
3922
39232006-01-04 12:16 +0000 [r6734] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3924
3925 * rc.d/rc.sysinit: No longer set hotplug stuff. Put that into
3926 sysctl.conf.
3927
39282006-01-01 20:16 +0000 [r6727] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3929
3930 * lang.sh: Process more locale variables (havner).
3931
39322006-01-01 20:12 +0000 [r6726] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3933
3934 * setsysfont: Include /etc/rc.d/init.d/functions.
3935
39362005-12-26 10:35 +0000 [r6709] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3937
3938 * sysconfig/network-scripts/functions.network: Fix WLAN power,
3939 txpower, retry settings. Patch by Łukasz Maśko.
3940
39412005-12-15 18:59 +0000 [r6651-6652] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3942
3943 * configure.ac: Preparations for 0.4.0.23.
447c6413
AM
3944
3945 * rc.d/rc.sysinit: modprobe with -s option so messages go to
3946 syslog.
3947
39482005-12-09 15:26 +0000 [r6627] Jan Rękorajski <baggins/at/pld-linux.org>
3949
3950 * rc.d/rc.shutdown: - change reboot/halt message for vserver
3951 (request by glen)
3952
39532005-12-05 00:33 +0000 [r6598] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3954
3955 * sysconfig/network-scripts/ifup,
3956 sysconfig/interfaces/ifcfg-description: Up wireless device before
3957 setting any WLAN parameters support.
3958
39592005-12-05 00:29 +0000 [r6597] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3960
3961 * rc.d/rc.sysinit: udev loads core usb modules itself so
3962 /proc/bus/usb was never mounted here. Now we are checking for
3963 exact mount instead of just checking whether usb modules are
3964 loaded.
3965
39662005-11-24 15:25 +0000 [r6563] Jan Rękorajski <baggins/at/pld-linux.org>
3967
b30f8040 3968 * rc.d/rc.sysinit, rc.d/init.d/functions: - remove duplicate
447c6413
AM
3969 entries in vserver guest /etc/mtab
3970
39712005-11-23 20:49 +0000 [r6561] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3972
3973 * setsysfont: Don't yell when there is no kbd installed.
3974
39752005-11-18 23:44 +0000 [r6541] Jan Rękorajski <baggins/at/pld-linux.org>
3976
3977 * rc.d/rc.sysinit: - don't clear mtab on vserver guest
3978
39792005-11-17 22:54 +0000 [r6540] Jan Rękorajski <baggins/at/pld-linux.org>
3980
3981 * rc.d/init.d/functions: - fixed vserver detection with legacy
3982 vserver code turned off
3983
39842005-11-16 18:45 +0000 [r6534] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3985
3986 * configure.ac: Update for 0.4.0.22.
3987
3b5ecec3
AM
39882005-11-05 01:34 +0000 [r6520] Elan Ruusamäe <glen/at/pld-linux.org>
3989
3990 * rc.d/rc.sysinit: - remove useless rm -f /var/run/hwprofile, which
3991 will never work as all filesystems are readonly at that point
3992
39932005-11-01 18:34 +0000 [r6510-6511] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3994
3995 * src/process.c: Updated from FC.
3996
b30f8040 3997 * src/shvar.c, src/shvar.h: Be more precise about condition.
3b5ecec3
AM
3998
39992005-10-30 22:14 +0000 [r6504] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4000
b30f8040 4001 * rc.d/rc.shutdown, rc.d/rc.sysinit: Mount securityfs filesystem on
3b5ecec3
AM
4002 kernel >= 2.6.14.
4003
40042005-10-30 00:03 +0000 [r6503] Jan Rękorajski <baggins/at/pld-linux.org>
4005
4006 * rc.d/rc: - corrected order of conditions
4007
40082005-10-28 14:54 +0000 [r6501] Jan Rękorajski <baggins/at/pld-linux.org>
4009
4010 * rc.d/init.d/network: - ignore non-empty but commented /etc/mactab
4011 (patch by glen)
4012
40132005-10-26 16:57 +0000 [r6492] Jan Rękorajski <baggins/at/pld-linux.org>
4014
4015 * lang.sh, run-parts, lang.csh, hwprofile, service, setsysfont: -
4016 more white space and formatting cleanup
4017
40182005-10-26 16:33 +0000 [r6491] Jan Rękorajski <baggins/at/pld-linux.org>
4019
b30f8040
AM
4020 * rc.d/rc.modules, sysconfig/network-scripts/ifup-sl,
4021 sysconfig/network-scripts/ifup-irda,
4022 sysconfig/network-scripts/ifup-aliases, rc.d/init.d/network,
4023 sysconfig/network-scripts/ifdown-ppp,
a2ee7529
JR
4024 sysconfig/network-scripts/ifdown-vlan,
4025 sysconfig/network-scripts/tnldown,
a2ee7529 4026 sysconfig/network-scripts/ifdown-br,
b30f8040
AM
4027 sysconfig/interfaces/tnlcfg-icm, sysconfig/static-nat,
4028 ppp/ipx-up, sysconfig/network-scripts/functions.network,
4029 ppp/auth-up, rc.d/init.d/allowlogin,
4ca37ca2
JR
4030 sysconfig/network-scripts/ifup-vlan,
4031 sysconfig/interfaces/tnlcfg-description,
b30f8040 4032 sysconfig/network-scripts/ifup,
4ca37ca2 4033 sysconfig/network-scripts/ifup-br,
b30f8040
AM
4034 sysconfig/network-scripts/ifup-plip, rc.d/init.d/template.init,
4035 ppp/ip-up, rc.d/rc.sysinit,
4036 sysconfig/network-scripts/ifdown-post, sysconfig/clock,
4037 rc.d/init.d/cpusets, sysconfig/network-scripts/ifup-routes,
4038 rc.d/rc.shutdown, ppp/ipx-down, rc.d/init.d/timezone,
4039 ppp/auth-down, sysconfig/network-scripts/ifdown,
4040 sysconfig/network-scripts/ifup-plusb, rc.d/init.d/sys-chroots,
4041 sysconfig/network-scripts/ifup-post, sysconfig/static-routes,
4042 ppp/ip-down, sysconfig/network-scripts/ifup-neigh,
4043 sysconfig/network-scripts/ifup-ppp,
4044 sysconfig/network-scripts/ifup-ipx, rc.d/rc.local,
4045 rc.d/init.d/functions, sysconfig/network-scripts/ifdown-sl,
4046 sysconfig/network-scripts/tnlup,
4047 sysconfig/network-scripts/ifdown-irda, sysconfig/system,
4048 sysconfig/network-scripts/ifup-iucv, rc.d/rc, rc.d/init.d/random,
4049 rc.d/init.d/single, rc.d/rc.init, sysconfig/network,
4050 sysconfig/timezone, rc.d/init.d/killall: - more vim setting
4051 removed (don't convert tabs to spaces) - white space cleanup -
4052 convert spaces to tabs - unify formatting for all scripts
3b5ecec3
AM
4053
40542005-10-25 18:22 +0000 [r6489] Jan Rękorajski <baggins/at/pld-linux.org>
4055
4056 * rc.d/rc.shutdown, rc.d/rc, rc.d/rc.sysinit: - add support for
4057 running inside vservers, the diff may seem huge but it's mostly
4058 white space change
4059
40602005-10-25 18:15 +0000 [r6488] Jan Rękorajski <baggins/at/pld-linux.org>
4061
4062 * rc.d/init.d/functions: - typo
4063
40642005-10-25 17:11 +0000 [r6487] Jan Rękorajski <baggins/at/pld-linux.org>
4065
b30f8040 4066 * rc.d/rc, rc.d/rc.sysinit: - source configs before functions
3b5ecec3
AM
4067
40682005-10-25 16:56 +0000 [r6485] Jan Rękorajski <baggins/at/pld-linux.org>
4069
4070 * rc.d/init.d/network: - don't start interfaces inside vserver
4071
40722005-10-25 16:46 +0000 [r6484] Jan Rękorajski <baggins/at/pld-linux.org>
4073
4074 * rc.d/rc: - all stty's stderr belongs to /dev/null
4075
40762005-10-25 16:21 +0000 [r6482] Jan Rękorajski <baggins/at/pld-linux.org>
4077
4078 * rc.d/init.d/functions: - detect if run inside vserver and ignore
4079 rc_splash if so
4080
40812005-10-25 16:04 +0000 [r6480] Jan Rękorajski <baggins/at/pld-linux.org>
4082
4083 * rc.d/rc.sysinit: - we need /proc mounted before everything
4084
40852005-10-25 14:17 +0000 [r6479] Jan Rękorajski <baggins/at/pld-linux.org>
4086
a2ee7529 4087 * rc.d/rc.modules, rc.d/rc.shutdown, rc.d/rc, rc.d/rc.sysinit: -
3b5ecec3
AM
4088 grep: all your stderr are belong to /dev/null
4089
40902005-10-25 11:58 +0000 [r6477] Jan Rękorajski <baggins/at/pld-linux.org>
4091
4092 * rc.d/init.d/functions: - better detection of tput functionality
4093
40942005-10-19 19:06 +0000 [r6468] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4095
4096 * configure.ac: Update for new release.
4097
03e40ed6
AM
40982005-10-19 18:08 +0000 [r6467] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4099
4100 * sysconfig/network-scripts/functions.network: Working version of
4101 calcprefix().
4102
41032005-10-19 11:01 +0000 [r6462] Jan Rękorajski <baggins/at/pld-linux.org>
4104
4105 * rc.d/rc: - check for proper first argument in correct place
4106
41072005-10-17 15:04 +0000 [r6453] Jan Rękorajski <baggins/at/pld-linux.org>
4108
4109 * rc.d/init.d/functions: - RC_LOGGING should be checked against
4110 "no"
4111
41122005-10-17 14:52 +0000 [r6452] Jan Rękorajski <baggins/at/pld-linux.org>
4113
b30f8040 4114 * sysconfig/system, rc.d/init.d/functions, rc.d/rc.shutdown: -
03e40ed6
AM
4115 clean solution for initlog/minilogd: RC_LOGGING setting, and
4116 don't log while shutting down
4117
41182005-10-17 13:49 +0000 [r6451] Jan Rękorajski <baggins/at/pld-linux.org>
4119
4ca37ca2 4120 * src/minilogd.c (added), src/initlog.c, src/Makefile.am: -
03e40ed6
AM
4121 reverted last commit
4122
41232005-10-17 13:20 +0000 [r6450] Jan Rękorajski <baggins/at/pld-linux.org>
4124
b30f8040 4125 * src/Makefile.am, src/minilogd.c (removed), src/initlog.c: -
03e40ed6
AM
4126 removed minilogd and its calls (more pain than gain)
4127
41282005-10-16 19:26 +0000 [r6447] Jan Rękorajski <baggins/at/pld-linux.org>
4129
b30f8040
AM
4130 * rc.d/rc.init, rc.d/init.d/single, sysconfig/timezone, hwprofile,
4131 rc.d/init.d/cpusets, sysconfig/network-scripts/ifup-routes,
4ca37ca2
JR
4132 sysconfig/network-scripts/ifup-aliases,
4133 sysconfig/network-scripts/ifdown-ppp,
4134 sysconfig/network-scripts/ifup-post, rc.d/init.d/allowlogin,
4135 rc.d/rc.local, sysconfig/network-scripts/ifdown-sl,
4136 sysconfig/network-scripts/tnlup, sysconfig/network-scripts/ifup,
4137 sysconfig/network-scripts/ifdown-irda,
4138 sysconfig/network-scripts/ifup-iucv, rc.d/rc, sysconfig/network,
4139 rc.d/init.d/killall, sysconfig/network-scripts/ifup-sl,
4140 sysconfig/network-scripts/ifup-irda, rc.d/init.d/network,
a2ee7529 4141 rc.d/rc.shutdown, rc.d/init.d/timezone,
4ca37ca2
JR
4142 sysconfig/network-scripts/ifdown-vlan,
4143 sysconfig/network-scripts/tnldown,
03e40ed6
AM
4144 sysconfig/network-scripts/ifup-plusb,
4145 sysconfig/network-scripts/ifdown,
4ca37ca2 4146 sysconfig/network-scripts/ifdown-br,
03e40ed6 4147 sysconfig/network-scripts/ifup-neigh,
a2ee7529 4148 sysconfig/network-scripts/functions.network,
4ca37ca2
JR
4149 sysconfig/network-scripts/ifup-ppp,
4150 sysconfig/network-scripts/ifup-ipx,
95461837 4151 sysconfig/network-scripts/ifup-vlan,
03e40ed6 4152 sysconfig/network-scripts/ifup-br,
4ca37ca2
JR
4153 sysconfig/network-scripts/ifup-plip, sysconfig/system,
4154 rc.d/init.d/template.init, rc.d/rc.sysinit, rc.d/init.d/random,
b30f8040
AM
4155 sysconfig/network-scripts/ifdown-post: - removed dumb tw=78 vim
4156 setting
03e40ed6
AM
4157
41582005-10-06 16:08 +0000 [r6429] Artur Frysiak <wiget/at/pld-linux.org>
4159
4160 * rc.d/init.d/network: - fixed CIFS unmounting
4161
41622005-10-04 18:09 +0000 [r6425] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4163
4ca37ca2 4164 * sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown:
03e40ed6
AM
4165 Use pidfile for wpa_supplicant.
4166
41672005-10-02 17:13 +0000 [r6420] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4168
4ca37ca2
JR
4169 * sysconfig/network-scripts/ifup,
4170 sysconfig/interfaces/ifcfg-description,
4171 sysconfig/network-scripts/ifdown: Simple support for WPA. Note
4172 that killing wpa_supplicant daemon is supported only for single
4173 daemon/interface (TODO: multiple daemons support).
03e40ed6
AM
4174
41752005-09-05 17:12 +0000 [r6352] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4176
4177 * rc.d/init.d/functions: Add support for whole path in pidfile.
4178
41792005-08-24 22:08 +0000 [r6333] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4180
4181 * rc.d/init.d/cpusets, rc.d/init.d/functions: Fix is_yes in cpuset
4182 stuff. Quote file paths when doing echo > something.
4183
41842005-08-23 16:32 +0000 [r6330] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4185
4186 * configure.ac: Update for 0.4.0.20.
4187
41882005-08-23 16:29 +0000 [r6327-6329] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
982fd48f 4189
4ca37ca2
JR
4190 * sysconfig/interfaces/data/chat-ppp0.gprs-plusgsm,
4191 sysconfig/interfaces/ifcfg-ppp0.gprs-plusgsm: Fixed PlusGSM
03e40ed6 4192 examples. (Patch by Paweł Gołaszewski)
982fd48f
AM
4193
4194 * inittab: Example for agetty on serial port.
4195
4196 * rc.d/init.d/network: [a-z] doesn't always mean whole alphabet
4197 (for example et_EE locale). Use C locale when searching. (Patch
03e40ed6 4198 by Elan Ruusamäe)
982fd48f 4199
03e40ed6 42002005-08-15 22:45 +0000 [r6315] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f
AM
4201
4202 * rc.d/init.d/cpusets: - don't spew errors on stdout - inform about
4203 failurse
4204
42052005-08-14 18:32 +0000 [r6311] Tomasz Wittner <twittner/at/pld-linux.org>
4206
4207 * DEVELOPMENT: - typo in enumeration
4208
03e40ed6 42092005-08-13 23:06 +0000 [r6307-6310] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f
AM
4210
4211 * rc.d/init.d/cpusets: - added echo for better status readability
4212
4213 * rc.d/init.d/cpusets: - properly test cpuset dir for status
4214 display
4215
4216 * rc.d/init.d/cpusets: - properly escape message
4217
4218 * rc.d/init.d/cpusets: - use show() when creating/removing cpusets
4219
03e40ed6 42202005-08-13 22:58 +0000 [r6306] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f
AM
4221
4222 * rc.d/init.d/cpusets: - typo
4223
03e40ed6 42242005-08-13 22:34 +0000 [r6305] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f
AM
4225
4226 * rc.d/init.d/functions: - take CPUSETS setting into account
4227
03e40ed6 42282005-08-13 22:00 +0000 [r6304] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f
AM
4229
4230 * rc.d/rc.sysinit: - mount cpuset filesystem if kernel capable
4231
03e40ed6 42322005-08-11 17:43 +0000 [r6300] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f 4233
b30f8040 4234 * doc/sysconfig.txt, doc/sysconfig.docb: - added description for
982fd48f
AM
4235 available per-service settings
4236
03e40ed6 42372005-08-11 17:11 +0000 [r6299] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f
AM
4238
4239 * rc-scripts.spec.in: - cpusets added
4240
03e40ed6 42412005-08-11 17:04 +0000 [r6297-6298] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f
AM
4242
4243 * rc.d/init.d/Makefile.am: - cpusets script added
4244
4245 * configure.ac: - sysconfig/cpusets/Makefile added
4246
03e40ed6 42472005-08-11 16:58 +0000 [r6294-6296] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f
AM
4248
4249 * po/pl.po: - final touch
4250
4251 * po/pl.po: - updated
4252
4253 * rc.d/init.d/functions: - added some code for completness
4254
03e40ed6 42552005-08-11 16:36 +0000 [r6293] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f
AM
4256
4257 * rc.d/init.d/cpusets: - defile cpuset settings as local in
4258 function
4259
03e40ed6 42602005-08-11 16:35 +0000 [r6292] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
982fd48f
AM
4261
4262 * rc.d/init.d/functions: filter_chroot(): Do not filter pids for
4263 processes that no longer exists. We don't know whether these were
4264 from current (ch)root so we assume that they were.
4265
03e40ed6 42662005-08-11 16:23 +0000 [r6291] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f
AM
4267
4268 * rc.d/init.d/functions: - added cpuset support to daemon and
4269 status functions
4270
03e40ed6 42712005-08-10 20:10 +0000 [r6290] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f 4272
b30f8040
AM
4273 * sysconfig/Makefile.am, rc.d/init.d/cpusets (added),
4274 sysconfig/cpusets/Makefile.am (added), sysconfig/system,
4275 sysconfig/cpusets/cpuset-test (added): - CPUSETS support (work in
4276 progress)
982fd48f 4277
03e40ed6 42782005-08-10 19:49 +0000 [r6289] Jan Rękorajski <baggins/at/pld-linux.org>
982fd48f
AM
4279
4280 * sysconfig/cpusets (added): - a place for cpusets config files
4281
03e40ed6 42822005-08-08 21:53 +0000 [r6288] Andrzej Dopierała <undefine/at/pld-linux.org>
982fd48f
AM
4283
4284 * rc.d/init.d/network: - get only tnlcfg-name, not tnlcfg-name~
4285
03e40ed6 42862005-07-27 09:09 +0000 [r6229] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
982fd48f
AM
4287
4288 * sysconfig/network-scripts/ifup: ifup: Handle special
4289 pcmcia-hotplug case.
4290
03e40ed6 42912005-07-21 22:35 +0000 [r6226] Andrzej Dopierała <undefine/at/pld-linux.org>
982fd48f
AM
4292
4293 * rc.d/init.d/network: - first up bridge, next tunnels (tunnels can
4294 be on bridges) - first down tunnels, next bridge ;)
4295
03e40ed6 42962005-05-30 18:54 +0000 [r6028] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
982fd48f
AM
4297
4298 * configure.ac: Release 0.4.0.19.
4299
03e40ed6 43002005-05-30 18:47 +0000 [r6027] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cb0c01df
AM
4301
4302 * sysconfig/network-scripts/ifup: Understand BOOTPROTO=static
03e40ed6 4303 properly (Elan Ruusamäe <glen/at/pld-linux.org>).
cb0c01df 4304
03e40ed6 43052005-05-30 18:42 +0000 [r6026] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cb0c01df
AM
4306
4307 * sysconfig/network-scripts/ifdown-post: When stopping delete root
4308 queueing discipline instead of trying to add it.
4309
03e40ed6 43102005-05-25 08:26 +0000 [r6013] Elan Ruusamäe <glen/at/pld-linux.org>
cb0c01df
AM
4311
4312 * sysctl.conf: grsec is available for 2.6 kernels too.
4313
03e40ed6 43142005-05-03 17:50 +0000 [r5915] Elan Ruusamäe <glen/at/pld-linux.org>
cb0c01df
AM
4315
4316 * rc.d/init.d/sys-chroots: Typo.
4317
03e40ed6 43182005-04-30 20:53 +0000 [r5896] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cb0c01df
AM
4319
4320 * rc.d/init.d/functions: killproc(): fill base and pid variables
4321 based on waitname.
4322
03e40ed6 43232005-04-25 16:01 +0000 [r5884] Adam Gołębiowski <adamg/at/pld-linux.org>
cb0c01df
AM
4324
4325 * rc.d/init.d/network: - when using BOOTPRIO, cd to /etc/sysconfig
4326 to get list of interfaces
4327
03e40ed6 43282005-04-15 21:48 +0000 [r5770] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cb0c01df
AM
4329
4330 * sysconfig/interfaces/ifcfg-ppp0.gprs-idea: Add BT example.
4331
03e40ed6 43322005-04-08 17:34 +0000 [r5744] Paweł Sakowski <saq/at/pld-linux.org>
cb0c01df
AM
4333
4334 * sysconfig/system: - typo
4335
03e40ed6 43362005-03-25 19:00 +0000 [r5631] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
d23f8bf7
AM
4337
4338 * rc-scripts.spec.in: Updated to match needs.
4339
03e40ed6 43402005-03-25 18:50 +0000 [r5629-5630] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
d23f8bf7
AM
4341
4342 * rc.d/rc.sysinit: Fix sound dmabuf handling in rc.sysinit. Use
4343 different modules config file for 2.4/2.6 kernel.
cb0c01df 4344 (havner/at/pld-linux.org)
d23f8bf7
AM
4345
4346 * rc.d/init.d/functions: Fix displaing show() function when $CHARS
cb0c01df 4347 variable is set. (tommat/at/pld-linux.org).
d23f8bf7 4348
03e40ed6 43492005-03-25 18:37 +0000 [r5625] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
d23f8bf7
AM
4350
4351 * configure.ac: Prepare for 0.4.0.18.
4352
03e40ed6 43532005-03-22 16:54 +0000 [r5615] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
d23f8bf7
AM
4354
4355 * rc.d/init.d/functions: Increment counter when waiting specified
4356 time for daemon to start/terminate.
4357
03e40ed6 43582005-03-06 00:11 +0000 [r5570] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
d23f8bf7
AM
4359
4360 * src/Makefile.am: Place minilogd in sbin.
4361
03e40ed6 43622005-03-05 23:46 +0000 [r5569] Elan Ruusamäe <glen/at/pld-linux.org>
d23f8bf7 4363
b30f8040 4364 * man/ru/Makefile.am (added), man/es/Makefile.am (added),
a2ee7529 4365 man/fr/Makefile.am (added), man/de/Makefile.am (added),
b30f8040
AM
4366 man/sv/Makefile.am (added), man/ja/Makefile.am (added),
4367 configure.ac, man/Makefile.am: - Finished manuals to subdirs.
a2ee7529 4368 (Thanks arekm).
d23f8bf7 4369
03e40ed6 43702005-01-24 14:15 +0000 [r5479] Elan Ruusamäe <glen/at/pld-linux.org>
d23f8bf7
AM
4371
4372 * configure.ac: Use AM_CONFIG_HEADER, rather AC_CONFIG_HEADER for
4373 autogen.sh to call autoheader.
4374
03e40ed6 43752005-01-24 14:05 +0000 [r5478] Elan Ruusamäe <glen/at/pld-linux.org>
d23f8bf7
AM
4376
4377 * src/config.h.in (removed): removed
4378
03e40ed6 43792005-01-24 13:47 +0000 [r5477] Elan Ruusamäe <glen/at/pld-linux.org>
d23f8bf7 4380
b30f8040
AM
4381 * src/Makefile.am, configure.ac, acinclude.m4 (added),
4382 src/config.h.in (added), src/start-stop-daemon.c (added): added
4383 start-stop-daemon from dpkg-1.10.23 includes config.h support now
4384 (as such conditional defines impossible on commandline) and m4
4385 macros needed for start-stop-daemon.c
d23f8bf7 4386
03e40ed6 43872005-01-24 13:38 +0000 [r5476] Elan Ruusamäe <glen/at/pld-linux.org>
d23f8bf7 4388
4ca37ca2
JR
4389 * doc/netreport.1 (removed), doc/genhostid.1 (removed),
4390 man/netreport.1 (added), man/genhostid.1 (added), doc/ipcalc.1
4391 (removed), doc/usleep.1 (removed), doc/usernetctl.8 (removed),
4392 man/ipcalc.1 (added), man/usleep.1 (added), doc/consoletype.1
95461837 4393 (removed), man/usernetctl.8 (added), Makefile.am, doc/initlog.1
d23f8bf7
AM
4394 (removed), doc/doexec.1 (removed), doc/Makefile.am,
4395 doc/ppp-watch.8 (removed), man/consoletype.1 (added),
95461837 4396 man/initlog.1 (added), man/doexec.1 (added), man/ppp-watch.8
4ca37ca2 4397 (added), man/Makefile.am: - moved manuals to man/ subdir
d23f8bf7 4398
03e40ed6 43992005-01-24 13:32 +0000 [r5475] Elan Ruusamäe <glen/at/pld-linux.org>
d23f8bf7 4400
b30f8040
AM
4401 * man/ja (added), man/ru/start-stop-daemon.8 (added),
4402 man/es/start-stop-daemon.8 (added), man/fr/start-stop-daemon.8
4ca37ca2
JR
4403 (added), man/de/start-stop-daemon.8 (added),
4404 man/sv/start-stop-daemon.8 (added), man (added),
4405 man/ja/start-stop-daemon.8 (added), man/ru (added), man/es
a2ee7529 4406 (added), man/fr (added), man/start-stop-daemon.8 (added), man/de
b30f8040
AM
4407 (added), man/sv (added), man/Makefile.am (added): - created tree
4408 for manuals - imported start-stop-daemon manuals from
4409 dpkg-1.10.23
d23f8bf7 4410
03e40ed6 44112005-01-24 00:33 +0000 [r5474] Elan Ruusamäe <glen/at/pld-linux.org>
d23f8bf7
AM
4412
4413 * doc/Makefile.am: - fix typo which prevented packaging rest of the
4414 manuals to distrib
4415
03e40ed6 44162005-01-23 23:56 +0000 [r5473] Elan Ruusamäe <glen/at/pld-linux.org>
d23f8bf7
AM
4417
4418 * rc.d/init.d/functions: - typo, english
4419
03e40ed6 44202005-01-23 19:11 +0000 [r5472] Paweł Sakowski <saq/at/pld-linux.org>
d23f8bf7
AM
4421
4422 * rc.d/init.d/sys-chroots: - mount usbfs if available
4423
03e40ed6 44242005-01-17 21:15 +0000 [r5461] Elan Ruusamäe <glen/at/pld-linux.org>
d23f8bf7
AM
4425
4426 * rc.d/init.d/functions: - indent to same level
4427
03e40ed6 44282005-01-02 22:53 +0000 [r5418] Radosław Zieliński <radek/at/pld-linux.org>
d23f8bf7 4429
b30f8040
AM
4430 * sysconfig/network-scripts/ifup-ppp,
4431 sysconfig/network-scripts/functions.network,
4432 sysconfig/network-scripts/ifup-vlan,
4ca37ca2
JR
4433 sysconfig/network-scripts/ifup-ipx,
4434 sysconfig/network-scripts/tnlup,
4435 sysconfig/network-scripts/ifdown-sl,
4436 sysconfig/network-scripts/ifup,
a2ee7529
JR
4437 sysconfig/network-scripts/ifdown-irda,
4438 sysconfig/network-scripts/ifup-br,
4439 sysconfig/network-scripts/ifup-plip,
4440 sysconfig/network-scripts/ifup-iucv,
4441 sysconfig/network-scripts/ifup-sl,
4442 sysconfig/network-scripts/ifup-irda,
4443 sysconfig/network-scripts/ifup-routes,
95461837 4444 sysconfig/network-scripts/ifup-aliases,
d23f8bf7
AM
4445 sysconfig/network-scripts/ifdown-ppp,
4446 sysconfig/network-scripts/ifdown-vlan,
4447 sysconfig/network-scripts/tnldown,
d23f8bf7 4448 sysconfig/network-scripts/ifup-post,
95461837
AM
4449 sysconfig/network-scripts/ifdown,
4450 sysconfig/network-scripts/ifup-plusb,
d23f8bf7 4451 sysconfig/network-scripts/ifdown-br,
b30f8040
AM
4452 sysconfig/network-scripts/ifup-neigh: - unified indentation (ts=8
4453 sw=4, as vi modeline says)
d23f8bf7 4454
03e40ed6 44552005-01-02 21:49 +0000 [r5417] Radosław Zieliński <radek/at/pld-linux.org>
d23f8bf7
AM
4456
4457 * sysctl.conf: - added net.ipv4.conf.default.rp_filter=1 -- *.all.*
4458 has no real effect: when sysctl -p is run, interfaces are not up
4459 yet
4460
03e40ed6 44612004-12-13 22:31 +0000 [r5382-5383] Paweł Sakowski <saq/at/pld-linux.org>
d23f8bf7 4462
a2ee7529 4463 * po/de.po, po/pl.po: - updated for current source tree
d23f8bf7
AM
4464
4465 * rc.d/init.d/network: - missed one
4466
03e40ed6 44672004-12-13 22:01 +0000 [r5379-5380] Paweł Sakowski <saq/at/pld-linux.org>
d23f8bf7 4468
a2ee7529
JR
4469 * sysconfig/network-scripts/ifup-sl, rc.d/init.d/network,
4470 sysconfig/network-scripts/ifup: - make nls invocations actually
4471 translatable
d23f8bf7
AM
4472
4473 * po/de.po: - fixed remaining fuzzy entries
4474
03e40ed6 44752004-12-13 20:16 +0000 [r5378] Paweł Sakowski <saq/at/pld-linux.org>
d23f8bf7
AM
4476
4477 * po/de.po: - updated my email address - fixed some fuzzy entries
4478 (the easiest ones)
4479
03e40ed6 44802004-12-08 22:46 +0000 [r5368] Elan Ruusamäe <glen/at/pld-linux.org>
d23f8bf7
AM
4481
4482 * rc.d/rc.sysinit: - typo
4483
cb0c01df 44842004-12-02 17:43 +0000 [r5362] Jarek Koszuk <heretyk/at/pld-linux.org>
d23f8bf7
AM
4485
4486 * rc.d/init.d/functions: Support for per service umask settings.
4487 This solves the problem with possibly different umask settings
4488 when starting services at boot time, and by hand.
4489
03e40ed6 44902004-11-29 20:10 +0000 [r5357] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
d23f8bf7 4491
b30f8040
AM
4492 * sysconfig/interfaces/ifcfg-ppp0.gprs-idea (added),
4493 sysconfig/interfaces/data/chat-ppp0.gprs-idea (added): Add IDEA
4494 GPRS examples.
d23f8bf7 4495
03e40ed6 44962004-11-26 22:49 +0000 [r5351] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7e8da059
AM
4497
4498 * configure.ac: Version 0.4.0.17.
4499
03e40ed6 45002004-11-13 21:43 +0000 [r5320] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7e8da059
AM
4501
4502 * sysconfig/network-scripts/ifup: Drop condition when checking
4503 cable - not needed.
4504
cb0c01df 45052004-11-13 21:37 +0000 [r5319] Bartosz Taudul <wolf/at/pld-linux.org>
7e8da059
AM
4506
4507 * sysconfig/network-scripts/ifup: - fix typo
4508
03e40ed6 45092004-11-13 21:31 +0000 [r5318] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7e8da059 4510
a2ee7529
JR
4511 * sysconfig/network-scripts/functions.network,
4512 sysconfig/network-scripts/ifup: Link status checking for ifup
4513 dhcp iface (from FC3).
7e8da059 4514
03e40ed6 45152004-11-13 20:31 +0000 [r5315] Adam Gołębiowski <adamg/at/pld-linux.org>
7e8da059
AM
4516
4517 * sysconfig/system: - s/outsite/outside/
4518
03e40ed6 45192004-11-13 11:36 +0000 [r5312-5313] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7e8da059
AM
4520
4521 * rc.d/init.d/functions: Drop obsolete msg_() functions.
4522
b30f8040 4523 * rc.d/rc.sysinit, rc.d/init.d/functions: More SELinux support from
7e8da059
AM
4524 FC initscripts.
4525
03e40ed6 45262004-10-25 19:27 +0000 [r4863] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7e8da059
AM
4527
4528 * rc.d/rc.sysinit: Use usbfs as USB filesystem name (not sure about
4529 2.4?).
4530
03e40ed6 45312004-10-01 21:28 +0000 [r4677] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7e8da059
AM
4532
4533 * sysconfig/network-scripts/ifup-ppp: Modprobe ppp modules when
4534 /dev/ppp doesn't exists (udev and devfs case).
4535
03e40ed6 45362004-09-25 22:22 +0000 [r4656] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
91625983
AM
4537
4538 * rc.d/rc.sysinit: Move .ICE-unix creation a bit lower in case of
4539 CLEAN_TMP usage.
4540
03e40ed6 45412004-09-25 13:22 +0000 [r4649] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
91625983
AM
4542
4543 * rc.d/rc.sysinit: Added udev support.
4544
03e40ed6 45452004-09-25 12:30 +0000 [r4647] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
91625983
AM
4546
4547 * sysconfig/interfaces/ifcfg-description: Fix typo (numer->number).
4548
03e40ed6 45492004-09-24 21:04 +0000 [r4639] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
91625983
AM
4550
4551 * configure.ac: Version 0.4.0.16.
4552
03e40ed6 45532004-09-22 16:32 +0000 [r4636] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
91625983 4554
4ca37ca2 4555 * rc.d/init.d/network, sysconfig/interfaces/ifcfg-description:
91625983
AM
4556 BOOTPRIO for changing interfaces starting order.
4557
03e40ed6 45582004-09-22 15:38 +0000 [r4635] Witek Kręcicki <adasi/at/pld-linux.org>
91625983
AM
4559
4560 * rc.d/init.d/network: - Start VLAN's after all physical interfaces
4561
03e40ed6 45622004-09-19 13:32 +0000 [r4615] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
91625983
AM
4563
4564 * rc.d/rc.sysinit: Create /tmp/.ICE-unix directory for X11.
4565
03e40ed6 45662004-08-25 20:58 +0000 [r4436] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
91625983 4567
b30f8040 4568 * sysconfig/Makefile.am, sysconfig/ip-rules (removed): Drop
91625983
AM
4569 sysconfig/ip-rules, it's not used.
4570
03e40ed6 45712004-08-25 20:36 +0000 [r4434] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
91625983
AM
4572
4573 * configure.ac: Release 0.4.0.15.
4574
03e40ed6 45752004-08-25 20:33 +0000 [r4433] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4576
4577 * rc.d/init.d/Makefile.am: Add sys-chroots.
4578
03e40ed6 45792004-08-25 20:15 +0000 [r4432] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4580
4581 * sysconfig/network-scripts/tnlup,
4582 sysconfig/network-scripts/tnldown: Don't display ls errors when
4583 there is no tunnel configs.
4584
03e40ed6 45852004-08-25 17:30 +0000 [r4431] Jan Rękorajski <baggins/at/pld-linux.org>
bbbc0441
AM
4586
4587 * sysconfig/i18n: - it's much too early for unicode by default, so
4588 add some comments
4589
03e40ed6 45902004-08-22 18:06 +0000 [r4430] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4591
4592 * rc.d/rc.shutdown: When shutting down try to stop LVM devices,
4593 too.
4594
03e40ed6 45952004-08-20 10:16 +0000 [r4429] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441 4596
4ca37ca2 4597 * rc.d/init.d/network, rc.d/rc.sysinit: Set sysctl parameters
bbbc0441
AM
4598 quietly (needed to avoid bunch of errors when grsec_lock is
4599 turned on).
4600
03e40ed6 46012004-08-14 23:16 +0000 [r4428] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4602
4603 * rc.d/init.d/functions: Add support for waiting for process to
4604 finish to daemon() and killproc(). Example usage: daemon
4605 --waitforname httpd.${HTTPD_MPM} --waitfortime 60
4606 httpd.${HTTPD_MPM} -f /etc/httpd/httpd.conf -k stop where
4607 --waitforname is name of process to wait and --waitfortime is how
4608 many seconds to wait at max.
4609
03e40ed6 46102004-08-09 00:31 +0000 [r4424] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4611
4612 * rc.d/rc.sysinit: Pass complete path to sulogin (/sbin/sulogin).
4613
03e40ed6 46142004-07-23 23:08 +0000 [r4389] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4615
4616 * rc.d/init.d/sys-chroots: chroot: umount /proc, /selinux and /sys
4617 at stopping.
4618
03e40ed6 46192004-07-23 23:04 +0000 [r4387-4388] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4620
4621 * rc.d/init.d/sys-chroots: chroot: umount all when stopping.
4622
4ca37ca2 4623 * rc.d/init.d/sys-chroots, rc.d/rc: chroot: Process stopping
bbbc0441
AM
4624 properly.
4625
03e40ed6 46262004-07-23 22:56 +0000 [r4386] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4627
4628 * rc.d/init.d/sys-chroots: chroot: Do not run network but lock
4629 subsys to pretend that network was run.
4630
03e40ed6 46312004-07-23 22:27 +0000 [r4385] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4632
4633 * rc.d/init.d/sys-chroots, rc.d/rc: rc: When shutting down to not
4634 call rc.shutdown when in chroot. sys-chroots: Run some commands
4635 really in chroot.
4636
03e40ed6 46372004-07-23 21:58 +0000 [r4384] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4638
4639 * sysconfig/interfaces/ifcfg-ppp0.speedtouch-neostrada,
4640 sysconfig/interfaces/ifcfg-ppp0.eagle-usb-neostrada: Set MTU to
4641 1452 for neostrada (from neostrada.info FAQ).
4642
03e40ed6 46432004-07-23 21:24 +0000 [r4383] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4644
4645 * rc.d/init.d/sys-chroots: chroot: clean up mtabs, mount proc,
4646 sysfs and selinuxfs.
4647
03e40ed6 46482004-07-23 21:14 +0000 [r4382] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4649
4650 * rc.d/init.d/sys-chroots (added): Started implementing multiple
4651 systems in chroots idea.
4652
03e40ed6 46532004-07-04 17:50 +0000 [r4316] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4654
4655 * configure.ac: s/path/name/
4656
03e40ed6 46572004-07-04 17:46 +0000 [r4315] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
bbbc0441
AM
4658
4659 * configure.ac: Avoid backup files when searching for shell
4660 scripts, too.
4661
03e40ed6 46622004-07-04 16:23 +0000 [r4312] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746 4663
4ca37ca2 4664 * po/de.po, po/pl.po: Make update-po + few manual fixes to pl.po.
31008746 4665
03e40ed6 46662004-07-04 16:14 +0000 [r4311] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4667
4668 * sysconfig/network-scripts/functions.network,
4669 rc.d/init.d/functions: Add #!/bin/sh to fool file(1).
4670
03e40ed6 46712004-07-04 15:57 +0000 [r4310] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4672
4673 * configure.ac: Don't search for shell scripts in directories with
4674 names starting with dot.
4675
03e40ed6 46762004-07-04 15:45 +0000 [r4309] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4677
4678 * rc.d/rc.shutdown: Turn off RAID devices using mdadm first,
4679 fallback to raidutils. Make raidutils stopping gettext friendly.
4680
03e40ed6 46812004-07-04 15:35 +0000 [r4308] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4682
4683 * makepot.pl: Put empty CHARSET instead of iso8859-2 in .pot file.
4684
03e40ed6 46852004-07-04 15:26 +0000 [r4307] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4686
4687 * configure.ac: - 0.4.0.14
4688
03e40ed6 46892004-07-04 14:41 +0000 [r4306] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4690
4691 * rc.d/rc.sysinit: Last one sysctl called with -e option to avoid
4692 errors on unknown keys.
4693
03e40ed6 46942004-07-04 14:34 +0000 [r4305] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4695
4696 * rc.d/rc.sysinit: Run LVM tools for RAID case only if some RAID
4697 volume was there.
4698
03e40ed6 46992004-07-04 14:11 +0000 [r4304] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4700
4701 * TODO: Some are done.
4702
03e40ed6 47032004-07-04 09:40 +0000 [r4303] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4704
4705 * sysconfig/network-scripts/ifup-ppp: Quote whole message passed to
4706 logger.
4707
03e40ed6 47082004-07-03 12:03 +0000 [r4302] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4709
4710 * sysconfig/network-scripts/ifup-ppp: s/speedtouch/speedtch/. Drop
4711 quoting from nls call.
4712
03e40ed6 47132004-07-03 11:27 +0000 [r4301] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4714
4715 * sysconfig/interfaces/Makefile.am,
4716 sysconfig/interfaces/ifcfg-ppp0.speedtouch-neostrada (added),
4717 sysconfig/network-scripts/ifup-ppp: Speedtouch modem support
4718 (arekm && qboosh).
4719
03e40ed6 47202004-07-02 21:56 +0000 [r4299] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4721
4722 * sysconfig/network-scripts/ifdown-ppp: Set interface used by EAGLE
4723 driver to down when downing ppp interface.
4724
03e40ed6 47252004-07-02 21:51 +0000 [r4298] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4726
4727 * sysconfig/network-scripts/ifdown-ppp: Always call ifdwon-post
4728 even if pppd was killed using -KILL.
4729
03e40ed6 47302004-07-02 21:42 +0000 [r4297] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4731
4732 * sysconfig/network-scripts/ifup-ppp,
4733 sysconfig/interfaces/ifcfg-ppp0.eagle-usb-neostrada: Use PAPNAME
4734 for neo example. Fix ifcfg-password.so plugin usage.
4735
03e40ed6 47362004-07-02 20:45 +0000 [r4296] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4737
4738 * hwprofile: Nicer profile number choose message.
4739
03e40ed6 47402004-07-02 15:30 +0000 [r4290-4291] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746 4741
b30f8040
AM
4742 * sysconfig/interfaces/ifcfg-ppp0.eagle-usb-neostrada (added),
4743 sysconfig/interfaces/Makefile.am: Add TPSA Neostrada example
4744 (Sagem Fast 700 using eagle-usb driver).
31008746
AM
4745
4746 * sysconfig/interfaces/data/chat-ppp0.tpsa,
4747 sysconfig/network-scripts/ifup-ppp: Fix chat-ppp0.tepsa (they no
4748 longer send ppp string). ifcfg-password.so is choosen only if
4749 PLUGIN_IFCFG_PASSWORD is set to yes.
4750
03e40ed6 47512004-06-29 22:06 +0000 [r4273] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
31008746
AM
4752
4753 * sysconfig/i18n: UTF-8 pl_PL is pl_PL.UTF-8/UTF-8 in
4754 SUPPORTED_LOCALES (qboosh).
4755
03e40ed6 47562004-06-29 19:43 +0000 [r4269] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4757
4758 * configure.ac: Relase 0.4.0.13.
4759
03e40ed6 47602004-06-29 19:33 +0000 [r4268] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4761
4762 * rc.d/rc.sysinit: Run rc.live for PLD LiveCD.
4763
03e40ed6 47642004-06-29 19:28 +0000 [r4267] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4765
4766 * rc.d/rc.sysinit: Use fastboot also for encrypted FS.
4767
03e40ed6 47682004-06-29 19:08 +0000 [r4266] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4769
4770 * rc.d/rc.shutdown: Sync remaining variable in fs umounting. Add
4771 squashfs there.
4772
03e40ed6 47732004-06-28 21:23 +0000 [r4264] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45 4774
a2ee7529 4775 * po/de.po, po/pl.po, po/Makefile.am: Fix fields spoted by msgfmt
7a603e45
AM
4776 -c and print translation statistics.
4777
03e40ed6 47782004-06-28 21:19 +0000 [r4263] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4779
4780 * po/Makefile.am: msgfmt now does po file validation.
4781
03e40ed6 47822004-06-28 19:22 +0000 [r4258] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4783
4784 * setsysfont: Minimalize code to support SYSFONT, fix UTF-8
4785 handling.
4786
03e40ed6 47872004-06-27 14:54 +0000 [r4253] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4788
4789 * setsysfont: Drop debugging stuff.
4790
03e40ed6 47912004-06-27 14:43 +0000 [r4252] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4792
4793 * setsysfont: Enhance font setting (use CONSOLEMAP and
4794 CONSOLEFONTMAP options).
4795
03e40ed6 47962004-06-27 14:30 +0000 [r4251] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4797
4798 * sysconfig/i18n: Promote unicode settings.
4799
03e40ed6 48002004-06-24 01:51 +0000 [r4236] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4801
4802 * rc.d/rc.sysinit: Always try to sync /dev entries for LVM2.
4803
03e40ed6 48042004-06-23 23:10 +0000 [r4235] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4805
4806 * rc.d/rc.sysinit: Synchronize LVM2 devices.
4807
03e40ed6 48082004-06-20 12:19 +0000 [r4225] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
7a603e45
AM
4809
4810 * configure.ac: Version 0.4.0.12.
4811
03e40ed6 48122004-06-20 11:33 +0000 [r4224] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4c25d1e1 4813
b30f8040 4814 * rc.d/rc.sysinit, rc.d/init.d/network: (sysctl): Ignore unknown
4c25d1e1
AM
4815 keys in sysctl.conf since kernels can have too different
4816 settings.
4817
03e40ed6 48182004-06-18 23:40 +0000 [r4215] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4c25d1e1
AM
4819
4820 * rc.d/init.d/functions: killproc(): Add --pidfile <file> support.
4821
03e40ed6 48222004-06-16 20:31 +0000 [r4211] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4c25d1e1
AM
4823
4824 * rc.d/init.d/functions: daemon(), run_cmd(): cd / before running
4825 any program
4826
03e40ed6 48272004-06-04 12:49 +0000 [r4140] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4c25d1e1
AM
4828
4829 * sysctl.conf: Added exec-shield example.
4830
03e40ed6 48312004-05-24 00:49 +0000 [r4121] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4c25d1e1
AM
4832
4833 * rc.d/rc.sysinit: 2.4.x kernel EVMS modules are loaded only when
4834 really running on 2.4 kernels.
4835
03e40ed6 48362004-05-24 00:44 +0000 [r4120] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4c25d1e1
AM
4837
4838 * sysconfig/network-scripts/ifup-ppp: Default route is forced only
03e40ed6 4839 if DEFROUTE=yes (Witek Kręcicki <adasi/at/pld-linux.org).
4c25d1e1 4840
03e40ed6 48412004-05-23 19:19 +0000 [r4119] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4c25d1e1 4842
03e40ed6 4843 * po/pl.po: More Polish characters used (Robert 'dzeus' Graużenis
4c25d1e1
AM
4844 <dzeus/at/zatorze.slupsk.pl>)
4845
cb0c01df 48462004-05-19 22:43 +0000 [r4099] Marcin Chojnowski <martii/at/pld-linux.org>
4c25d1e1
AM
4847
4848 * po/pl.po: all strings are with Polish chars now
4849
03e40ed6 48502004-05-18 22:58 +0000 [r4086] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4c25d1e1 4851
b30f8040
AM
4852 * src/ipcalc.c, src/usleep.c, src/process.c, src/minilogd.c,
4853 src/testd.c, src/initlog.c, src/doexec.c, src/usernetctl.c:
4854 Update helpers from Fedora initscripts.
4c25d1e1 4855
03e40ed6 48562004-05-18 22:46 +0000 [r4084] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
4c25d1e1
AM
4857
4858 * configure.ac: Prepare for 0.4.0.11.
4859
03e40ed6 48602004-05-18 22:27 +0000 [r4083] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
537d7646
AM
4861
4862 * setsysfont: Don't depend on bin paths.
4863
03e40ed6 48642004-05-18 22:24 +0000 [r4082] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
537d7646 4865
b30f8040 4866 * rc.d/init.d/functions, rc.d/rc.sysinit: Set system font as soon
537d7646
AM
4867 as possible.
4868
03e40ed6 48692004-05-18 21:29 +0000 [r4081] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
537d7646
AM
4870
4871 * setsysfont: Run unicode_start for UTF-8 console.
4872
03e40ed6 48732004-05-18 21:16 +0000 [r4080] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
537d7646
AM
4874
4875 * rc.d/rc.sysinit: Always delete some /tmp files on boot.
4876
03e40ed6 48772004-05-18 10:33 +0000 [r4074] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
537d7646
AM
4878
4879 * rc.d/rc.sysinit: Load hid, keybdev and mousedev only for kernels
4880 older than 2.6. For newer kernels use hotplug.
4881
03e40ed6 48822004-05-18 10:13 +0000 [r4073] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
537d7646
AM
4883
4884 * rc.d/rc.sysinit: Support for unmounting /initrd.
4885
03e40ed6 48862004-05-16 16:14 +0000 [r4065] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
537d7646
AM
4887
4888 * rc.d/rc.sysinit: (lvm detection): Remove head command usage - do
4889 it with awk only.
4890
03e40ed6 48912004-05-15 02:29 +0000 [r4055] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
e990e73e
AM
4892
4893 * sysconfig/Makefile.am: Example gentoo colors configuration
4894 included.
4895
03e40ed6 48962004-05-15 02:23 +0000 [r4053-4054] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
e990e73e
AM
4897
4898 * configure.ac: Release 0.4.0.10.
4899
b30f8040
AM
4900 * rc.d/init.d/functions, sysconfig/init-colors (added), rc.d/rc,
4901 rc.d/rc.sysinit, sysconfig/Makefile.am,
4902 sysconfig/init-colors.gentoo (added): Merge color customization
4ca37ca2 4903 support created by Łukasz Pawelczyk <havner/at/pld-linux.org>.
e990e73e 4904
cb0c01df 49052004-04-06 12:11 +0000 [r3903] Artur Frysiak <wiget/at/pld-linux.org>
e990e73e
AM
4906
4907 * rc.d/init.d/network: - umount CIFS on network stop
4908
03e40ed6 49092004-04-03 21:39 +0000 [r3881] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
e990e73e
AM
4910
4911 * rc.d/rc.sysinit: Fix LVM1 tools detection.
4912
03e40ed6 49132004-04-02 14:39 +0000 [r3855] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
e990e73e
AM
4914
4915 * sysconfig/interfaces/Makefile.am,
4916 sysconfig/interfaces/ifcfg-eth0.1 (added): VLAN example
4917 configuration.
4918
03e40ed6 49192004-03-29 20:42 +0000 [r3843] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
e990e73e
AM
4920
4921 * rc.d/init.d/functions: --fork support in daemon() by Aredridel
cb0c01df 4922 <aredridel/at/nbtsc.org>.
e990e73e 4923
cb0c01df 49242004-03-08 14:04 +0000 [r3424] Artur Frysiak <wiget/at/pld-linux.org>
e990e73e
AM
4925
4926 * rc.d/rc.sysinit: - check for LVM tools version and load only
4927 needed modules - fix case when /var is RO and LVM2 is activated
4928
cb0c01df 49292004-03-08 13:37 +0000 [r3423] Artur Frysiak <wiget/at/pld-linux.org>
e990e73e
AM
4930
4931 * rc.d/rc.sysinit: - cifs is networked fs
4932
03e40ed6 49332004-02-26 22:14 +0000 [r3384] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
e990e73e
AM
4934
4935 * rc.d/init.d/Makefile.am: Create $(sysconfdir)/init.d ->
4936 $(sysconfdir)/rc.d/init.d symlink for compatiblity.
4937
03e40ed6 49382004-02-07 21:37 +0000 [r3312] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
e990e73e
AM
4939
4940 * po/Makefile.am: Use $(mkinstalldirs) as suggested by Artur
4941 Frysiak.
4942
03e40ed6 49432004-02-06 22:33 +0000 [r3306] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cec04ba9
AM
4944
4945 * po/Makefile.am: Use install_sh instead of mkinstalldirs.
4946
03e40ed6 49472004-02-06 22:24 +0000 [r3305] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cec04ba9
AM
4948
4949 * configure.ac: Preparation for 0.4.0.9.
4950
03e40ed6 49512004-02-03 21:55 +0000 [r3271] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cec04ba9
AM
4952
4953 * rc.d/rc.sysinit: Set bafile earlier.
4954
03e40ed6 49552004-02-03 21:37 +0000 [r3269] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cec04ba9
AM
4956
4957 * rc.d/rc.sysinit: Do not delete hwprofile configuration (Tomasz
cb0c01df 4958 Witek <tiwek/at/tiwek.com>).
cec04ba9 4959
03e40ed6 49602004-01-27 11:55 +0000 [r3222] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cec04ba9
AM
4961
4962 * rc.d/init.d/functions: daemon(): when using --user run su with -s
4963 /bin/sh option.
4964
03e40ed6 49652004-01-25 12:27 +0000 [r3221] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cec04ba9
AM
4966
4967 * rc.d/rc.shutdown: Run kexec before rebooting (kexec support).
4968
03e40ed6 49692004-01-24 01:06 +0000 [r3220] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cec04ba9
AM
4970
4971 * sysconfig/network-scripts/ifdown: Wait for second after shutting
4972 down dhcp daemon/interface (for example dhcpcd needs some time).
4973
03e40ed6 49742004-01-16 23:12 +0000 [r3195] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cec04ba9
AM
4975
4976 * rc.d/init.d/functions: filter_chroot(): Return unfiltered pids
4977 when /proc is not mounted.
4978
03e40ed6 49792004-01-16 15:43 +0000 [r3194] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cec04ba9
AM
4980
4981 * src/Makefile.am, src/usernetctl.c: Use proper path when executing
4982 ifup/ifdown scripts in sernetctl.
4983
03e40ed6 49842004-01-15 22:12 +0000 [r3193] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cec04ba9
AM
4985
4986 * src/Makefile.am, configure.ac: Use --cflags-only-I from glib or
4987 glib-2.0 configuration when building ppp-watch.
4988
03e40ed6 49892004-01-10 16:13 +0000 [r3156] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
cec04ba9
AM
4990
4991 * sysconfig/network-scripts/functions.network: Set wireless nick to
4992 $WLAN_NICKNAME (variable) not WLAN_NICKNAME (string).
4993
03e40ed6 49942004-01-10 15:57 +0000 [r3153] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
a77d930b
AM
4995
4996 * configure.ac: - 0.4.0.8 release
4997
03e40ed6 49982004-01-10 15:27 +0000 [r3152] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
a77d930b
AM
4999
5000 * rc.d/init.d/functions: Outside chroot always add all possible
5001 pids unless some has /proc/XXX/root inside of known chroot.
5002
03e40ed6 50032004-01-10 14:07 +0000 [r3151] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
a77d930b
AM
5004
5005 * rc.d/init.d/functions: filter_chroot(): add pid only once.
5006
03e40ed6 50072004-01-10 13:58 +0000 [r3150] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
a77d930b
AM
5008
5009 * rc.d/init.d/functions: Fix ulimits in one more case (ssh vs squid
5010 case).
5011
03e40ed6 50122004-01-10 13:42 +0000 [r3149] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
a77d930b 5013
a2ee7529 5014 * rc.d/init.d/functions, sysconfig/system: Support for handling
a77d930b
AM
5015 processes inside and outside of chrooted systems based on
5016 rc-scripts-chroot_safe.patch.
5017
03e40ed6 50182004-01-09 21:59 +0000 [r3148] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
a77d930b
AM
5019
5020 * rc.d/init.d/functions: Rework ulimit support so it works again.
5021
03e40ed6 50222004-01-09 01:40 +0000 [r3141] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
a77d930b
AM
5023
5024 * sysconfig/network-scripts/functions.network: Sencond part of ppp
5025 DEVNAME fixes.
5026
03e40ed6 50272004-01-09 01:24 +0000 [r3140] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
a77d930b
AM
5028
5029 * sysconfig/network-scripts/ifdown-ppp: ifup-ppp instructs pppd to
5030 create pppd-$DEVNAME.pid file, so in ifdown-ppp we also use
5031 $DEVNAME.
5032
03e40ed6 50332004-01-09 00:39 +0000 [r3139] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
a77d930b
AM
5034
5035 * run-parts: If in -u mode and user cannot be found then skip that
5036 file and display warning.
5037
03e40ed6 50382004-01-09 00:29 +0000 [r3138] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
a77d930b
AM
5039
5040 * run-parts: Added -u option which means: run as owner of file not
5041 as current user (usable mainly from root).
5042
03e40ed6 50432004-01-08 22:42 +0000 [r3137] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
a77d930b
AM
5044
5045 * src/Makefile.am, configure.ac: Try to find glib-2.0, glib in that
5046 order - link with first found.
5047
03e40ed6 50482004-01-08 22:01 +0000 [r3134] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff
AM
5049
5050 * configure.ac: - 0.4.0.7 release
5051
03e40ed6 50522004-01-08 02:43 +0000 [r3133] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff
AM
5053
5054 * sysconfig/network-scripts/functions.network: When shutting down
5055 ip rule and ip route, clear rules using current kernel tables
5056 configuration not data stored in configuration files so we always
cb0c01df 5057 end in clean state (by Arkadiusz Chomicki <duch/at/wla.pl>).
ef70bcff 5058
03e40ed6 50592004-01-07 08:37 +0000 [r3132] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff
AM
5060
5061 * rc.d/rc: Typo fixed (revious->previous) in bootsplash code.
cb0c01df 5062 Arkadiusz Chomicki <duch/at/wla.pl>
ef70bcff 5063
03e40ed6 50642004-01-02 16:44 +0000 [r3109-3110] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff
AM
5065
5066 * autogen.sh: Second option when doing changelog is directory name
5067 like rc-scripts.
5068
5069 * rc.d/rc.sysinit: Zero /etc/cryptomtab if such file exists.
5070
03e40ed6 50712003-12-28 19:23 +0000 [r3090] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff
AM
5072
5073 * rc.d/rc.sysinit: Don't mount selinuxfs if it's already mounted
5074 (by init for example).
5075
03e40ed6 50762003-12-27 14:43 +0000 [r3081] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff
AM
5077
5078 * sysconfig/network-scripts/functions.network: Fix static routes
cb0c01df 5079 conf parsing. (Arkadiusz Chomicki <chomar/at/wla.pl>)
ef70bcff 5080
03e40ed6 50812003-12-25 18:43 +0000 [r3076] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff
AM
5082
5083 * autogen.sh: changelog generation part can be now used in other
5084 modules.
5085
03e40ed6 50862003-12-25 13:20 +0000 [r3073] Łukasz Jernaś <deejay1/at/pld-linux.org>
ef70bcff
AM
5087
5088 * rc.d/init.d/template.init: - typo
5089
03e40ed6 50902003-12-23 17:15 +0000 [r3065] Paweł Żurowski <pzurowski/at/pld-linux.org>
ef70bcff
AM
5091
5092 * rc.d/init.d/functions: - fixed bug when $limits is empty
5093
03e40ed6 50942003-12-23 00:37 +0000 [r3064] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff
AM
5095
5096 * rc.d/init.d/network: When starting execute rc_splash 'bootnetwork
5097 start'.
5098
03e40ed6 50992003-12-23 00:31 +0000 [r3063] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff
AM
5100
5101 * rc.d/init.d/functions: Read sysconfig/bootsplash, too.
5102
03e40ed6 51032003-12-22 17:43 +0000 [r3062] Paweł Żurowski <pzurowski/at/pld-linux.org>
ef70bcff
AM
5104
5105 * rc.d/init.d/functions: - removed sed (I'm sorry I done buggy
5106 change last time, now it is good one - tested and working)
5107
03e40ed6 51082003-12-22 00:59 +0000 [r3061] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff
AM
5109
5110 * rc.d/rc: Much more accurate calculations of start/stop scripts
5111 required in new runlevel.
5112
03e40ed6 51132003-12-21 22:55 +0000 [r3060] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff
AM
5114
5115 * rc.d/init.d/functions: Revert few pzurowski changes since they
5116 are broken even after fixing syntax.
5117
03e40ed6 51182003-12-21 22:31 +0000 [r3059] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ef70bcff 5119
03e40ed6 5120 * rc.d/init.d/functions: Paweł Żurowski optimizations were broken
ef70bcff
AM
5121 (missing quotation marks). Fixed now.
5122
03e40ed6 51232003-12-21 21:25 +0000 [r3056] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af
AM
5124
5125 * rc-scripts.spec.in: Add pkgconfig to BuildRequires.
5126
03e40ed6 51272003-12-21 21:11 +0000 [r3055] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af
AM
5128
5129 * src/Makefile.am, configure.ac: Find libglib.a location using
cb0c01df 5130 pkg-config and use it (Artur Frysiak <wiget/at/pld-linux.org>).
f30533af 5131
03e40ed6 51322003-12-21 17:30 +0000 [r3054] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af 5133
a2ee7529 5134 * configure.ac, sysconfig/network-scripts/Makefile.am: Don't set
f30533af
AM
5135 libdir - use value from configure script.
5136
03e40ed6 51372003-12-21 17:05 +0000 [r3053] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af
AM
5138
5139 * configure.ac: - release 0.4.0.6 is comming
5140
03e40ed6 51412003-12-21 16:43 +0000 [r3052] Łukasz Jernaś <deejay1/at/pld-linux.org>
f30533af
AM
5142
5143 * po/pl.po: - typo
5144
cb0c01df 51452003-12-21 14:33 +0000 [r3051] Adam Gorzkiewicz <adgor/at/pld-linux.org>
f30533af
AM
5146
5147 * rc.d/rc.modules: - Typo
5148
03e40ed6 51492003-12-21 13:43 +0000 [r3050] Marcin Krzyżanowski <krzak/at/pld-linux.org>
f30533af
AM
5150
5151 * sysconfig/network-scripts/ifup-ppp: - fix ${PPPOA_EAGLE} check if
5152 there isn't executable adictrl try use eaglectrl
5153
03e40ed6 51542003-12-21 13:28 +0000 [r3049] Paweł Żurowski <pzurowski/at/pld-linux.org>
f30533af
AM
5155
5156 * rc.d/init.d/functions: - small revert: we do not use sed in
5157 rc-scripts - other sed -> awk changes
5158
03e40ed6 51592003-12-21 13:08 +0000 [r3048] Marcin Krzyżanowski <krzak/at/pld-linux.org>
f30533af
AM
5160
5161 * sysconfig/network-scripts/ifup-ppp: - corrected nls message when
5162 pppd does not exist - support for PPPOA_EAGLE start with kernel
5163 2.6 and 2.4
5164
03e40ed6 51652003-12-21 12:14 +0000 [r3047] Paweł Żurowski <pzurowski/at/pld-linux.org>
f30533af
AM
5166
5167 * rc.d/rc.sysinit, rc.d/rc.modules, rc.d/init.d/functions: -
5168 simplified (use less tools, one-time file reading)
5169
03e40ed6 51702003-12-21 10:46 +0000 [r3046] Paweł Żurowski <pzurowski/at/pld-linux.org>
f30533af
AM
5171
5172 * rc.d/rc.modules: - simplified (double awk->single one)
5173
03e40ed6 51742003-12-21 10:18 +0000 [r3045] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af
AM
5175
5176 * rc.d/rc.modules: Added support for /etc/modules file exactly for
5177 one kernel (like /etc/modules.2.6.0).
5178
03e40ed6 51792003-12-21 10:14 +0000 [r3044] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af
AM
5180
5181 * rc.d/rc.modules: Do not require existence of /etc/modules (Marcin
cb0c01df 5182 Krzyzanowski <krzak/at/linux.net.pl>).
f30533af 5183
03e40ed6 51842003-12-21 00:58 +0000 [r3043] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af 5185
b30f8040
AM
5186 * rc.d/init.d/functions, rc.d/rc.shutdown, rc.d/rc,
5187 rc.d/rc.sysinit: More progress bar support (bootsplash): it moves
5188 now!
f30533af 5189
03e40ed6 51902003-12-20 21:21 +0000 [r3042] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af
AM
5191
5192 * hwprofile: Reindented whole script. checkprofdir(): New. Use it
5193 when required (now help is shown when needed). When executed
5194 without arguments show help.
5195
03e40ed6 51962003-12-19 14:40 +0000 [r3039] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af
AM
5197
5198 * rc-scripts.spec.in: bdflush is not required.
5199
03e40ed6 52002003-12-19 13:59 +0000 [r3038] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af 5201
d5bbf29e 5202 * src/Makefile.am: Use @libdir@ instead of hardcoded /usr/lib path
f30533af
AM
5203 when linking ppp-watch with glib.
5204
03e40ed6 52052003-12-15 13:29 +0000 [r1739] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af
AM
5206
5207 * rc.d/init.d/functions: Set action variable to proper value in
cb0c01df 5208 rc_splash(). Found by Michal Moskal <malekith/at/pld-linux.org>.
f30533af 5209
03e40ed6 52102003-12-14 21:20 +0000 [r1733] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af
AM
5211
5212 * rc.d/rc.sysinit: Fix mounting sysfs - be consistent with mounting
5213 proc + do not require entry in fstab (qboosh). Add support for
5214 mounting selinuxfs (me).
5215
03e40ed6 52162003-12-14 18:23 +0000 [r1732] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af
AM
5217
5218 * src/usernetctl.c: - fix path to ifcfg- files (wrobell)
5219
03e40ed6 52202003-12-12 16:43 +0000 [r1731] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af 5221
b30f8040 5222 * rc.d/rc, rc.d/rc.sysinit, rc.d/init.d/functions: - initial
f30533af
AM
5223 support for bootsplash.org
5224
03e40ed6 52252003-12-07 15:54 +0000 [r1723] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
f30533af
AM
5226
5227 * configure.ac: - release 0.4.0.5
5228
03e40ed6 52292003-12-05 20:41 +0000 [r1722] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6ba49087 5230
ac244935 5231 * rc.d/init.d/network: Fix interfaces_boot for bridge devices.
03e40ed6 5232 (found by Radosław Kintzi <radek/at/pop.e-wro.pl>)
6ba49087 5233
03e40ed6 52342003-12-05 20:30 +0000 [r1721] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3659f61a 5235
4ca37ca2
JR
5236 * sysconfig/network-scripts/functions.network,
5237 sysconfig/network-scripts/ifup,
5238 sysconfig/network-scripts/ifup-br: Move setting wireless specific
a2ee7529
JR
5239 settings into separate wireless_param() function and use it in
5240 ifup. Set wireless parameters for each wireless device being part
5241 of bridge. (patch by Radosław Kintzi <radek/at/pop.e-wro.pl>)
fe794189 5242
03e40ed6 52432003-11-15 14:38 +0000 [r1698] Marcin Krzyżanowski <krzak/at/pld-linux.org>
fe794189 5244
ac244935
AM
5245 * sysconfig/i18n: - add #SUPPORTED_LOCALES="pl_PL/ISO-8859-2
5246 de_DE/ISO-8859-2 en_GB/ISO-8859-1 en_US/ISO-8859-1"
3659f61a 5247
03e40ed6 52482003-11-14 14:05 +0000 [r1697] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
3659f61a 5249
ac244935
AM
5250 * rc.d/rc.modules: Also load modules from
5251 /etc/modules.${kernel_major}.${kernel_minior} if exists. Allows
5252 for example to specify modules only to be loaded on 2.6 kernels.
5253 (idea by cieciwa)
6ee59ed2 5254
03e40ed6 52552003-11-01 20:18 +0000 [r1484] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6ee59ed2 5256
ac244935
AM
5257 * rc.d/rc.sysinit: Redirect grep stderr output when checking for
5258 HID to /dev/null.
6ee59ed2 5259
03e40ed6 52602003-11-01 19:34 +0000 [r1483] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6ee59ed2 5261
ac244935
AM
5262 * rc.d/rc.sysinit: Delete rpm locks when starting
5263 (/var/lib/rpm/__db*).
6ee59ed2 5264
03e40ed6 52652003-11-01 19:31 +0000 [r1480-1482] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6ee59ed2 5266
ac244935 5267 * rc.d/rc.sysinit: Explicitly turn on user and group quota.
6ee59ed2 5268
ac244935
AM
5269 * rc.d/rc.sysinit: Mount local filesystems with -O no_netdev option
5270 (rh).
6ee59ed2 5271
ac244935
AM
5272 * rc.d/rc.sysinit: Rescan for LVM devices again after turning on
5273 RAID devices in lvm-on-top-of-raid case.
6ee59ed2 5274
03e40ed6 52752003-11-01 19:20 +0000 [r1479] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6ee59ed2 5276
ac244935
AM
5277 * rc.d/rc.sysinit: quotacheck could in some cases if quota files
5278 were corrupted ask for user input - avoid this.
6ee59ed2 5279
03e40ed6 52802003-11-01 19:16 +0000 [r1478] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6ee59ed2 5281
ac244935
AM
5282 * rc.d/rc.sysinit: Initialize USB as fast as it's possible.
5283 Properly mount usb filesystem even if it is not specified in
5284 /etc/fstab.
6ee59ed2 5285
03e40ed6 52862003-11-01 14:54 +0000 [r1477] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6ee59ed2 5287
ac244935
AM
5288 * autogen.sh: Generate nice ChangeLog if requested and if needed
5289 utilities are available.
6ee59ed2 5290
03e40ed6 52912003-10-31 17:49 +0000 [r1476] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6ee59ed2 5292
ac244935
AM
5293 * rc.d/rc.sysinit: Revert part which was pretending that /dev/pts
5294 is always mounted (havner).
6ee59ed2 5295
03e40ed6 52962003-10-31 09:00 +0000 [r1475] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6ee59ed2 5297
ac244935 5298 * sysconfig/network-scripts/ifdown: Fix double link down (qboosh).
6ee59ed2 5299
03e40ed6 53002003-10-31 01:12 +0000 [r1474] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6ee59ed2 5301
ac244935
AM
5302 * rc.d/rc.sysinit: Check for nofirewire in /proc/cmdline not in
5303 stdin.
52bb6847 5304
03e40ed6 53052003-10-31 00:49 +0000 [r1469-1471] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
52bb6847 5306
ac244935 5307 * configure.ac: Prepare release 0.4.0.4.
52bb6847 5308
ac244935 5309 * rc-scripts.spec.in: Include genhostid in rpm package.
52bb6847 5310
ac244935
AM
5311 * po/Makefile.am: Fix handling custom builddir (until now objects
5312 were created in $(srcdir) not in builddir).
6d250d3d 5313
03e40ed6 53142003-10-31 00:24 +0000 [r1468] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5315
ac244935
AM
5316 * configure.ac: Fix finding shell scripts procedure when building
5317 with builddir different than place where configure file resides.
6d250d3d 5318
03e40ed6 53192003-10-31 00:08 +0000 [r1466-1467] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5320
4ca37ca2
JR
5321 * doc/ppp-watch.8, doc/ipcalc.1, doc/netreport.1,
5322 doc/consoletype.1, doc/initlog.1: Update manual pages for each
ac244935 5323 updated utility.
6d250d3d 5324
4ca37ca2 5325 * doc/Makefile.am, doc/genhostid.1 (added): Include genhostid man
ac244935 5326 page.
6d250d3d 5327
03e40ed6 53282003-10-31 00:03 +0000 [r1464-1465] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5329
ac244935 5330 * adjtime: - One more zero to reflect real format of this file.
6d250d3d 5331
ac244935
AM
5332 * service: Set default PATH and use it along with TERM when
5333 starting services.
6d250d3d 5334
03e40ed6 53352003-10-30 23:58 +0000 [r1463] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5336
b30f8040
AM
5337 * src/Makefile.am, src/getkey.c, src/usernetctl.c, src/ipcalc.c,
5338 src/process.c, src/netreport.c, src/ppp-watch.c,
5339 src/consoletype.c, src/genhostid.c (added), src/initlog.c: Update
5340 bunch of utils in src/. New getnhostid utility. ipcalc has
ac244935
AM
5341 enhanced PREFIX support. getkey has been rewrited to use popt
5342 (rh).
6d250d3d 5343
03e40ed6 53442003-10-30 23:43 +0000 [r1462] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5345
ac244935
AM
5346 * rc.d/rc.sysinit: Try to query 131072 bytes kernel buffer for
5347 dmesg and keep dmesg file from last five runs.
6d250d3d 5348
03e40ed6 53492003-10-30 23:33 +0000 [r1461] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5350
ac244935
AM
5351 * rc.d/rc.sysinit: Plase usbdevfs and devfs filesystems into
5352 /etc/mtab, too.
6d250d3d 5353
03e40ed6 53542003-10-30 23:30 +0000 [r1459-1460] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5355
ac244935
AM
5356 * rc.d/rc.sysinit: Handle situation where multiple usb-controller
5357 aliases were defined and some of them were "off".
6d250d3d 5358
ac244935
AM
5359 * rc.d/rc.sysinit: Firewire modules are now loaded if proper
5360 modprobe aliases were found (from mdk).
6d250d3d 5361
03e40ed6 53622003-10-30 23:21 +0000 [r1458] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5363
ac244935
AM
5364 * rc.d/rc.sysinit: Use -e option for first swapon call. Now swapon
5365 will silently skip swap devices it they are not available at this
5366 time (like for example swap files on some partitions).
6d250d3d 5367
03e40ed6 53682003-10-30 21:41 +0000 [r1456] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5369
ac244935
AM
5370 * sysconfig/network-scripts/ifdown,
5371 sysconfig/network-scripts/ifdown-br: - first flush addresses and
5372 then down interface. Previously things were done in reversed
5373 order and that caused problems on 2.6 kernels (ip flush was
5374 hanging). Additionaly things are now done in sync with how it's
5375 done in set_down_loopback().
6d250d3d 5376
03e40ed6 53772003-10-28 01:09 +0000 [r1455] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5378
ac244935
AM
5379 * rc.d/rc.sysinit: - fix /sys mount and simplify check if usbfs is
5380 already mounted
6d250d3d 5381
03e40ed6 53822003-10-25 23:32 +0000 [r1451] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5383
ac244935 5384 * configure.ac: - 0.4.0.3 release
6d250d3d 5385
03e40ed6 53862003-10-18 22:26 +0000 [r1445] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5387
ac244935 5388 * rc.d/rc.sysinit: - fix typo in accounting script path (qboosh)
6d250d3d 5389
03e40ed6 53902003-10-17 18:55 +0000 [r1444] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5391
ac244935
AM
5392 * rc.d/init.d/timezone: - copy timezone file instead of symlinking
5393 it (idea by ankry)
6d250d3d 5394
03e40ed6 53952003-10-13 07:41 +0000 [r1437] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5396
ac244935 5397 * sysconfig/network-scripts/ifup-ppp: - don't ignore data specified
cb0c01df 5398 at DATAFORCHAT option (Szymon Siwek <sls/at/poczta.wp.pl>)
6d250d3d 5399
03e40ed6 54002003-10-12 19:12 +0000 [r1434-1436] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5401
b30f8040 5402 * sysconfig/system, rc.d/init.d/functions: - support for per
ac244935 5403 service ulimits configuration (qboosh)
6d250d3d 5404
ac244935
AM
5405 * sysconfig/network-scripts/functions.network: - kill gnu in PLD
5406 name (qboosh)
6d250d3d 5407
b30f8040 5408 * po/de.po, rc.d/rc.shutdown, po/pl.po, rc.d/rc.sysinit: - use
ac244935
AM
5409 /etc/rc.d/rc.acct for accouting; updated accouting related parts
5410 of translations (qboosh)
6d250d3d 5411
cb0c01df 54122003-10-11 11:03 +0000 [r1433] Artur Frysiak <wiget/at/pld-linux.org>
6d250d3d 5413
ac244935 5414 * sysconfig/interfaces/ifcfg-description: - describe HOTPLUG
6d250d3d 5415
cb0c01df 54162003-10-11 10:59 +0000 [r1432] Artur Frysiak <wiget/at/pld-linux.org>
6d250d3d 5417
ac244935
AM
5418 * sysconfig/network-scripts/ifup: - if invoced from hotplug bring
5419 up only interface with HOTPLUG=yes
6d250d3d 5420
cb0c01df 54212003-10-11 09:15 +0000 [r1431] Artur Frysiak <wiget/at/pld-linux.org>
6d250d3d 5422
ac244935
AM
5423 * sysconfig/network-scripts/ifup: - ifup exit if invoked from
5424 hotplug and ONBOOT=yes
6d250d3d 5425
03e40ed6 54262003-10-08 15:03 +0000 [r1430] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5427
ac244935
AM
5428 * rc.d/rc.shutdown: - sysfs added to remaining list in rc.shutdown
5429 (by havner)
6d250d3d 5430
03e40ed6 54312003-10-07 15:44 +0000 [r1425] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5432
ac244935
AM
5433 * sysconfig/network-scripts/ifup-ppp: - bring PPPOA_IFACE up before
5434 starting pppoa; small fix in logged message (both by adasi)
6d250d3d 5435
03e40ed6 54362003-10-07 09:41 +0000 [r1424] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5437
ac244935 5438 * sysconfig/network-scripts/ifup-ppp: - initial eagle (pppoa)
cb0c01df 5439 support by Witold Krecicki <adasi/at/grubno.da.ru>)
6d250d3d 5440
03e40ed6 54412003-10-06 09:19 +0000 [r1413] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5442
ac244935 5443 * hwprofile: - fix typo in available word (qboosh)
6d250d3d 5444
03e40ed6 54452003-10-04 13:02 +0000 [r1412] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5446
ac244935 5447 * rc.d/init.d/functions: - return with some retval
6d250d3d 5448
03e40ed6 54492003-10-04 12:06 +0000 [r1411] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5450
ac244935
AM
5451 * rc.d/init.d/functions: - allow unknown options to be passed to
5452 initlog()
6d250d3d 5453
03e40ed6 54542003-10-04 11:57 +0000 [r1410] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5455
ac244935 5456 * rc.d/init.d/functions: - move is_yes and is_not at beginning
6d250d3d 5457
03e40ed6 54582003-10-04 11:41 +0000 [r1409] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5459
ac244935
AM
5460 * Makefile.am: - use rpm or rpmbuild depending on which rpm version
5461 is installed
6d250d3d 5462
03e40ed6 54632003-10-04 11:30 +0000 [r1408] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5464
ac244935 5465 * rc-scripts.spec.in: - include hwprofiles/files
6d250d3d 5466
03e40ed6 54672003-10-04 11:08 +0000 [r1407] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5468
a2ee7529 5469 * rc.d/init.d/functions, sysconfig/system: Fast boot support
ac244935
AM
5470 (disables NLS, fancy logging and thus is much faster). Useful on
5471 workstations. Based on idea and patch by Wojtek Kaniewski
cb0c01df 5472 <wojtekka/at/bydg.pdi.net>.
6d250d3d 5473
03e40ed6 54742003-10-04 09:55 +0000 [r1405-1406] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5475
ac244935 5476 * setsysfont: - use CONSOLEFONT when SYSFONT is empty (Wojtek
cb0c01df 5477 Kaniewski <wojtekka/at/bydg.pdi.net>)
6d250d3d 5478
ac244935
AM
5479 * sysconfig/network-scripts/ifup-ppp: Support for
5480 ppp-plugin-ifcfg-password.spec by Wojtek Kaniewski
cb0c01df 5481 <wojtekka/at/bydg.pdi.net>.
6d250d3d 5482
03e40ed6 54832003-10-04 09:46 +0000 [r1404] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5484
b30f8040
AM
5485 * sysconfig/hwprofiles/files (added), sysconfig/hwprof, hwprofile,
5486 sysconfig/hwprofiles/Makefile.am: Merged patch by Tomasz Witek
5487 <tiwek/at/manta.univ.gda.pl>: - ignore Latency in /proc/pci -
5488 ability to choose profile while booting - example profile file -
5489 misc fixes and cleanups
6d250d3d 5490
03e40ed6 54912003-10-02 18:43 +0000 [r1399-1400] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5492
ac244935 5493 * configure.ac: - 0.4.0.2 release
6d250d3d 5494
ac244935 5495 * rc.d/init.d/functions: - check own pid, not parents one
6d250d3d 5496
03e40ed6 54972003-10-02 18:33 +0000 [r1398] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5498
ac244935
AM
5499 * rc.d/rc.sysinit: - sleep 5 is not needed when starting usb; more
5500 protection again double mounting usbfs
6d250d3d 5501
03e40ed6 55022003-10-02 18:23 +0000 [r1397] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5503
ac244935 5504 * rc.d/init.d/functions: - do even try to kill itself
6d250d3d 5505
03e40ed6 55062003-09-30 09:44 +0000 [r1393] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 5507
ac244935 5508 * rc.d/rc.sysinit: - load lvm and dm modules with "autoclean"
6d250d3d 5509
03e40ed6 55102003-09-30 09:40 +0000 [r1392] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 5511
ac244935
AM
5512 * rc.d/rc.sysinit: - usb-storage must be loaded before LVM
5513 detection (disks on USB are real)
6d250d3d 5514
cb0c01df 55152003-09-28 16:33 +0000 [r1383] Artur Frysiak <wiget/at/pld-linux.org>
6d250d3d 5516
ac244935 5517 * sysconfig/network-scripts/ifup-ppp: - fix error message
6d250d3d 5518
cb0c01df 55192003-09-28 16:03 +0000 [r1382] Artur Frysiak <wiget/at/pld-linux.org>
6d250d3d 5520
ac244935 5521 * sysconfig/network-scripts/ifup-irda: - fix setting arp for irdaX
6d250d3d 5522
03e40ed6 55232003-09-28 14:53 +0000 [r1381] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5524
ac244935
AM
5525 * sysconfig/network-scripts/ifup: - fix power/txpower/retry wlan
5526 parameters handling
6d250d3d 5527
cb0c01df 55282003-09-22 19:55 +0000 [r1371] Artur Frysiak <wiget/at/pld-linux.org>
6d250d3d 5529
ac244935 5530 * run-parts: - use syntax described in SUSv2
6d250d3d 5531
03e40ed6 55322003-09-22 17:46 +0000 [r1370] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5533
ac244935 5534 * run-parts: - oh, use RUNPARTS_DIR
6d250d3d 5535
03e40ed6 55362003-09-22 17:20 +0000 [r1369] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5537
ac244935
AM
5538 * run-parts: - run mainly safe named scripts and protect against
5539 some bad files
6d250d3d 5540
03e40ed6 55412003-09-22 01:35 +0000 [r1365] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5542
ac244935 5543 * rc-scripts.spec.in: - include more docs
6d250d3d 5544
03e40ed6 55452003-09-22 01:28 +0000 [r1364] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ac244935 5546
b30f8040
AM
5547 * sysconfig/network-scripts/functions.network, sysconfig/i18n,
5548 po/de.po, sysconfig/network-scripts/ifup-br,
5549 sysconfig/network-scripts/ifup-plip,
5550 sysconfig/interfaces/ifcfg-irlan0, ppp/ip-up.d/logger,
5551 sysconfig/network-scripts/ifdown-post, README,
4ca37ca2
JR
5552 sysconfig/hwprofiles/Makefile.am, ppp/auth-down,
5553 rc.d/init.d/timezone, sysconfig/network-scripts/ifup-post,
5554 sysconfig/interfaces/data/chat-ppp0.leased1, makepot.pl,
5555 sysconfig/network-scripts/ifup-neigh,
5556 sysconfig/network-scripts/ifup-ppp, DEVELOPMENT, rc.d/rc.local,
5557 AUTHORS, sysconfig/network-scripts/ifdown-irda,
5558 isapnp/isapnp-kernel.conf, rc.d/init.d/random, run-parts,
5559 rc.d/init.d/single, rc.d/rc.init, doc/ipcalc.1,
5560 rc.d/init.d/killall, sysconfig/network-scripts/ifup-sl,
5561 sysconfig/network-scripts/ifup-irda, isapnp/Makefile.am,
5562 configure.ac, sysconfig/network-scripts/ifup-aliases,
5563 sysconfig/network-scripts/ifdown-ppp,
5564 sysconfig/network-scripts/ifdown-vlan, po/pl.po,
ac244935 5565 sysconfig/network-scripts/tnldown,
4ca37ca2
JR
5566 sysconfig/network-scripts/ifdown-br, doc/sysvinitfiles,
5567 ppp/ipx-up, rc.d/init.d/allowlogin, ppp/auth-up,
ac244935
AM
5568 sysconfig/network-scripts/ifup-vlan,
5569 sysconfig/interfaces/tnlcfg-description,
4ca37ca2
JR
5570 sysconfig/network-scripts/ifup, sysconfig/interfaces/ifcfg-br0,
5571 doc/sysconfig.txt, sysconfig/interfaces/data/chat-ppp0.callback,
5572 rc.d/init.d/template.init, ppp/ip-up, rc.d/rc.sysinit,
5573 doc/net-scripts.txt, sysconfig/interfaces/down.d/ppp/logger,
5574 sysconfig/clock, hwprofile, sysconfig/interfaces/ifcfg-sl0,
5575 src/ipcalc.c, ppp/ipx-down, rc.d/rc.shutdown,
5576 sysconfig/network-scripts/ifup-routes,
5577 sysconfig/network-scripts/ifup-plusb,
5578 sysconfig/network-scripts/ifdown,
5579 sysconfig/interfaces/up.d/ppp/logger, ppp/ip-down,
5580 sysconfig/interfaces/ifcfg-ppp0.callback,
5581 sysconfig/network-scripts/ifup-ipx, rc.d/init.d/functions,
ac244935 5582 sysconfig/network-scripts/ifdown-sl,
4ca37ca2
JR
5583 sysconfig/network-scripts/tnlup, rc-scripts.spec.in,
5584 sysconfig/system, sysconfig/network-scripts/ifup-iucv, rc.d/rc,
5585 sysconfig/network, sysconfig/interfaces/ifcfg-ppp0.leased1,
a2ee7529 5586 sysconfig/interfaces/ifcfg-ppp0.leased2, rc.d/rc.modules,
4ca37ca2
JR
5587 sysconfig/interfaces/data/chat-ppp0.tpsa,
5588 sysconfig/interfaces/ifcfg-irda0, rc.d/init.d/network,
b30f8040
AM
5589 ppp/ip-down.d/logger: - preparation for upcoming 0.4.0.1 release
5590 - updated all email addresses to current domain (pld-linux.org) -
5591 added missing files (networking scripts mainly) - updated spec
5592 file - updated changelog
ac244935 5593
03e40ed6 55942003-09-22 00:55 +0000 [r1363] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ac244935 5595
4ca37ca2
JR
5596 * sysconfig/network-scripts/Makefile.am,
5597 sysconfig/interfaces/Makefile.am: - added missing files
ac244935 5598
03e40ed6 55992003-09-19 20:29 +0000 [r1361] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ac244935
AM
5600
5601 * sysconfig/interfaces/ifcfg-description: - description of
5602 DIRECT_CONNECT for ppp, too
5603
03e40ed6 56042003-09-14 11:47 +0000 [r1331] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ac244935 5605
b30f8040 5606 * sysconfig/interfaces/up.d/tnl/.cvsignore,
4ca37ca2
JR
5607 sysconfig/interfaces/up.d/ppp/.cvsignore,
5608 sysconfig/interfaces/data/Makefile.am, autogen.sh,
5609 sysconfig/static-nat, ppp/.cvsignore, doc/.cvsignore,
5610 sysconfig/interfaces/up.d/all/.cvsignore, sysconfig/i18n,
5611 po/de.po, src/process.c, sysconfig/network-scripts/ifup-br,
5612 sysconfig/interfaces/ifcfg-irlan0,
5613 sysconfig/interfaces/ifcfg-ppp0.tpsa,
5614 sysconfig/interfaces/down.d/Makefile.am, src/process.h,
5615 sysconfig/network-scripts/ifdown-post, lang.csh,
5616 sysconfig/interfaces/down.d/ipx/.cvsignore, src/resolvesymlink.c,
5617 sysconfig/hwprofiles/Makefile.am, dumb.sh,
5618 sysconfig/interfaces/up.d/tnl/Makefile.am, ppp/auth-down, TODO,
5619 sysconfig/interfaces/up.d/ipx/Makefile.am,
a2ee7529 5620 sysconfig/interfaces/data/chat-ppp0.leased1,
4ca37ca2
JR
5621 sysconfig/interfaces/down.d/all/thetouch, sysconfig/Makefile.am,
5622 sysconfig/interfaces/data/.cvsignore,
5623 sysconfig/network-scripts/ifup-neigh, doc/ppp-watch.8,
5624 rc.d/rc.local, sysconfig/network-scripts/ifdown-irda, AUTHORS,
5625 sysconfig/interfaces/ifcfg-description,
5626 isapnp/isapnp-kernel.conf, doc/polski.dsl,
5627 sysconfig/interfaces/down.d/ppp/Makefile.am,
5628 ppp/ip-up.d/.cvsignore, po/.cvsignore, run-parts, rc.d/rc.init,
5629 sysconfig/interfaces/down.d/.cvsignore,
5630 sysconfig/network-scripts/.cvsignore, doc/ipcalc.1,
5631 sysconfig/network-scripts/ifup-sl, configure.ac,
5632 sysconfig/interfaces/ifcfg-eth0, sysconfig/interfaces/.cvsignore,
5633 sysconfig/network-scripts/ifup-aliases, sysctl.conf,
5634 sysconfig/network-scripts/ifdown-vlan, ppp/ip-down.d/Makefile.am,
5635 COPYING, sysconfig/interfaces/up.d/.cvsignore, src/minilogd.c,
5636 doc/doexec.1, ppp/auth-up,
5637 sysconfig/interfaces/tnlcfg-description,
5638 sysconfig/network-scripts/ifup, sysconfig/interfaces/ifcfg-br0,
5639 rc.d/init.d/template.init, ppp/ip-up, src/netreport.c,
5640 sysconfig/network-scripts/Makefile.am, rc.d/rc.sysinit,
5641 src/testd.c, src/shvar.c,
5642 sysconfig/interfaces/data/chat-ppp0.gprs-plusgsm,
5643 doc/net-scripts.txt, service, src/shvar.h,
5644 sysconfig/interfaces/down.d/ip/Makefile.am, doc/usleep.1,
a2ee7529 5645 sysconfig/interfaces/down.d/all/Makefile.am,
4ca37ca2
JR
5646 sysconfig/network-scripts/ifup-routes, ppp/ipx-down,
5647 rc.d/rc.shutdown, sysconfig/interfaces/up.d/ppp/Makefile.am,
5648 sysconfig/network-scripts/ifup-plusb, sysconfig/static-routes,
5649 sysconfig/interfaces/ifcfg-ppp0.callback,
5650 sysconfig/interfaces/up.d/ip/.cvsignore,
a2ee7529 5651 sysconfig/network-scripts/tnlup, ppp/ip-up.d/Makefile.am,
a2ee7529 5652 rc-scripts.spec.in, sysconfig/interfaces/up.d/all/thetouch,
4ca37ca2
JR
5653 rc.d/init.d/.cvsignore, sysconfig/network-scripts/ifup-iucv,
5654 sysconfig/interfaces/down.d/tnl/.cvsignore, rc.d/rc,
5655 sysconfig/interfaces/down.d/ppp/.cvsignore, src/testdinit,
5656 src/getkey.c, src/usernetctl.c, rc.d/rc.modules,
5657 sysconfig/interfaces/data/chat-ppp0.tpsa,
5658 sysconfig/interfaces/ifcfg-irda0,
5659 sysconfig/hwprofiles/.cvsignore,
5660 sysconfig/interfaces/down.d/all/.cvsignore,
5661 sysconfig/interfaces/down.d/ip/.cvsignore, INSTALL,
5662 sysconfig/interfaces/tnlcfg-icm, src/ppp-watch.c,
5663 src/consoletype.c, ppp/ip-down.d/logger, doc/Makefile.am,
b30f8040
AM
5664 sysconfig/interfaces/up.d/all/Makefile.am, setsysfont,
5665 sysconfig/network-scripts/functions.network,
5666 sysconfig/network-scripts/ifup-plip, ppp/ip-up.d/logger, README,
5667 rc.d/Makefile.am, rc.d/init.d/timezone, isapnp/.cvsignore,
5668 doc/consoletype.1, sysconfig/network-scripts/ifup-post,
5669 Makefile.am, sysconfig/hwprof,
5670 sysconfig/interfaces/up.d/ipx/.cvsignore,
5671 ppp/ip-down.d/.cvsignore, adjtime, src/initlog.c,
5672 doc/sysconfig.docb, src/initlog.conf, src/loglevel.c,
5673 DEVELOPMENT, sysconfig/network-scripts/ifup-ppp, src/initlog.h,
5674 rc.d/init.d/Makefile.am, doc/make-html, inittab,
5675 rc.d/init.d/random, rc.d/init.d/single, sysconfig/timezone,
5676 rc.d/init.d/killall, src/Makefile.am,
5677 sysconfig/network-scripts/ifup-irda, isapnp/Makefile.am,
5678 sysconfig/network-scripts/ifdown-ppp, po/pl.po,
5679 sysconfig/interfaces/up.d/Makefile.am,
5680 sysconfig/network-scripts/tnldown, modules, ppp/Makefile.am,
5681 doc/initlog.1, sysconfig/network-scripts/ifdown-br, NEWS,
5682 .cvsignore, doc/sysvinitfiles, sysconfig/.cvsignore, ppp/ipx-up,
5683 rc.d/init.d/allowlogin, sysconfig/network-scripts/ifup-vlan,
5684 sysconfig/interfaces/data/chat-ppp0.callback, doc/sysconfig.txt,
5685 po/Makefile.am, sysconfig/interfaces/down.d/ppp/logger,
5686 hwprofile, sysconfig/clock, sysconfig/interfaces/ifcfg-sl0,
5687 doc/usernetctl.8, src/ipcalc.c, doc/rc-scripts.docb,
5688 sysconfig/ip-rules, sysconfig/network-scripts/ifdown,
5689 sysconfig/interfaces/up.d/ppp/logger, sysconfig/static-arp,
5690 ppp/ip-down, sysconfig/interfaces/up.d/ip/Makefile.am,
5691 src/doexec.c, sysconfig/network-scripts/ifup-ipx,
5692 rc.d/init.d/functions, sysconfig/network-scripts/ifdown-sl,
5693 sysconfig/interfaces/ifcfg-ppp0.gprs-plusgsm,
5694 sysconfig/interfaces/down.d/tnl/Makefile.am, doc/netreport.1,
5695 sysconfig/system, sysconfig/interfaces/down.d/ipx/Makefile.am,
5696 lang.sh, sysconfig/network,
5697 sysconfig/interfaces/ifcfg-ppp0.leased1,
5698 sysconfig/interfaces/Makefile.am,
5699 sysconfig/interfaces/ifcfg-ppp0.leased2, rc.d/.cvsignore,
5700 src/.cvsignore, rc.d/init.d/network, src/usleep.c: - propset Id
ac244935
AM
5701 everywhere
5702
03e40ed6 57032003-09-14 10:48 +0000 [r1328] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ac244935
AM
5704
5705 * makepot.pl: - propset test
5706
03e40ed6 57072003-09-09 22:45 +0000 [r1128] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
ac244935
AM
5708
5709 * rc.d/init.d/functions: - also be able to find 2.6 modules (.ko)
5710
03e40ed6 57112003-09-09 22:05 +0000 [r1126] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 5712
ac244935 5713 * rc.d/init.d/functions: - fixed is_module - modules may be gzipped
6d250d3d 5714
03e40ed6 57152003-09-09 16:14 +0000 [r1124] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5716
ac244935 5717 * rc.d/rc.sysinit: - add sysfs to mtab
6d250d3d 5718
03e40ed6 57192003-09-08 09:29 +0000 [r1122] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5720
ac244935 5721 * rc.d/rc.sysinit: - mount sysfs in the same way as proc is
6d250d3d 5722
03e40ed6 57232003-09-05 14:53 +0000 [r1120] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5724
ac244935
AM
5725 * rc.d/init.d/functions: - if there is no process then it already
5726 died
6d250d3d 5727
cb0c01df 57282003-08-19 14:07 +0000 [r1118] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5729
ac244935 5730 * dumb.sh: - for nessusd.init
6d250d3d 5731
03e40ed6 57322003-08-10 20:54 +0000 [r1116] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5733
ac244935 5734 * rc.d/rc.sysinit: - simplified mdadm support
6d250d3d 5735
03e40ed6 57362003-08-10 20:49 +0000 [r1115] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5737
ac244935 5738 * rc.d/init.d/functions: - functions for kernel version checking
6d250d3d 5739
03e40ed6 57402003-08-07 10:20 +0000 [r1113] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5741
ac244935
AM
5742 * rc.d/rc.sysinit: - add support for mdadm when trying to start
5743 RAID devices
6d250d3d 5744
cb0c01df 57452003-08-06 19:23 +0000 [r1111] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5746
ac244935 5747 * dumb.sh: - from athcool.init
6d250d3d 5748
03e40ed6 57492003-07-28 12:16 +0000 [r1109] Paweł Gołaszewski <blues/at/pld-linux.org>
6d250d3d 5750
ac244935 5751 * sysctl.conf: - added gc_thresh entries
6d250d3d 5752
03e40ed6 57532003-07-28 12:11 +0000 [r1108] Paweł Gołaszewski <blues/at/pld-linux.org>
6d250d3d 5754
ac244935 5755 * sysconfig/network: - oops - these were my experiments...
6d250d3d 5756
03e40ed6 57572003-07-28 12:02 +0000 [r1106] Paweł Gołaszewski <blues/at/pld-linux.org>
6d250d3d 5758
ac244935 5759 * sysconfig/network: - typo
6d250d3d 5760
03e40ed6 57612003-07-28 11:33 +0000 [r1105] Paweł Gołaszewski <blues/at/pld-linux.org>
6d250d3d 5762
ac244935 5763 * sysconfig/network: - GATEWAY setup is back - with comment
6d250d3d 5764
03e40ed6 57652003-07-11 23:08 +0000 [r1103] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5766
ac244935 5767 * rc.d/init.d/network: - added nameif support
6d250d3d 5768
03e40ed6 57692003-07-10 18:39 +0000 [r1100-1101] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 5770
ac244935
AM
5771 * sysconfig/interfaces/ifcfg-description: - description for
5772 VLAN_REORDER_HDR
6d250d3d 5773
ac244935
AM
5774 * sysconfig/network-scripts/ifup-vlan: - seems like API changed,
5775 allow REORDER_HDR on VLANs
6d250d3d 5776
03e40ed6 57772003-07-10 12:30 +0000 [r1098] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 5778
ac244935
AM
5779 * rc.d/init.d/network: - we should stop bridges first if we are
5780 staring them last
6d250d3d 5781
03e40ed6 57822003-07-10 12:26 +0000 [r1097] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 5783
ac244935
AM
5784 * rc.d/init.d/network: - special case bridge interfaces (br*), they
5785 *must* be handled last as we are not able to know what will be
5786 bridged
6d250d3d 5787
03e40ed6 57882003-07-05 11:59 +0000 [r1095] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5789
ac244935 5790 * rc.d/rc.sysinit: - mount devpts, too
6d250d3d 5791
03e40ed6 57922003-06-30 15:36 +0000 [r1094] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5793
ac244935 5794 * rc.d/rc.sysinit: - keep old dmesg, too
6d250d3d 5795
cb0c01df 57962003-06-24 10:34 +0000 [r1092-1093] Jakub Bogusz <qboosh/at/pld-linux.org>
6d250d3d 5797
ac244935
AM
5798 * sysconfig/interfaces/ifcfg-ppp0.gprs-plusgsm: - added note about
5799 bluez
6d250d3d 5800
b30f8040
AM
5801 * sysconfig/interfaces/Makefile.am,
5802 sysconfig/interfaces/data/Makefile.am: - added
5803 *-ppp0.gprs-plusgsm
6d250d3d 5804
cb0c01df 58052003-06-24 10:26 +0000 [r1091] Jakub Bogusz <qboosh/at/pld-linux.org>
6d250d3d 5806
ac244935
AM
5807 * sysconfig/interfaces/ifcfg-ppp0.gprs-plusgsm (added),
5808 sysconfig/interfaces/data/chat-ppp0.gprs-plusgsm (added): - ppp
5809 examples for GPRS/PlusGSM taken from BTS#694
6d250d3d 5810
03e40ed6 58112003-06-20 15:32 +0000 [r1090] Paweł Gołaszewski <blues/at/pld-linux.org>
6d250d3d 5812
ac244935 5813 * rc.d/rc.sysinit: - stupid missing thing
6d250d3d 5814
03e40ed6 58152003-06-19 15:57 +0000 [r1089] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5816
ac244935
AM
5817 * sysconfig/static-routes, sysconfig/network,
5818 sysconfig/network-scripts/functions.network: - use static-routes
5819 for ip rule configuration; drop GATRWAY from network
5820 configuration
6d250d3d 5821
cb0c01df 58222003-06-17 14:02 +0000 [r1088] Jakub Bogusz <qboosh/at/pld-linux.org>
6d250d3d 5823
ac244935
AM
5824 * rc.d/init.d/timezone: - posix zoneinfo files are in top level,
5825 not "posix" subdir now
6d250d3d 5826
03e40ed6 58272003-06-16 21:28 +0000 [r1087] Witek Kręcicki <adasi/at/pld-linux.org>
6d250d3d 5828
ac244935 5829 * rc.d/rc.sysinit: - future is now...
6d250d3d 5830
03e40ed6 58312003-06-16 20:20 +0000 [r1086] Paweł Gołaszewski <blues/at/pld-linux.org>
6d250d3d 5832
ac244935
AM
5833 * rc-scripts.spec.in, rc.d/rc.sysinit: - early mounting of sysfs
5834 under kernel 2.5
6d250d3d 5835
03e40ed6 58362003-06-16 18:05 +0000 [r1085] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5837
ac244935 5838 * rc.d/rc.sysinit: - usbdevfs is usbfs in 2.5
6d250d3d 5839
03e40ed6 58402003-06-06 09:02 +0000 [r1083] Paweł Gołaszewski <blues/at/pld-linux.org>
6d250d3d 5841
ac244935
AM
5842 * sysconfig/interfaces/ifcfg-description: - fixed typo in
5843 description
6d250d3d 5844
03e40ed6 58452003-05-31 11:59 +0000 [r1082] Arkadiusz Miśkiewicz <arekm/at/pld-linux.org>
6d250d3d 5846
ac244935 5847 * inittab: - calling update is obsolete starting from 2.2.9 kernel
6d250d3d 5848
cb0c01df 58492003-05-22 14:11 +0000 [r1080] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5850
ac244935 5851 * dumb.sh: - updated
6d250d3d 5852
cb0c01df 58532003-05-15 22:39 +0000 [r1078-1079] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5854
ac244935
AM
5855 * rc.d/init.d/functions: - formatting - fixed second argument of
5856 "status"
6d250d3d 5857
ac244935 5858 * dumb.sh: - updated
6d250d3d 5859
cb0c01df 58602003-05-15 21:37 +0000 [r1077] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5861
a2ee7529 5862 * rc.d/init.d/functions, rc.d/init.d/template.init: - LSB
ac244935 5863 conformance changes
6d250d3d 5864
cb0c01df 58652003-05-11 21:09 +0000 [r1076] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5866
ac244935 5867 * dumb.sh: - updated
6d250d3d 5868
cb0c01df 58692003-05-11 15:26 +0000 [r1075] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5870
ac244935 5871 * dumb.sh: removed duplicates; %s fixes
6d250d3d 5872
cb0c01df 58732003-05-11 15:13 +0000 [r1074] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5874
ac244935 5875 * dumb.sh: updated
6d250d3d 5876
cb0c01df 58772003-05-11 12:42 +0000 [r1073] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5878
ac244935 5879 * dumb.sh: updated
6d250d3d 5880
cb0c01df 58812003-05-09 21:08 +0000 [r1072] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5882
ac244935 5883 * dumb.sh: - updated
6d250d3d 5884
cb0c01df 58852003-05-08 17:18 +0000 [r1071] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5886
ac244935 5887 * rc.d/init.d/template.init: - reversed bogus change
6d250d3d 5888
cb0c01df 58892003-05-07 23:35 +0000 [r1070] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5890
ac244935 5891 * dumb.sh: - updated
6d250d3d 5892
cb0c01df 58932003-05-06 21:54 +0000 [r1069] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5894
ac244935 5895 * dumb.sh: updated
6d250d3d 5896
cb0c01df 58972003-05-05 00:07 +0000 [r1068] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5898
b30f8040 5899 * dumb.sh, rc.d/init.d/template.init: updated
6d250d3d 5900
cb0c01df 59012003-05-04 19:48 +0000 [r1067] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5902
ac244935 5903 * dumb.sh: updated
6d250d3d 5904
cb0c01df 59052003-05-03 23:16 +0000 [r1066] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5906
ac244935 5907 * dumb.sh: updated
6d250d3d 5908
cb0c01df 59092003-05-02 23:41 +0000 [r1064-1065] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5910
ac244935 5911 * dumb.sh (added): - dump script with various messages
6d250d3d 5912
ac244935 5913 * rc-scripts.spec.in: - fix improper use of %%{_sysconfigdir}
6d250d3d 5914
d23f8bf7 59152003-05-02 20:27 +0000 [r1063] kloczek <kloczek/at/pld-linux.org>
6d250d3d 5916
ac244935 5917 * po/de.po: - corrected charset s/iso8850-1/iso-8850-1/.
6d250d3d 5918
03e40ed6 59192003-04-17 18:21 +0000 [r1062] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 5920
ac244935 5921 * rc.d/rc.sysinit: - added support for device-mapper
6d250d3d 5922
03e40ed6 59232003-04-10 07:37 +0000 [r1061] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 5924
ac244935
AM
5925 * rc.d/rc.sysinit: - use new evms_activate utility; drop support
5926 for evms < 2.0.0
6d250d3d 5927
03e40ed6 59282003-04-07 19:59 +0000 [r1060] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 5929
ac244935 5930 * rc.d/rc.sysinit: - split sysctl call into two pieces
6d250d3d 5931
03e40ed6 59322003-04-07 19:54 +0000 [r1059] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 5933
ac244935 5934 * sysconfig/network-scripts/ifup: - fix Andrzej's proxy arp support
6d250d3d 5935
03e40ed6 59362003-03-06 13:31 +0000 [r1058] Wojciech Cięciwa <cieciwa/at/pld-linux.org>
6d250d3d 5937
ac244935 5938 * sysctl.conf: - corecting URL of grsecurity.
6d250d3d 5939
03e40ed6 59402003-01-25 00:37 +0000 [r1057] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 5941
ac244935
AM
5942 * rc.d/rc.shutdown: - more generic ups support via
5943 /sbin/poweroff-ups
6d250d3d 5944
cb0c01df 59452003-01-15 22:34 +0000 [r1056] Andrzej M. Krzysztofowicz <ankry/at/pld-linux.org>
6d250d3d 5946
ac244935
AM
5947 * TODO, sysconfig/network-scripts/ifup,
5948 sysconfig/interfaces/ifcfg-description: - support for proxy ARP
5949 per interface - fix sysctl for IPV6_DISABLE_AUTOCONF - typos,
5950 formatting - MTU for ethernet already supported [ remove from
5951 TODO ]
6d250d3d 5952
d23f8bf7 59532003-01-07 14:45 +0000 [r1055] kloczek <kloczek/at/pld-linux.org>
6d250d3d 5954
ac244935
AM
5955 * rc.d/init.d/functions: s/broke/break/ (fixed
5956 http://bugs.pld.org.pl/?bug=520).
6d250d3d 5957
03e40ed6 59582002-12-30 23:39 +0000 [r1054] Paweł Wilk <siefca/at/pld-linux.org>
6d250d3d 5959
ac244935
AM
5960 * run-parts: - run-parts: current directory now in an environment
5961 variable - run-parts: args shifted - run-parts: cosmetics
6d250d3d 5962
03e40ed6 59632002-12-17 14:01 +0000 [r1053] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 5964
b30f8040
AM
5965 * rc.d/init.d/network, po/pl.po, doc/sysconfig.txt,
5966 doc/sysconfig.docb, sysconfig/network-scripts/functions.network:
5967 - removed references to IPV*_FORWARDING
6d250d3d 5968
03e40ed6 59692002-12-17 13:54 +0000 [r1052] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 5970
ac244935 5971 * sysconfig/network: - better solution to IPV*_FORWARDING
6d250d3d 5972
03e40ed6 59732002-12-17 13:43 +0000 [r1051] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 5974
ac244935
AM
5975 * sysconfig/network: - removed IPV*_FORWARDING - use
5976 /etc/sysctl.conf to set this
6d250d3d 5977
d23f8bf7 59782002-12-01 23:59 +0000 [r1050] alchemyx <alchemyx/at/pld-linux.org>
6d250d3d 5979
ac244935 5980 * rc.d/rc.sysinit: - typo
6d250d3d 5981
d23f8bf7 59822002-12-01 21:31 +0000 [r1049] alchemyx <alchemyx/at/pld-linux.org>
6d250d3d 5983
ac244935
AM
5984 * rc.d/rc.sysinit: - system will reboot if is instructed by fsck to
5985 do so
6d250d3d 5986
03e40ed6 59872002-11-27 23:41 +0000 [r1048] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 5988
ac244935 5989 * rc.d/rc.shutdown: - support for UPS powerdown before halt
6d250d3d 5990
d23f8bf7 59912002-11-12 15:54 +0000 [r1047] kloczek <kloczek/at/pld-linux.org>
6d250d3d 5992
ac244935
AM
5993 * sysconfig/interfaces/ifcfg-description: typo in comment
5994 (s/dhlc/dhcp/).
6d250d3d 5995
d23f8bf7 59962002-11-08 23:45 +0000 [r1046] alchemyx <alchemyx/at/pld-linux.org>
6d250d3d 5997
ac244935
AM
5998 * sysconfig/static-nat,
5999 sysconfig/network-scripts/functions.network: - updated static-nat
6000 (reversed parameters) so it works now as intended (as described
6001 in docs)
6d250d3d 6002
03e40ed6 60032002-10-10 15:07 +0000 [r1045] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6004
b30f8040 6005 * rc.d/rc.sysinit, sysconfig/system: - better support fo EVMS
6d250d3d 6006
cb0c01df 60072002-09-28 23:05 +0000 [r1044] Arkadiusz Patyk <areq/at/pld-linux.org>
6d250d3d 6008
ac244935 6009 * rc.d/rc.shutdown: - don't force umount iso9660 ramfs tmpfs
6d250d3d 6010
cb0c01df 60112002-09-14 19:54 +0000 [r1043] Tomasz Orzechowski <orzech/at/pld-linux.org>
6d250d3d 6012
ac244935
AM
6013 * sysconfig/system, rc.d/rc, rc.d/rc.sysinit: - LOAD_SOUND is
6014 obsolete
6d250d3d 6015
03e40ed6 60162002-08-24 17:04 +0000 [r1042] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6017
ac244935
AM
6018 * sysconfig/network-scripts/ifup-ppp: - fix wvdial support; chat
6019 support still broken
6d250d3d 6020
03e40ed6 60212002-08-24 16:05 +0000 [r1041] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6022
b30f8040
AM
6023 * sysconfig/interfaces/ifcfg-description, README,
6024 sysconfig/network-scripts/functions.network,
6025 sysconfig/network-scripts/ifup-ppp: - added userspace and
6026 kernelspace PPPoE support - pass unit option to pppd (so now
ac244935
AM
6027 ifcfg-ppp5 with DEVICE=ppp5 will _always_ create ppp5 interface
6028 when it's not used yet)
6d250d3d 6029
cb0c01df 60302002-08-23 22:13 +0000 [r1040] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6031
ac244935
AM
6032 * rc.d/init.d/network: - check ONBOOT by evaluating ifcfg-* file,
6033 not by egrep
6d250d3d 6034
03e40ed6 60352002-08-22 13:21 +0000 [r1039] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6036
ac244935
AM
6037 * sysconfig/interfaces/ifcfg-description,
6038 sysconfig/network-scripts/ifup-post,
6039 sysconfig/network-scripts/ifdown-post: - support for limiting
6040 downstream and upstream traffic on whole interface (cbq, htb,
6041 tbf)
6d250d3d 6042
03e40ed6 60432002-08-21 21:30 +0000 [r1038] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6044
ac244935
AM
6045 * sysconfig/network-scripts/functions.network: - fix support for
6046 src addresses option
6d250d3d 6047
cb0c01df 60482002-08-13 20:31 +0000 [r1037] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6049
ac244935
AM
6050 * rc.d/rc.sysinit: - /proc/bus/usb should be described in fstab -
6051 mounting manually bogus device "usbdevfs" causes mount -a to fail
6052 when fstab contains something like "none /proc/bus/usb usbdevfs
6053 ..."
6d250d3d 6054
03e40ed6 60552002-08-11 17:05 +0000 [r1036] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6056
b30f8040
AM
6057 * sysconfig/network-scripts/ifup-routes,
6058 sysconfig/network-scripts/ifup-post,
537d7646 6059 sysconfig/network-scripts/Makefile.am, sysconfig/static-arp
4ca37ca2 6060 (added), sysconfig/Makefile.am,
b30f8040
AM
6061 sysconfig/network-scripts/ifup-neigh (added): - static arp per
6062 interface support - any device support is back
6d250d3d 6063
cb0c01df 60642002-08-09 06:30 +0000 [r1035] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6065
ac244935
AM
6066 * rc.d/rc.sysinit: - fix for checking encrypted filesystems - if
6067 all have "noauto" in options, don't try to mount or fsck anything
6d250d3d 6068
03e40ed6 60692002-07-14 21:11 +0000 [r1034] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6070
ac244935
AM
6071 * service, rc.d/init.d/functions: - some code from RH (nicer than
6072 old code)
6d250d3d 6073
03e40ed6 60742002-07-13 23:04 +0000 [r1033] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6075
ac244935 6076 * sysconfig/network-scripts/ifup: - fix WLAN encryption setting
6d250d3d 6077
03e40ed6 60782002-07-13 16:25 +0000 [r1032] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6079
b30f8040
AM
6080 * rc.d/rc.modules, sysconfig/interfaces/ifcfg-irda0 (added),
6081 sysconfig/network-scripts/ifup-irda (added),
a2ee7529
JR
6082 sysconfig/network-scripts/ifdown-ppp,
6083 sysconfig/network-scripts/ifdown-vlan (added),
6084 sysconfig/network-scripts/ifup-plusb (added),
6085 sysconfig/network-scripts/functions.network,
6086 sysconfig/network-scripts/ifup-ppp,
4ca37ca2
JR
6087 sysconfig/network-scripts/ifup-vlan (added),
6088 sysconfig/network-scripts/ifdown-irda (added),
b30f8040
AM
6089 sysconfig/network-scripts/ifup,
6090 sysconfig/interfaces/ifcfg-description,
6091 sysconfig/interfaces/ifcfg-irlan0 (added),
6092 sysconfig/network-scripts/ifup-iucv (added), rc.d/rc.sysinit,
6093 service: - more TOTALNEW merge (ppp, irda, other vlan, wireless).
6094 ALPHA
6d250d3d 6095
cb0c01df 60962002-07-06 12:22 +0000 [r1031] Olgierd Pieczul <wojrus/at/pld-linux.org>
6d250d3d 6097
ac244935
AM
6098 * rc.d/rc.sysinit: - fixed: removing directories in /var/run/app/ -
6099 fixed: unneeded lines (deleting not-existing files) removed
6d250d3d 6100
03e40ed6 61012002-06-19 18:13 +0000 [r1030] Rafał Kleger-Rudomin <klakier/at/pld-linux.org>
6d250d3d 6102
ac244935 6103 * doc/sysconfig.txt: - forgotten
6d250d3d 6104
03e40ed6 61052002-06-19 18:04 +0000 [r1029] Rafał Kleger-Rudomin <klakier/at/pld-linux.org>
6d250d3d 6106
ac244935 6107 * sysconfig/network: - hopefully fixed explanation about NISDOMAIN
6d250d3d 6108
03e40ed6 61092002-06-18 22:06 +0000 [r1028] Rafał Kleger-Rudomin <klakier/at/pld-linux.org>
6d250d3d 6110
4ca37ca2 6111 * doc/sysconfig.txt, sysconfig/network: - more clear explanation of
ac244935 6112 HOSTNAME and NISDOMAIN
6d250d3d 6113
cb0c01df 61142002-06-13 13:06 +0000 [r1027] Robert Grabowski <grabba/at/pld-linux.org>
6d250d3d 6115
ac244935
AM
6116 * rc.d/init.d/functions: daemon function: dont't use su when user
6117 is root
6d250d3d 6118
cb0c01df 61192002-05-21 12:23 +0000 [r1026] Olgierd Pieczul <wojrus/at/pld-linux.org>
6d250d3d 6120
ac244935 6121 * sysconfig/ip-rules: - typo
6d250d3d 6122
03e40ed6 61232002-05-11 21:51 +0000 [r1025] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6124
ac244935
AM
6125 * rc.d/rc.sysinit: - process functions a bit earlier - don't mount
6126 proc twice
6d250d3d 6127
03e40ed6 61282002-05-11 10:26 +0000 [r1024] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6129
ac244935 6130 * rc-scripts.spec.in: - updated spec file
6d250d3d 6131
03e40ed6 61322002-05-11 09:50 +0000 [r1023] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6133
b30f8040 6134 * sysconfig/network-scripts/ifdown-br,
ac244935 6135 rc.d/init.d/functions.network (removed),
ac244935 6136 sysconfig/network-scripts/ifup-ppp,
bbbc0441 6137 sysconfig/network-scripts/functions.network (added),
ac244935 6138 sysconfig/network-scripts/ifup-ipx,
bbbc0441
AM
6139 sysconfig/network-scripts/tnlup, rc.d/init.d/Makefile.am,
6140 sysconfig/network-scripts/ifdown-sl,
4ca37ca2
JR
6141 sysconfig/network-scripts/ifup,
6142 sysconfig/network-scripts/ifup-br,
6143 sysconfig/network-scripts/ifup-plip, rc-scripts.spec.in,
6144 sysconfig/network-scripts/ifdown-post,
6145 sysconfig/network-scripts/Makefile.am,
6146 sysconfig/network-scripts/ifup-sl,
6147 sysconfig/network-scripts/ifup-routes, rc.d/init.d/network,
6148 sysconfig/network-scripts/ifup-aliases,
b30f8040
AM
6149 sysconfig/network-scripts/ifdown-ppp,
6150 sysconfig/network-scripts/tnldown,
6151 sysconfig/network-scripts/ifup-post,
6152 sysconfig/network-scripts/ifdown: - functions.network back in old
6153 place
6d250d3d 6154
03e40ed6 61552002-05-11 09:44 +0000 [r1022] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6156
ac244935 6157 * ppp/Makefile.am: - force symlink
6d250d3d 6158
03e40ed6 61592002-05-11 09:36 +0000 [r1020-1021] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6160
ac244935 6161 * autogen.sh: - configure.in -> configure.ac
6d250d3d 6162
a2ee7529 6163 * configure.ac, po/pl.po: - fix iso charset name - add de to
ac244935 6164 supported languages
6d250d3d 6165
03e40ed6 61662002-05-11 09:30 +0000 [r1019] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6167
a2ee7529 6168 * configure.ac (added), configure.in (removed): - renamed + updated
6d250d3d 6169
03e40ed6 61702002-05-11 08:48 +0000 [r1018] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6171
ac244935
AM
6172 * rc.d/init.d/functions.network: - removed via (it shouldn't be
6173 here)
6d250d3d 6174
03e40ed6 61752002-05-11 08:41 +0000 [r1017] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6176
ac244935
AM
6177 * rc.d/init.d/functions.network: - use onlink option when adding
6178 default routing (in case when gw isn't in our subnetwork) -
6179 TNLOPTS removed
6d250d3d 6180
d23f8bf7 61812002-04-21 12:22 +0000 [r1016] mkochano <mkochano/at/pld-linux.org>
6d250d3d 6182
ac244935
AM
6183 * sysconfig/interfaces/data/chat-ppp0.tpsa: - Update for current
6184 TPSA login screen.
6d250d3d 6185
03e40ed6 61862002-04-20 13:57 +0000 [r1015] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6187
ac244935
AM
6188 * rc.d/rc.sysinit: - don't mount usbdevfs again if it's already
6189 mounted (for example by modules.conf post-install directive).
cb0c01df 6190 Patch by Wojtek Kaniewski <wojtekka/at/bydg.pdi.net>.
6d250d3d 6191
03e40ed6 61922002-04-10 19:02 +0000 [r1014] Witek Kręcicki <adasi/at/pld-linux.org>
6d250d3d 6193
ac244935
AM
6194 * sysconfig/network-scripts/ifup-ppp: - added USER... dunno why it
6195 wasn't included, but it is in sample files and it should be added
6196 to pppd cmdline (user ${USER}). If it's wrong, roll it back
6d250d3d 6197
cb0c01df 61982002-04-09 11:10 +0000 [r1009-1013] Jacek Konieczny <jajcus/at/pld-linux.org>
6d250d3d 6199
b30f8040 6200 * sysconfig/network, rc.d/init.d/network, AUTHORS: - more LDAP
ac244935 6201 garbage removed
6d250d3d 6202
ac244935 6203 * po/pl.po: - LDAP strings removed
6d250d3d 6204
ac244935 6205 * rc.d/init.d/network: - "LDAP support" removed
6d250d3d 6206
ac244935
AM
6207 * rc.d/init.d/functions.network: - "LDAP support" removed. It was
6208 not supported anyway
6d250d3d 6209
ac244935
AM
6210 * rc.d/init.d/functions.network: - delete '}' left after some
6211 function removal
6d250d3d 6212
03e40ed6 62132002-03-29 17:18 +0000 [r1008] Rafał Kleger-Rudomin <klakier/at/pld-linux.org>
6d250d3d 6214
ac244935 6215 * rc.d/rc.sysinit: - added deleting lock files
6d250d3d 6216
cb0c01df 62172002-03-29 08:52 +0000 [r1007] Olgierd Pieczul <wojrus/at/pld-linux.org>
6d250d3d 6218
ac244935 6219 * rc-scripts.spec.in: - added removed by mistake 'timezone'
6d250d3d 6220
cb0c01df 62212002-03-29 08:46 +0000 [r1005-1006] Olgierd Pieczul <wojrus/at/pld-linux.org>
6d250d3d 6222
ac244935 6223 * sysconfig/ip-rules (added): - example config file
6d250d3d 6224
b30f8040
AM
6225 * rc.d/init.d/network, rc-scripts.spec.in,
6226 rc.d/init.d/functions.network, sysconfig/Makefile.am: - policy
6227 routing support
6d250d3d 6228
03e40ed6 62292002-03-24 03:59 +0000 [r1004] Paweł Gołaszewski <blues/at/pld-linux.org>
6d250d3d 6230
b30f8040 6231 * README, po/pl.po, autogen.sh, rc.d/rc.sysinit: - GNU/Linux is
ac244935 6232 gone.
6d250d3d 6233
03e40ed6 62342002-03-19 18:35 +0000 [r1003] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6235
b30f8040 6236 * rc.d/rc.sysinit, sysconfig/system: - user and kernelspace PNP
6d250d3d 6237
03e40ed6 62382002-03-19 18:19 +0000 [r1002] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6239
b30f8040
AM
6240 * sysconfig/hwprofiles (added), configure.in,
6241 isapnp/isapnp-kernel.conf (added), ppp/ip-up, isapnp (added),
6242 README, hwprofile (added), sysconfig/hwprofiles/Makefile.am
6243 (added), service (added), isapnp/Makefile.am (added),
6244 sysconfig/hwprofiles/.cvsignore (added), ppp/ipx-down (added),
6245 ppp/auth-down (added), isapnp/.cvsignore (added),
6246 ppp/Makefile.am, sysconfig/hwprof (added), Makefile.am,
6247 autogen.sh, ppp/ip-down, sysconfig/Makefile.am, ppp/ipx-up
6248 (added), ppp/auth-up (added): - started merging TOTALNEW
6d250d3d 6249
03e40ed6 62502002-03-19 17:46 +0000 [r1001] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6251
ac244935 6252 * rc.d/rc.sysinit: - support for EVMS volumes
6d250d3d 6253
03e40ed6 62542002-03-19 17:42 +0000 [r1000] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6255
ac244935
AM
6256 * sysconfig/system, rc.d/rc.sysinit: - if devfs is mounted and
6257 devfsd is available then start is unconditionally
6d250d3d 6258
03e40ed6 62592002-03-07 11:16 +0000 [r999] Paweł Gołaszewski <blues/at/pld-linux.org>
6d250d3d 6260
b30f8040 6261 * rc.d/init.d/network, sysconfig/network-scripts/ifup-ipx: - ipx
ac244935 6262 paths fixed (ipx is usable now...)
6d250d3d 6263
03e40ed6 62642002-03-07 09:48 +0000 [r998] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6265
ac244935 6266 * rc.d/rc.sysinit: - protect dmesg
6d250d3d 6267
cb0c01df 62682002-02-21 00:31 +0000 [r997] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6269
ac244935 6270 * po/pl.po: - more typos
6d250d3d 6271
cb0c01df 62722002-02-21 00:08 +0000 [r996] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6273
4ca37ca2 6274 * po/pl.po, rc.d/rc.sysinit: - typos
6d250d3d 6275
cb0c01df 62762002-02-20 23:43 +0000 [r995] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6277
4ca37ca2 6278 * sysconfig/network-scripts/ifup-sl, po/pl.po, rc.d/rc.sysinit: -
ac244935 6279 updated.
6d250d3d 6280
cb0c01df 62812002-02-18 13:24 +0000 [r994] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6282
4ca37ca2 6283 * doc/sysconfig.txt, doc/sysconfig.docb: - hostname != FQDN
6d250d3d 6284
03e40ed6 62852002-02-03 16:40 +0000 [r993] Witek Kręcicki <adasi/at/pld-linux.org>
6d250d3d 6286
ac244935 6287 * rc-scripts-sysconfig_masq.patch (removed): - moved away
6d250d3d 6288
03e40ed6 62892002-02-03 16:22 +0000 [r992] Witek Kręcicki <adasi/at/pld-linux.org>
6d250d3d 6290
ac244935
AM
6291 * rc-scripts-sysconfig_masq.patch (added): - sysconfig/masquerade
6292 support patch - not for use in official rc-scripts releases
6d250d3d 6293
03e40ed6 62942002-02-03 16:17 +0000 [r991] Witek Kręcicki <adasi/at/pld-linux.org>
6d250d3d 6295
b30f8040
AM
6296 * rc.d/init.d/functions.network, doc/sysconfig.docb,
6297 rc.d/init.d/network, doc/sysconfig.txt: - reverted last change
6d250d3d 6298
03e40ed6 62992002-02-02 17:30 +0000 [r990] Witek Kręcicki <adasi/at/pld-linux.org>
6d250d3d 6300
ac244935
AM
6301 * doc/sysconfig.txt, doc/sysconfig.docb: - added masquerade
6302 description
6d250d3d 6303
03e40ed6 63042002-02-02 17:13 +0000 [r989] Witek Kręcicki <adasi/at/pld-linux.org>
6d250d3d 6305
b30f8040 6306 * rc.d/init.d/network, rc.d/init.d/functions.network: - added
ac244935 6307 support for sysconfig/masquerade (NEW)
6d250d3d 6308
03e40ed6 63092002-01-27 02:14 +0000 [r986-988] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6310
b30f8040 6311 * src/usernetctl.c, src/ppp-watch.c: - rc-scripts-interfaces.patch:
ac244935
AM
6312 ifcfg-* are in /etc/sysconfig/interfaces, not
6313 /etc/sysconfig/network-scripts. And ifup and ifdown are not there
6314 but in /sbin. (qrczak)
6d250d3d 6315
ac244935 6316 * rc.d/rc.sysinit: - fixed syntax error
6d250d3d 6317
ac244935 6318 * rc.d/rc.shutdown: - don't try to umount devfs - it's pointelss
6d250d3d 6319
cb0c01df 63202002-01-22 23:46 +0000 [r984-985] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6321
ac244935 6322 * po/pl.po: - more fixes
6d250d3d 6323
b30f8040 6324 * TODO, DEVELOPMENT: - typos
6d250d3d 6325
cb0c01df 63262002-01-17 21:14 +0000 [r983] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6327
ac244935 6328 * inittab: - added KeyboardSignal entry.
6d250d3d 6329
cb0c01df 63302002-01-17 20:56 +0000 [r982] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6331
ac244935 6332 * po/pl.po: - changed personal forms to impersonal.
6d250d3d 6333
cb0c01df 63342002-01-17 20:47 +0000 [r981] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6335
03e40ed6 6336 * po/pl.po: - iso8859-1 got 'ó' - why don't use it? - other
ac244935 6337 cosmetics.
6d250d3d 6338
03e40ed6 63392002-01-08 17:42 +0000 [r980] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6340
ac244935
AM
6341 * rc.d/init.d/functions: - reverted is_no() behaviour to return
6342 true only on explicit "no"
6d250d3d 6343
03e40ed6 63442002-01-08 17:16 +0000 [r979] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6345
ac244935
AM
6346 * rc.d/rc.sysinit: - reorganized stuff so modprobe is not called
6347 before depmod
6d250d3d 6348
03e40ed6 63492002-01-08 16:48 +0000 [r978] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6350
ac244935 6351 * configure.in: - version 0.3.1
6d250d3d 6352
cb0c01df 63532001-12-24 12:22 +0000 [r977] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6354
ac244935
AM
6355 * rc.d/rc.sysinit: - if RUN_DEPMOD is set to "ifmissing", run
6356 simply "depmod -A"
6d250d3d 6357
cb0c01df 63582001-12-21 15:49 +0000 [r976] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6359
ac244935 6360 * rc.d/rc.sysinit: - fixed depmod problem (s/$mver/`uname -r`/)
6d250d3d 6361
d23f8bf7 63622001-12-14 12:56 +0000 [r975] mkochano <mkochano/at/pld-linux.org>
6d250d3d 6363
ac244935
AM
6364 * rc.d/init.d/functions: - Previous change caused "snow ball
6365 effect" --- some code relied upon that bug. - Added code which
6366 conditionaly encloses arguments in double quotes. This is
6367 required if more than one argument is passed to /bin/su -c.
6d250d3d 6368
d23f8bf7 63692001-12-13 20:35 +0000 [r974] mkochano <mkochano/at/pld-linux.org>
6d250d3d 6370
ac244935
AM
6371 * rc.d/init.d/functions: - Properly escape quotation marks inside
6372 quotation marks.
6d250d3d 6373
cb0c01df 63742001-12-03 17:50 +0000 [r973] Jacek Konieczny <jajcus/at/pld-linux.org>
6d250d3d 6375
ac244935
AM
6376 * sysconfig/network-scripts/ifup-post: - pass $CONFIG instead of
6377 $DEVICE to ifup-post, ifup-aliases (BTS id 20)
6d250d3d 6378
03e40ed6 63792001-11-30 15:11 +0000 [r972] Wojciech Cięciwa <cieciwa/at/pld-linux.org>
6d250d3d 6380
ac244935 6381 * sysctl.conf: - s/getrewted/grsecurity/
6d250d3d 6382
cb0c01df 63832001-11-23 14:33 +0000 [r971] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6384
ac244935
AM
6385 * rc.d/rc.sysinit, src/ppp-watch.c, src/shvar.c, src/shvar.h: -
6386 fixed typos.
6d250d3d 6387
cb0c01df 63882001-11-19 13:00 +0000 [r970] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6389
ac244935
AM
6390 * rc.d/init.d/functions.network: - don't try to detect devicetype
6391 if it's specified
6d250d3d 6392
03e40ed6 63932001-11-12 18:47 +0000 [r969] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6394
ac244935
AM
6395 * sysconfig/network-scripts/ifdown: - RESULT variable can be empty,
6396 check for it
6d250d3d 6397
03e40ed6 63982001-11-09 18:34 +0000 [r968] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6399
ac244935
AM
6400 * rc.d/init.d/network: - run modprobe at the start of
6401 network_init()
6d250d3d 6402
d23f8bf7 64032001-11-05 16:58 +0000 [r967] kloczek <kloczek/at/pld-linux.org>
6d250d3d 6404
ac244935
AM
6405 * sysconfig/network: - chenged comment s/Set domainname here/Set
6406 NIS domain name here/
6d250d3d 6407
cb0c01df 64082001-10-30 17:03 +0000 [r966] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6409
ac244935 6410 * rc.d/rc.sysinit: - last change: perms to 664.
6d250d3d 6411
cb0c01df 64122001-10-30 09:02 +0000 [r965] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6413
ac244935
AM
6414 * rc.d/rc.sysinit: - changed /var/run/utmp(x) and /var/log/wtmp(x)
6415 permissions to 660 in order to assure compatibility with SysVinit
6416 and utempter packages.
6d250d3d 6417
d23f8bf7 64182001-10-25 08:21 +0000 [r963] kloczek <kloczek/at/pld-linux.org>
6d250d3d 6419
ac244935
AM
6420 * sysconfig/network-scripts/ifup-routes: back ..
6421 s/DEVICE/REALDEVICE/
6d250d3d 6422
cb0c01df 64232001-10-24 22:27 +0000 [r962] Tomasz Orzechowski <orzech/at/pld-linux.org>
6d250d3d 6424
ac244935 6425 * rc.d/rc.sysinit: - small fixes
6d250d3d 6426
d23f8bf7 64272001-10-24 22:16 +0000 [r961] kloczek <kloczek/at/pld-linux.org>
6d250d3d 6428
ac244935 6429 * sysconfig/network-scripts/ifup-routes: s/REALDEVICE/DEVICE/
6d250d3d 6430
d23f8bf7 64312001-10-22 16:43 +0000 [r960] kloczek <kloczek/at/pld-linux.org>
6d250d3d 6432
ac244935 6433 * sysconfig/static-routes: added commented example.
6d250d3d 6434
d23f8bf7 64352001-10-14 21:33 +0000 [r958] mkochano <mkochano/at/pld-linux.org>
6d250d3d 6436
ac244935
AM
6437 * sysconfig/network-scripts/ifdown-br: - Do not try to delete
6438 bridge from itself.
6d250d3d 6439
03e40ed6 64402001-10-11 18:49 +0000 [r955] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6441
b30f8040
AM
6442 * rc.d/init.d/functions.network, sysconfig/network-scripts/ifup,
6443 sysconfig/network-scripts/ifup-br: - let kernel maintain if ARP
4ca37ca2 6444 should be turned on/off if not explicitly specified
6d250d3d 6445
03e40ed6 64462001-10-10 02:03 +0000 [r954] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6447
ac244935
AM
6448 * rc.d/init.d/functions.network: - fixed regexp in DEVICETYPE
6449 detection
6d250d3d 6450
03e40ed6 64512001-10-09 22:49 +0000 [r952-953] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6452
ac244935
AM
6453 * rc.d/init.d/functions.network: - HANDLING cannot be 'typeset'
6454 it's mot local (thanks qboosh)
6d250d3d 6455
ac244935 6456 * sysconfig/network-scripts/ifup-ppp: - typo (thanks qboosh)
6d250d3d 6457
03e40ed6 64582001-10-08 11:16 +0000 [r951] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6459
ac244935 6460 * rc.d/rc.sysinit: - fix for modular LVM
6d250d3d 6461
03e40ed6 64622001-10-05 18:21 +0000 [r950] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6463
ac244935 6464 * sysctl.conf: - comment out all IPv6 stuff by default
6d250d3d 6465
03e40ed6 64662001-10-05 18:17 +0000 [r949] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6467
ac244935 6468 * rc.d/init.d/functions: - proper (shell dependant) ulimit use
6d250d3d 6469
cb0c01df 64702001-10-04 07:41 +0000 [r948] Jakub Bogusz <qboosh/at/pld-linux.org>
6d250d3d 6471
ac244935 6472 * po/pl.po: - applied SOURCES/rc-scripts-typo.patch (by aflinta)
6d250d3d 6473
03e40ed6 64742001-10-01 17:10 +0000 [r946-947] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6475
ac244935 6476 * rc.d/init.d/functions.network: - allow ipv6 only interface
6d250d3d 6477
ac244935
AM
6478 * sysctl.conf: - added grsec stuff - really, really disable ipv6
6479 autoconf if one wants it
6d250d3d 6480
cb0c01df 64812001-09-19 08:09 +0000 [r944] Tomasz Orzechowski <orzech/at/pld-linux.org>
6d250d3d 6482
ac244935
AM
6483 * rc.d/init.d/functions: - fixed misleading message after killproc
6484 with specified signal type
6d250d3d 6485
d23f8bf7 64862001-08-16 22:52 +0000 [r943] kloczek <kloczek/at/pld-linux.org>
6d250d3d 6487
ac244935 6488 * po/pl.po: - charset=iso-8859-2.
6d250d3d 6489
cb0c01df 64902001-08-15 20:32 +0000 [r942] Roman Werpachowski <roman/at/pld-linux.org>
6d250d3d 6491
ac244935
AM
6492 * sysconfig/interfaces/ifcfg-ppp0.tpsa: - added AUTH=no ("noauth"
6493 is not a default option of pppd)
6d250d3d 6494
03e40ed6 64952001-07-30 10:29 +0000 [r941] Rafał Kleger-Rudomin <klakier/at/pld-linux.org>
6d250d3d 6496
ac244935 6497 * sysconfig/interfaces/ifcfg-eth0: - ONBOOT=no by default
6d250d3d 6498
d23f8bf7 64992001-07-23 11:01 +0000 [r940] mkochano <mkochano/at/pld-linux.org>
6d250d3d 6500
ac244935
AM
6501 * rc.d/init.d/functions: - Added ulimit -p unlimited before
6502 executing daemon. This will make sure daemons will have ability
6503 to fork no matter what limits are set. Limits for users are set
6504 via pam_limit. - Small optimalization (it's smaller now).
6d250d3d 6505
03e40ed6 65062001-07-22 17:28 +0000 [r936-939] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6507
ac244935 6508 * sysconfig/network-scripts/ifdown: - typos
6d250d3d 6509
ac244935 6510 * sysconfig/interfaces/Makefile.am: - added ifcfg-eth0
6d250d3d 6511
ac244935 6512 * rc.d/rc.sysinit: - devfs and RAID fixes
6d250d3d 6513
ac244935 6514 * rc.d/rc.modules: - don't autoclean modules loaded here
6d250d3d 6515
03e40ed6 65162001-07-21 19:26 +0000 [r935] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6517
ac244935
AM
6518 * rc.d/rc.sysinit: - more merging from TOTALNEW - mainly USB and
6519 lvm - fixed thinko with SET_SLINKS
6d250d3d 6520
03e40ed6 65212001-07-21 19:21 +0000 [r933-934] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6522
b30f8040 6523 * sysconfig/interfaces/tnlcfg-icm, sysconfig/interfaces/ifcfg-eth0:
ac244935 6524 - bring it up to date with the stuff ;>
6d250d3d 6525
ac244935
AM
6526 * sysconfig/network-scripts/ifup-aliases,
6527 sysconfig/interfaces/ifcfg-description: -
6528 s/BOOTMETHOD/BOOTPROTO/g
6d250d3d 6529
03e40ed6 65302001-07-19 20:55 +0000 [r932] Rafał Kleger-Rudomin <klakier/at/pld-linux.org>
6d250d3d 6531
ac244935 6532 * sysconfig/interfaces/ifcfg-eth0 (added): - example config
6d250d3d 6533
03e40ed6 65342001-07-17 18:21 +0000 [r931] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6535
b30f8040 6536 * sysconfig/network-scripts/ifup, rc.d/init.d/functions: - merge
ac244935
AM
6537 from TOTALNEW branch: - set MTU - don't use tput if we are not on
6538 a proper terminal
6d250d3d 6539
cb0c01df 65402001-07-13 17:47 +0000 [r930] Marcin Bohosiewicz <marcus/at/pld-linux.org>
6d250d3d 6541
b30f8040 6542 * rc.d/init.d/functions.network, sysconfig/network-scripts/ifdown:
ac244935
AM
6543 - added automatically vlan shutdown before shutdowing interface
6544 (eth)
6d250d3d 6545
cb0c01df 65462001-07-05 22:21 +0000 [r929] Marcin Bohosiewicz <marcus/at/pld-linux.org>
6d250d3d 6547
ac244935
AM
6548 * sysconfig/network-scripts/ifup: - VLAN must be set _before_
6549 initialisation it's IP parameters
6d250d3d 6550
03e40ed6 65512001-07-05 15:56 +0000 [r927] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6552
b30f8040
AM
6553 * sysconfig/network-scripts/ifdown, rc.d/init.d/functions.network,
6554 rc.d/init.d/network, sysconfig/network-scripts/ifup: - cleaned up
6555 accidental mess
6d250d3d 6556
03e40ed6 65572001-07-05 15:47 +0000 [r925-926] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6558
ac244935 6559 * rc.d/rc.sysinit: - don't mount devpts if devfs is already mounted
6d250d3d 6560
ac244935
AM
6561 * rc.d/rc.sysinit: - backed up some obviously wrong changes -
6562 PLEASE do NOT make functional changes along with cosmetic ones
6d250d3d 6563
cb0c01df 65642001-07-04 22:48 +0000 [r924] Tomasz Pala <gotar/at/pld-linux.org>
6d250d3d 6565
ac244935 6566 * rc.d/rc.sysinit: - removed /etc/HOSTNAME, - cosmetics.
6d250d3d 6567
cb0c01df 65682001-06-26 14:53 +0000 [r923] Marcin Bohosiewicz <marcus/at/pld-linux.org>
6d250d3d 6569
ac244935
AM
6570 * sysconfig/network-scripts/ifup: - added vconfig set_flag $DEVICE
6571 1 - for dhcpd
6d250d3d 6572
cb0c01df 65732001-06-25 20:54 +0000 [r922] Marcin Bohosiewicz <marcus/at/pld-linux.org>
6d250d3d 6574
ac244935
AM
6575 * rc.d/init.d/functions.network: - added vlan_setup function
6576 (setting proper 802.1q vlan's parameters)
6d250d3d 6577
cb0c01df 65782001-06-25 20:44 +0000 [r921] Marcin Bohosiewicz <marcus/at/pld-linux.org>
6d250d3d 6579
b30f8040
AM
6580 * rc.d/init.d/network, sysconfig/network-scripts/ifup,
6581 sysconfig/network-scripts/ifdown: - added support to 802.1Q
6582 VLANs. (ifcfg-eth0.<vlan>)
6d250d3d 6583
03e40ed6 65842001-05-25 20:14 +0000 [r912] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6585
ac244935
AM
6586 * sysconfig/network-scripts/ifup: - don't try to add ipv4 address
6587 if there is none
6d250d3d 6588
03e40ed6 65892001-05-25 17:53 +0000 [r911] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6590
ac244935 6591 * rc.d/init.d/functions.network: - typo
6d250d3d 6592
03e40ed6 65932001-05-25 17:48 +0000 [r910] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6594
ac244935 6595 * sysconfig/network-scripts/ifup: - compatibility fixes
6d250d3d 6596
03e40ed6 65972001-05-25 17:34 +0000 [r909] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6598
ac244935 6599 * rc.d/rc.sysinit: - cleanup
6d250d3d 6600
03e40ed6 66012001-05-25 14:33 +0000 [r906-908] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6602
ac244935
AM
6603 * rc.d/init.d/network: - removed shutting down "unconfigured"
6604 interfaces - that was dumb idea misiek
6d250d3d 6605
ac244935 6606 * sysconfig/network-scripts/ifup: - consistency check
6d250d3d 6607
ac244935 6608 * rc.d/init.d/functions.network: - consistency checks
6d250d3d 6609
03e40ed6 66102001-05-24 20:20 +0000 [r903-905] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6611
ac244935 6612 * rc.d/init.d/functions.network: - reverted last change - not neded
6d250d3d 6613
ac244935
AM
6614 * rc.d/init.d/network: - fixing shutting down unconfigured defices
6615 (atm stuff is not)
6d250d3d 6616
ac244935 6617 * rc.d/init.d/functions.network: - compat stuff
6d250d3d 6618
03e40ed6 66192001-05-24 20:14 +0000 [r902] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6620
ac244935 6621 * rc.d/init.d/functions.network: - more bad merge fixes
6d250d3d 6622
03e40ed6 66232001-05-24 20:00 +0000 [r901] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6624
ac244935 6625 * rc.d/init.d/functions.network: - fixed very stupid typo
6d250d3d 6626
03e40ed6 66272001-05-16 13:12 +0000 [r899-900] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6628
ac244935 6629 * po/pl.po: - cleaned up, updated and translated
6d250d3d 6630
4ca37ca2
JR
6631 * sysconfig/network-scripts/ifup-sl,
6632 sysconfig/network-scripts/ifup-ppp,
6633 sysconfig/network-scripts/ifup-ipx,
a2ee7529 6634 sysconfig/network-scripts/ifup-aliases,
537d7646 6635 sysconfig/network-scripts/ifup-routes,
ac244935
AM
6636 sysconfig/network-scripts/tnlup, sysconfig/network-scripts/ifup,
6637 sysconfig/network-scripts/tnldown,
4ca37ca2 6638 sysconfig/network-scripts/ifdown: - nls cleanups
6d250d3d 6639
03e40ed6 66402001-05-16 02:14 +0000 [r898] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6641
ac244935
AM
6642 * rc.d/rc.shutdown: - do not 'exec' umount, $() is just fine (yes,
6643 it's yet another ksh93 fix)
6d250d3d 6644
03e40ed6 66452001-05-16 01:54 +0000 [r897] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6646
ac244935
AM
6647 * rc.d/rc: - set TMPDIR=/dev/null before exec rc.shutdown
6648 (workaround for the freaky weird ksh93 which tries to keep pipes
6649 in /tmp, and no, disabling this in source of ksh93 is not an
6650 option)
6d250d3d 6651
03e40ed6 66522001-05-16 01:33 +0000 [r896] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6653
b30f8040 6654 * rc.d/rc, rc.d/rc.shutdown: - do not use locale in rc.shutdwon
ac244935
AM
6655 (there are shells that support them and you end up with
6656 unmountable /usr)
6d250d3d 6657
03e40ed6 66582001-05-15 17:28 +0000 [r895] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6659
ac244935 6660 * makepot.pl: - recognize "nls 'bla'"
6d250d3d 6661
03e40ed6 66622001-05-15 16:54 +0000 [r893-894] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6663
ac244935 6664 * rc.d/init.d/template.init: - typo
6d250d3d 6665
ac244935 6666 * rc.d/rc.sysinit: - typos
6d250d3d 6667
03e40ed6 66682001-05-15 16:44 +0000 [r892] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6669
ac244935 6670 * rc.d/init.d/functions.network: - typos
6d250d3d 6671
cb0c01df 66722001-05-15 16:43 +0000 [r891] Maciej 'Agaran' Pijanka <agaran/at/pld-linux.org>
6d250d3d 6673
ac244935 6674 * po/pl.po: added some translations..may somebody look at that?
6d250d3d 6675
03e40ed6 66762001-05-15 16:41 +0000 [r890] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6677
ac244935 6678 * rc.d/init.d/functions.network: - typo
6d250d3d 6679
03e40ed6 66802001-05-15 16:36 +0000 [r889] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6681
ac244935 6682 * rc.d/init.d/functions.network: - rarp run via run_cmd
6d250d3d 6683
03e40ed6 66842001-05-15 16:05 +0000 [r888] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6685
b30f8040
AM
6686 * sysconfig/network, README, src/Makefile.am, rc.d/rc.shutdown,
6687 sysctl.conf (added), sysconfig/network-scripts/ifdown, modules
6688 (added), COPYING, sysconfig/network-scripts/ifdown-br (added),
6689 makepot.pl, sysconfig/network-scripts/ifup-ppp,
4ca37ca2
JR
6690 sysconfig/interfaces/tnlcfg-description, src/process.c,
6691 sysconfig/interfaces/ifcfg-description,
6692 sysconfig/network-scripts/ifup-br (added), sysconfig/system,
6693 src/netreport.c, rc.d/rc.sysinit, src/shvar.c,
6694 sysconfig/network-scripts/ifdown-post, rc.d/init.d/single,
6695 sysconfig/timezone, doc/net-scripts.txt, sysconfig/clock,
6696 src/getkey.c, src/shvar.h, src/usernetctl.c,
6697 sysconfig/interfaces/Makefile.am,
6698 sysconfig/network-scripts/ifup-aliases, src/minilogd.c,
6699 rc.d/init.d/functions.network, src/initlog.c,
6700 sysconfig/Makefile.am, sysconfig/network-scripts/tnlup,
ac244935 6701 sysconfig/network-scripts/ifdown-sl,
bbbc0441 6702 sysconfig/network-scripts/ifup, sysconfig/interfaces/ifcfg-br0
4ca37ca2
JR
6703 (added), rc.d/rc, lang.csh,
6704 sysconfig/interfaces/ifcfg-ppp0.leased1, rc.d/Makefile.am,
6705 sysconfig/interfaces/ifcfg-ppp0.leased2,
6706 sysconfig/network-scripts/ifup-sl,
b30f8040
AM
6707 sysconfig/interfaces/ifcfg-sl0, rc.d/rc.modules (added),
6708 rc.d/init.d/network, TODO, sysconfig/network-scripts/tnldown,
6709 doc/initlog.1, sysconfig/interfaces/tnlcfg-icm, src/ppp-watch.c,
6710 sysconfig/network-scripts/ifup-ipx, rc-scripts.spec.in,
6711 doc/sysconfig.txt, sysconfig/network-scripts/ifup-plip,
6712 rc.d/init.d/template.init, sysconfig/network-scripts/Makefile.am,
6713 sysconfig/network-scripts/ifup-routes,
6714 sysconfig/network-scripts/ifdown-ppp,
6715 sysconfig/network-scripts/ifup-post, Makefile.am, autogen.sh,
6716 NEWS, setsysfont, DEVELOPMENT (added), rc.d/init.d/functions,
6717 AUTHORS, configure.in, inittab: - merge from TOTALNEW branch (see
6718 NEWS for more info)
6d250d3d 6719
d23f8bf7 67202001-05-13 18:39 +0000 [r886] kloczek <kloczek/at/pld-linux.org>
6d250d3d 6721
ac244935
AM
6722 * rc.d/init.d/network, rc.d/init.d/functions.network,
6723 sysconfig/network: added abilities for setup static RARP table by
6724 /etc/sysconfig/network::STATIC_RARP=yes (like static ARP table)
6725 based on /etc/ethers config file. Before setting up ARRP table is
6726 checked /proc/net/rarp and if file don't exist "modprobe rarp" is
6727 performed before.
6d250d3d 6728
03e40ed6 67292001-05-13 17:47 +0000 [r884] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6730
ac244935 6731 * rc.d/init.d/functions.network: ksh93 support/fixes by Jan
03e40ed6 6732 Rękorajski <baggins/at/pld.org.pl> (from stable series)
6d250d3d 6733
03e40ed6 67342001-05-13 17:10 +0000 [r883] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6735
b30f8040
AM
6736 * rc.d/rc, rc.d/init.d/functions.network, rc.d/rc.sysinit,
6737 rc.d/init.d/functions, rc.d/rc.shutdown, rc.d/init.d/timezone,
6738 sysconfig/network-scripts/ifup, configure.in: - version 0.2.11 -
6739 true ksh support/fixes: - fixed numerous instances of incorrect
4ca37ca2 6740 quoting ("" inside itself) - s/local/typeset/
6d250d3d 6741
cb0c01df 67422001-04-20 23:28 +0000 [r878] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6743
ac244935
AM
6744 * rc.d/rc.sysinit: - few more updates - util-linux 2.10s is
6745 _slightly_ fixed :>>
6d250d3d 6746
cb0c01df 67472001-04-20 21:15 +0000 [r877] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6748
ac244935 6749 * rc.d/rc.sysinit: - patch to allow fsck'ing crypted filesystems
6d250d3d 6750
03e40ed6 67512001-04-19 23:31 +0000 [r876] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6752
ac244935
AM
6753 * sysconfig/network-scripts/ifup: don't use quotation in
6754 DHCPOPTIONS
6d250d3d 6755
cb0c01df 67562001-03-22 21:50 +0000 [r873] Jakub Bogusz <qboosh/at/pld-linux.org>
6d250d3d 6757
ac244935
AM
6758 * sysconfig/network-scripts/ifup-ppp: - check if DATAFORCHAT is not
6759 null before exporting it
6d250d3d 6760
03e40ed6 67612001-03-05 17:35 +0000 [r867-868] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6762
ac244935 6763 * TODO: removed IPX tunnels; these don't need rc-scripts support
6d250d3d 6764
ac244935 6765 * rc-scripts.spec.in: sysconfig/clock was missing
6d250d3d 6766
d23f8bf7 67672001-03-03 11:28 +0000 [r861] laro <laro/at/pld-linux.org>
6d250d3d 6768
ac244935 6769 * rc.d/init.d/timezone: typing error fixed
6d250d3d 6770
03e40ed6 67712001-03-01 16:11 +0000 [r860] Michał Moskal <malekith/at/pld-linux.org>
6d250d3d 6772
ac244935
AM
6773 * rc.d/rc.sysinit: Fixed to pass --localtime option to hwclock.
6774 check hwclock manpage for details (it has changed, since i last
6775 read it)
6d250d3d 6776
03e40ed6 67772001-02-23 18:06 +0000 [r857] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6778
ac244935 6779 * sysconfig/network-scripts/ifup-plip: - bring link up at startup
6d250d3d 6780
cb0c01df 67812001-02-12 20:30 +0000 [r856] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6782
ac244935 6783 * po/pl.po: - uncommented "to enter interactive startup" transl.
6d250d3d 6784
cb0c01df 67852001-02-02 21:18 +0000 [r855] Roman Werpachowski <roman/at/pld-linux.org>
6d250d3d 6786
ac244935
AM
6787 * sysconfig/interfaces/data/chat-ppp0.tpsa: another small fix: atdt
6788 $PHONE -> atdt$PHONE
6d250d3d 6789
cb0c01df 67902001-02-02 18:22 +0000 [r854] Roman Werpachowski <roman/at/pld-linux.org>
6d250d3d 6791
ac244935 6792 * sysconfig/interfaces/data/chat-ppp0.tpsa: - small fix
6d250d3d 6793
03e40ed6 67942001-01-12 13:46 +0000 [r851] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6795
ac244935
AM
6796 * rc.d/init.d/network: - exclude nas* interfaces on boot, they need
6797 to be started by ATM utils
6d250d3d 6798
d23f8bf7 67992000-12-27 13:33 +0000 [r850] mkochano <mkochano/at/pld-linux.org>
6d250d3d 6800
ac244935
AM
6801 * sysconfig/system: - CONSOLE_LOGLEVEL is back. It is duplicated in
6802 klogd.sysconfig, but it has to be here. It is required by
6803 rc.sysinit in order to set logging level before processing
6804 init.d/* scripts.
6d250d3d 6805
d23f8bf7 68062000-12-19 22:33 +0000 [r849] mkochano <mkochano/at/pld-linux.org>
6d250d3d 6807
ac244935
AM
6808 * sysconfig/system: - Removed CONSOLELOG_LEVEL - has been moved to
6809 /etc/sysconfig/klogd.
6d250d3d 6810
cb0c01df 68112000-12-14 09:49 +0000 [r847] Jacek Konieczny <jajcus/at/pld-linux.org>
6d250d3d 6812
ac244935
AM
6813 * rc.d/init.d/functions: - status() improved so it can accept now
6814 two argumens: the subsys name and (optional) the daemon name.
6815 status() checks if daemon is running or the subsys is locked.
6816 This way subsys name can differ from daemon name it is running
6d250d3d 6817
cb0c01df 68182000-12-14 09:32 +0000 [r846] Jacek Konieczny <jajcus/at/pld-linux.org>
6d250d3d 6819
ac244935
AM
6820 * sysconfig/Makefile.am, sysconfig/clock (added): -
6821 /etc/sysconfig/clock added (for hardware clock options)
6d250d3d 6822
d23f8bf7 68232000-12-12 17:38 +0000 [r845] kloczek <kloczek/at/pld-linux.org>
6d250d3d 6824
ac244935 6825 * configure.in: - version 0.2.10.
6d250d3d 6826
d23f8bf7 68272000-12-09 12:02 +0000 [r842-843] mkochano <mkochano/at/pld-linux.org>
6d250d3d 6828
ac244935
AM
6829 * rc.d/init.d/functions: - Added note about some not obvious
6830 behavior of is_not().
6d250d3d 6831
ac244935 6832 * rc.d/rc.sysinit: - Fixed problem with $RUN_DEPMOD="ifmissing".
6d250d3d 6833
cb0c01df 68342000-12-04 12:06 +0000 [r841] Roman Werpachowski <roman/at/pld-linux.org>
6d250d3d 6835
ac244935 6836 * sysconfig/interfaces/ifcfg-ppp0.tpsa: Added PHONE to DATAFORCHAT
6d250d3d 6837
03e40ed6 68382000-11-17 14:47 +0000 [r839] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6839
ac244935 6840 * configure.in: - version 0.2.9
6d250d3d 6841
03e40ed6 68422000-11-17 12:11 +0000 [r838] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6843
ac244935
AM
6844 * sysconfig/interfaces/ifcfg-description: information about
6845 specifing prefix for so called ,,aliases''
6d250d3d 6846
d23f8bf7 68472000-11-17 06:25 +0000 [r837] kloczek <kloczek/at/pld-linux.org>
6d250d3d 6848
ac244935
AM
6849 * rc.d/init.d/network: - replace "$((" by "$( (" to w use bash as
6850 /bin/sh.
6d250d3d 6851
03e40ed6 68522000-11-16 16:04 +0000 [r831-836] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6853
ac244935 6854 * rc.d/init.d/timezone: - cleanup from TOTALNEW
6d250d3d 6855
ac244935
AM
6856 * rc.d/init.d/functions: - backport from TOTALNEW - cleaned up
6857 shell functions - fixed is_yes/is_no - added is_module, log_*
6858 functions
6d250d3d 6859
ac244935
AM
6860 * rc.d/rc.init: - set/unset more (all?) locale variables (backport
6861 from TOTALNEW)
6d250d3d 6862
b30f8040
AM
6863 * rc.d/init.d/template.init, rc.d/rc, rc.d/init.d/random,
6864 rc.d/init.d/single, rc.d/init.d/killall, rc.d/init.d/allowlogin,
6865 rc.d/rc.local, rc.d/rc.shutdown: - added setting for vi ;)
6d250d3d 6866
4ca37ca2
JR
6867 * rc.d/init.d/network, sysconfig/network-scripts/ifup,
6868 po/Makefile.am, sysconfig/network-scripts/ifdown,
6869 sysconfig/network-scripts/ifup-post,
6870 rc.d/init.d/functions.network, rc.d/rc.sysinit,
6871 sysconfig/network-scripts/ifdown-post: - replaced sed with awk
537d7646 6872 (backport from TOTALNEW branch)
6d250d3d 6873
ac244935 6874 * rc-scripts.spec.in: - synced with SPECS version
6d250d3d 6875
03e40ed6 68762000-11-06 19:28 +0000 [r830] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6877
ac244935
AM
6878 * sysconfig/network-scripts/ifup: - `ip -4 addr add` first `ip link
6879 set dev up` next - atm needs it
6d250d3d 6880
03e40ed6 68812000-11-06 18:33 +0000 [r829] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6882
ac244935 6883 * configure.in: - version 0.2.8
6d250d3d 6884
03e40ed6 68852000-11-06 16:24 +0000 [r827] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6886
ac244935
AM
6887 * rc.d/init.d/network: - use awk instead of sed in interface
6888 selection
6d250d3d 6889
03e40ed6 68902000-11-06 15:42 +0000 [r825-826] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6891
ac244935
AM
6892 * rc.d/init.d/network: - skip lec and atm interfaces on start|stop,
6893 they are set using separate script
6d250d3d 6894
ac244935
AM
6895 * sysconfig/network-scripts/ifup: - revert last change because IPv6
6896 is broken and it's not possible to add an adress on DOWN
6897 interface :(
6d250d3d 6898
03e40ed6 68992000-11-05 01:28 +0000 [r823] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6900
ac244935 6901 * sysconfig/network: - added global ipv6 autoconf setting
6d250d3d 6902
03e40ed6 69032000-11-04 04:44 +0000 [r822] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6904
ac244935
AM
6905 * sysconfig/network-scripts/ifup: - bring interface UP _after_
6906 setting up addresses (other way breaks ATM)
6d250d3d 6907
03e40ed6 69082000-11-02 21:40 +0000 [r819] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6909
ac244935 6910 * rc.d/init.d/network: - global setting for autoconf in proc_net()
6d250d3d 6911
03e40ed6 69122000-10-22 20:55 +0000 [r808] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6913
ac244935
AM
6914 * rc.d/init.d/functions: (run_cmd, daemon): set HOME and TMPDIR in
6915 nicer way (backport from totalnew)
6d250d3d 6916
d23f8bf7 69172000-10-22 19:30 +0000 [r807] mkochano <mkochano/at/pld-linux.org>
6d250d3d 6918
ac244935
AM
6919 * rc.d/init.d/functions: - Remove "HOME" from environment. - Set
6920 TMPDIR and TEMP to "/tmp". Some programs (Samba, cvs) will fail
6921 beacuse of lack of access permissions to "/root/tmp" or lack of
6922 this directory if these variables are inherited from root's
6923 environment.
6d250d3d 6924
03e40ed6 69252000-10-18 20:10 +0000 [r803] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
6d250d3d 6926
ac244935
AM
6927 * rc.d/init.d/functions.network: merged totalnew 3d patch as new
6928 TOTALNEW branch
6d250d3d 6929
03e40ed6 69302000-10-17 20:42 +0000 [r802] Paweł Sakowski <saq/at/pld-linux.org>
6d250d3d 6931
ac244935
AM
6932 * sysconfig/network-scripts/ifup: - bugfix: avoid loops when a user
6933 calls ifup and usernetctl isn't suid
6d250d3d 6934
03e40ed6 69352000-09-25 13:46 +0000 [r801] Paweł Sakowski <saq/at/pld-linux.org>
6d250d3d 6936
ac244935 6937 * configure.in: - version 0.2.7
6d250d3d 6938
03e40ed6 69392000-09-23 20:43 +0000 [r800] Paweł Sakowski <saq/at/pld-linux.org>
6d250d3d 6940
b30f8040 6941 * sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown:
ac244935 6942 - fixed DEVICETYPE determination for aliased devices
6d250d3d 6943
03e40ed6 69442000-09-21 13:53 +0000 [r799] Paweł Sakowski <saq/at/pld-linux.org>
6d250d3d 6945
ac244935 6946 * po/de.po: - minor fixes
6d250d3d 6947
d23f8bf7 69482000-09-20 23:32 +0000 [r798] kloczek <kloczek/at/pld-linux.org>
6d250d3d 6949
ac244935 6950 * sysconfig/static-routes: - commented entry description.
6d250d3d 6951
03e40ed6 69522000-09-19 13:36 +0000 [r796-797] Paweł Sakowski <saq/at/pld-linux.org>
6d250d3d 6953
ac244935 6954 * po/pl.po: - translations for ifup and ifup-sl
6d250d3d 6955
ac244935 6956 * po/de.po: - s/dir/dip/
6d250d3d 6957
03e40ed6 69582000-09-19 12:46 +0000 [r795] Paweł Sakowski <saq/at/pld-linux.org>
6d250d3d 6959
a2ee7529
JR
6960 * sysconfig/network-scripts/ifup-sl, po/de.po,
6961 rc.d/init.d/functions, sysconfig/network-scripts/ifup, po/pl.po:
6962 - merged some %s into nls invocations - German translation
6963 finetuning
6d250d3d 6964
03e40ed6 69652000-09-18 22:32 +0000 [r794] Paweł Sakowski <saq/at/pld-linux.org>
6d250d3d 6966
4ca37ca2
JR
6967 * po/de.po (added), rc.d/init.d/functions, configure.in,
6968 rc-scripts.spec.in: - introducing German translation
6d250d3d 6969
03e40ed6 69702000-09-03 02:29 +0000 [r793] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6971
ac244935
AM
6972 * sysconfig/network-scripts/ifup,
6973 sysconfig/interfaces/ifcfg-description: - added IPV6_AUTOCONF
6974 variable to interface configuration set it to "no" if you don't
6975 want kernel to autoconfigure IPv6 address on interfaces
6976 (prefix:MAC stuff)
6d250d3d 6977
cb0c01df 69782000-08-28 15:43 +0000 [r792] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6979
ac244935 6980 * configure.in: - version = 0.2.6
6d250d3d 6981
cb0c01df 69822000-08-28 15:38 +0000 [r790-791] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6983
ac244935 6984 * rc.d/init.d/network: - substituted awk in place of /usr/bin/tr
6d250d3d 6985
ac244935 6986 * rc.d/init.d/network: - removed all "xargs" calls
6d250d3d 6987
cb0c01df 69882000-08-08 23:06 +0000 [r789] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 6989
ac244935
AM
6990 * rc.d/init.d/functions: - added "termput op" definition -- it
6991 fixes the Blue Screen (tm) problem :) (if you don't know what's
6992 this about, try umounting /usr and running rc.sysinit -- the same
6993 effect was when /usr wasn't on root partition)
6d250d3d 6994
03e40ed6 69952000-08-04 15:25 +0000 [r788] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 6996
ac244935
AM
6997 * sysconfig/network-scripts/ifup: - fixed setting up GATEWAY6* -
6998 added setting up global route for IPv6 routers
6d250d3d 6999
03e40ed6 70002000-08-04 15:20 +0000 [r786-787] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 7001
ac244935 7002 * sysconfig/network: -added IPV6_GLOBALROUTEDEV
6d250d3d 7003
ac244935 7004 * sysconfig/network: - added IPV6_GLOBALROUTE
6d250d3d 7005
03e40ed6 70062000-08-04 15:06 +0000 [r785] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 7007
ac244935
AM
7008 * sysconfig/network-scripts/ifup: - set up GATEWAY6* only if
7009 IPV6_FORWARDING is disabled
6d250d3d 7010
03e40ed6 70112000-08-04 14:08 +0000 [r784] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 7012
ac244935
AM
7013 * sysconfig/network-scripts/ifup: - added default route setup for
7014 IPv6
6d250d3d 7015
03e40ed6 70162000-08-04 14:02 +0000 [r783] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 7017
ac244935 7018 * sysconfig/network: - added GATEWAY6* for IPv6 routing
6d250d3d 7019
cb0c01df 70202000-08-04 13:58 +0000 [r782] Marcin Bohosiewicz <marcus/at/pld-linux.org>
6d250d3d 7021
ac244935 7022 * rc.d/rc.sysinit: - cosmetics (in mount /proc command)
6d250d3d 7023
cb0c01df 70242000-08-03 12:51 +0000 [r781] Marcin Bohosiewicz <marcus/at/pld-linux.org>
6d250d3d 7025
ac244935 7026 * rc.d/rc.sysinit: - added -o gid=17 while mounting /proc
6d250d3d 7027
d23f8bf7 70282000-07-31 07:28 +0000 [r780] kloczek <kloczek/at/pld-linux.org>
6d250d3d 7029
ac244935 7030 * configure.in: - new version 0.2.5.
6d250d3d 7031
03e40ed6 70322000-07-28 18:37 +0000 [r779] Jan Rękorajski <baggins/at/pld-linux.org>
6d250d3d 7033
ac244935 7034 * rc.d/init.d/functions: - added _modprobe function
6d250d3d 7035
cb0c01df 70362000-07-28 15:03 +0000 [r778] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
6d250d3d 7037
b30f8040
AM
7038 * sysconfig/network-scripts/tnlup,
7039 sysconfig/network-scripts/tnldown: - added .
ac244935 7040 /etc/rc.d/init.d/functions
ec8b15cb 7041
cb0c01df 70422000-07-21 18:51 +0000 [r777] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7043
ac244935
AM
7044 * rc.d/init.d/functions.network: - ls 2>/dev/null (avoid "ls: no
7045 such file or directory" when directory does not exist)
ec8b15cb 7046
e327b68b 70472000-07-20 10:07 +0000 [r776] Paweł Gajda <mis/at/pld-linux.org>
ec8b15cb 7048
ac244935
AM
7049 * sysconfig/interfaces/ifcfg-description: - one more fix to
7050 IPXFRAMETYPE
ec8b15cb 7051
e327b68b 70522000-07-20 10:03 +0000 [r775] Paweł Gajda <mis/at/pld-linux.org>
ec8b15cb 7053
ac244935 7054 * sysconfig/interfaces/ifcfg-description: - fixed IPXFRAMETYPE
ec8b15cb 7055
cb0c01df 70562000-07-13 17:42 +0000 [r774] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7057
ac244935 7058 * configure.in: - version 0.2.4
ec8b15cb 7059
03e40ed6 70602000-07-13 15:29 +0000 [r773] Jan Rękorajski <baggins/at/pld-linux.org>
ec8b15cb 7061
ac244935 7062 * rc.d/rc.sysinit: - rm -f utmp? first
ec8b15cb 7063
03e40ed6 70642000-07-13 14:51 +0000 [r772] Jan Rękorajski <baggins/at/pld-linux.org>
ec8b15cb 7065
ac244935 7066 * sysconfig/system: - added NEED_XFILES=yes (we want utmpx/wtmpx)
ec8b15cb 7067
03e40ed6 70682000-07-13 14:45 +0000 [r770-771] Jan Rękorajski <baggins/at/pld-linux.org>
ec8b15cb 7069
ac244935 7070 * rc.d/rc.sysinit: - typo
ec8b15cb 7071
ac244935 7072 * rc.d/rc.sysinit: - we _want_ utmpx and wtmpx, not utmp/wtmp
ec8b15cb 7073
cb0c01df 70742000-06-29 08:24 +0000 [r769] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7075
ac244935 7076 * po/pl.po: - typo
ec8b15cb 7077
03e40ed6 70782000-06-27 20:22 +0000 [r768] Jan Rękorajski <baggins/at/pld-linux.org>
ec8b15cb 7079
ac244935
AM
7080 * rc.d/init.d/functions.network: - modprobe ipip if
7081 IPV6_TUNNELCONFIG == yes
ec8b15cb 7082
cb0c01df 70832000-06-27 09:50 +0000 [r767] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7084
ac244935 7085 * lang.sh: - cleanups
ec8b15cb 7086
cb0c01df 70872000-06-25 14:40 +0000 [r766] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7088
4ca37ca2
JR
7089 * rc.d/rc.shutdown, sysconfig/interfaces/ifcfg-description,
7090 sysconfig/interfaces/ifcfg-ppp0.tpsa, makepot.pl,
7091 rc.d/rc.sysinit: - typos - cleanups
ec8b15cb 7092
cb0c01df 70932000-06-23 09:11 +0000 [r765] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7094
ac244935 7095 * rc.d/rc.shutdown: added shmfs to noprocfs
ec8b15cb 7096
cb0c01df 70972000-06-22 14:52 +0000 [r764] Jacek Konieczny <jajcus/at/pld-linux.org>
ec8b15cb 7098
ac244935
AM
7099 * rc.d/rc.shutdown: - fixed file unmounting again, after kloczek
7100 broke it "borrowing" code from RH
ec8b15cb 7101
cb0c01df 71022000-06-21 15:23 +0000 [r763] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7103
ac244935 7104 * sysconfig/interfaces/ifcfg-description: - IPADDR, not ADDR :)
ec8b15cb 7105
d23f8bf7 71062000-06-18 09:55 +0000 [r762] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7107
ac244935 7108 * configure.in: - release 2.3.
ec8b15cb 7109
d23f8bf7 71102000-06-18 09:52 +0000 [r761] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7111
ac244935
AM
7112 * rc.d/rc.shutdown: - new umounting file systems procedure (borowed
7113 from RH).
ec8b15cb 7114
cb0c01df 71152000-06-12 08:38 +0000 [r760] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7116
b30f8040 7117 * sysconfig/network-scripts/ifup-sl, rc.d/init.d/allowlogin,
4ca37ca2
JR
7118 sysconfig/network-scripts/ifup-ppp, rc.d/init.d/network,
7119 sysconfig/network-scripts/ifdown-sl,
7120 sysconfig/network-scripts/ifup-aliases,
b30f8040
AM
7121 sysconfig/network-scripts/tnlup, sysconfig/network-scripts/ifup,
7122 sysconfig/network-scripts/ifup-plip,
7123 sysconfig/network-scripts/tnldown,
7124 sysconfig/network-scripts/ifup-post,
7125 rc.d/init.d/functions.network, rc.d/rc.sysinit, ppp/ip-down: -
7126 is_yes and is_no cleanups - typos
ec8b15cb 7127
d23f8bf7 71282000-06-02 14:47 +0000 [r759] mkochano <mkochano/at/pld-linux.org>
ec8b15cb 7129
ac244935
AM
7130 * rc.d/init.d/functions: - Moves cursor to a new line also after
7131 "WORK" and "FAIL".
ec8b15cb 7132
d23f8bf7 71332000-06-02 14:36 +0000 [r758] mkochano <mkochano/at/pld-linux.org>
ec8b15cb 7134
ac244935
AM
7135 * rc.d/init.d/functions: - Added new function progress(). It shows
7136 color messages in square brackets. Takes two arguments: text to
7137 display and color to use. Second argument is optional (default
7138 color is green). Outputs "op" as last terminal sequence instaed
7139 setting arbitrary color. - busy(), ok(), started(), fail() and
7140 died() modified to use progress().
ec8b15cb 7141
cb0c01df 71422000-06-02 10:00 +0000 [r757] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7143
ac244935
AM
7144 * rc.d/rc.sysinit: - fixed some is_yes calls (argument can be
7145 empty)
ec8b15cb 7146
03e40ed6 71472000-06-01 19:33 +0000 [r756] Jan Rękorajski <baggins/at/pld-linux.org>
ec8b15cb 7148
ac244935 7149 * rc.d/rc.sysinit: - fixed setting up USEMODULES variable
ec8b15cb 7150
cb0c01df 71512000-05-31 18:01 +0000 [r754-755] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7152
ac244935 7153 * rc.d/rc: - one more typo
ec8b15cb 7154
ac244935 7155 * rc.d/rc: - typo
ec8b15cb 7156
cb0c01df 71572000-05-31 17:55 +0000 [r753] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7158
ac244935 7159 * sysconfig/network-scripts/ifdown: - typo
ec8b15cb 7160
cb0c01df 71612000-05-30 05:55 +0000 [r749-752] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7162
ac244935 7163 * rc.d/init.d/functions: -typo
ec8b15cb 7164
ac244935 7165 * rc.d/rc: - replaced halt -d with halt -d -p
ec8b15cb 7166
ac244935 7167 * rc.d/rc.shutdown: - halt -p -> halt -w
ec8b15cb 7168
ac244935 7169 * rc.d/rc.sysinit: -typo
ec8b15cb 7170
03e40ed6 71712000-05-29 19:37 +0000 [r747-748] Jan Rękorajski <baggins/at/pld-linux.org>
ec8b15cb 7172
ac244935 7173 * sysconfig/network-scripts/ifup: - pass $DHCPOPTIONS to dhcpcd
ec8b15cb 7174
ac244935 7175 * sysconfig/network-scripts/ifdown: - kill dhcpcd if necessary
ec8b15cb 7176
03e40ed6 71772000-05-29 19:31 +0000 [r746] Jan Rękorajski <baggins/at/pld-linux.org>
ec8b15cb 7178
ac244935
AM
7179 * sysconfig/interfaces/ifcfg-description: - added DHCPOPTIONS
7180 variable
ec8b15cb 7181
d23f8bf7 71822000-05-29 19:06 +0000 [r745] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7183
ac244935 7184 * configure.in: - start prepare 0.2.2.
ec8b15cb 7185
03e40ed6 71862000-05-29 19:03 +0000 [r744] Jan Rękorajski <baggins/at/pld-linux.org>
ec8b15cb 7187
ac244935
AM
7188 * rc.d/rc.shutdown: - run quotaoff -a before unmounting filesystems
7189 - minor cosmetics
ec8b15cb 7190
cb0c01df 71912000-05-20 13:34 +0000 [r743] Jacek Konieczny <jajcus/at/pld-linux.org>
ec8b15cb 7192
ac244935
AM
7193 * rc.d/rc.sysinit: - Time setup changed, so it should work even if
7194 /usr is on separate partition
ec8b15cb 7195
cb0c01df 71962000-05-16 15:08 +0000 [r742] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7197
ac244935
AM
7198 * rc.d/rc.sysinit: - changed the way depmod was run - changed all
7199 "!=no" to "is_yes" or "! is_no" (from "functions")
ec8b15cb 7200
cb0c01df 72012000-05-13 07:11 +0000 [r741] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7202
ac244935 7203 * rc.d/init.d/timezone, po/pl.po: - rc.d/init.d/timezone - poprawki
03e40ed6 7204 związane z tłumaczeniem - po/pl.po - serwis -> usluga,
ac244935 7205 startowanie -> uruchamianie i kilka kosmetycznych zmian
ec8b15cb 7206
03e40ed6 72072000-05-09 18:58 +0000 [r740] Jan Rękorajski <baggins/at/pld-linux.org>
ec8b15cb 7208
b30f8040 7209 * sysconfig/network-scripts/ifdown, sysconfig/network-scripts/ifup:
ac244935
AM
7210 - pump is b0rken - don't use pump for DHCP - use dhcpcd for DHCP
7211 ;) - and fixed typo
ec8b15cb 7212
d23f8bf7 72132000-05-09 15:46 +0000 [r739] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7214
ac244935 7215 * rc.d/rc.shutdown: - "halt -p" instead "halt -w".
ec8b15cb 7216
03e40ed6 72172000-05-07 19:00 +0000 [r738] Paweł Wilk <siefca/at/pld-linux.org>
ec8b15cb 7218
b30f8040 7219 * sysconfig/interfaces/up.d/tnl/.cvsignore (added),
a2ee7529
JR
7220 ppp/Makefile.am, sysconfig/interfaces/up.d/ppp/.cvsignore
7221 (added), sysconfig/interfaces/up.d/.cvsignore (added),
ac244935 7222 sysconfig/interfaces/up.d/all/Makefile.am (added),
a2ee7529
JR
7223 sysconfig/interfaces/down.d (added),
7224 sysconfig/interfaces/up.d/all/.cvsignore (added), configure.in,
ac244935 7225 sysconfig/interfaces/down.d/all (added),
a2ee7529 7226 sysconfig/interfaces/down.d/ip (added), ppp/ip-up,
ac244935 7227 sysconfig/interfaces/down.d/Makefile.am (added),
ac244935 7228 sysconfig/interfaces/up.d/tnl (added),
ac244935 7229 sysconfig/interfaces/up.d/ppp (added),
ac244935 7230 sysconfig/interfaces/up.d/ipx (added),
a2ee7529
JR
7231 sysconfig/interfaces/down.d/ipx/.cvsignore (added),
7232 sysconfig/interfaces/down.d/ppp/logger (added),
ac244935 7233 sysconfig/interfaces/down.d/all/Makefile.am (added),
a2ee7529 7234 sysconfig/interfaces/down.d/ip/Makefile.am (added),
ac244935 7235 sysconfig/interfaces/up.d/tnl/Makefile.am (added),
ac244935 7236 sysconfig/interfaces/up.d/ppp/Makefile.am (added),
a2ee7529
JR
7237 sysconfig/interfaces/up.d/ip (added),
7238 sysconfig/interfaces/up.d/ipx/Makefile.am (added), Makefile.am,
7239 sysconfig/interfaces/up.d/ipx/.cvsignore (added),
7240 sysconfig/interfaces/down.d/all/thetouch (added),
7241 sysconfig/interfaces/up.d/ppp/logger (added), ppp/ip-down,
ac244935 7242 sysconfig/interfaces/down.d/tnl (added),
a2ee7529 7243 sysconfig/interfaces/up.d/ip/Makefile.am (added),
ac244935 7244 sysconfig/interfaces/down.d/ppp (added),
b30f8040
AM
7245 sysconfig/interfaces/down.d/ipx (added),
7246 sysconfig/interfaces/up.d/ip/.cvsignore (added),
7247 sysconfig/interfaces/down.d/tnl/Makefile.am (added),
7248 rc-scripts.spec.in, sysconfig/interfaces/up.d/all/thetouch
7249 (added), sysconfig/interfaces/down.d/ppp/Makefile.am (added),
7250 sysconfig/interfaces/down.d/ipx/Makefile.am (added),
7251 sysconfig/interfaces/down.d/tnl/.cvsignore (added), run-parts
7252 (added), sysconfig/interfaces/down.d/ppp/.cvsignore (added),
7253 sysconfig/interfaces/down.d/.cvsignore (added),
7254 sysconfig/interfaces/up.d (added),
7255 sysconfig/interfaces/Makefile.am,
7256 sysconfig/interfaces/down.d/all/.cvsignore (added),
7257 sysconfig/interfaces/up.d/all (added),
7258 sysconfig/interfaces/down.d/ip/.cvsignore (added),
7259 sysconfig/interfaces/up.d/Makefile.am (added): - scripts now
7260 ready to exec run-parts for each of interfaces going up/down, -
7261 run-parts is now by rc-scripts provided (as /bin/run-parts).
ec8b15cb 7262
03e40ed6 72632000-05-07 15:43 +0000 [r737] Paweł Wilk <siefca/at/pld-linux.org>
ec8b15cb 7264
ac244935 7265 * rc-scripts.spec.in: run-parts script now belongs here
ec8b15cb 7266
cb0c01df 72672000-05-03 11:55 +0000 [r736] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7268
ac244935
AM
7269 * rc.d/rc.sysinit: - typos - in some places changed [ VARIABLE =
7270 "yes" ] ==> is_yes - devfsd may be used without DEVFS_MOUNT=yes
ec8b15cb 7271
cb0c01df 72722000-05-03 11:49 +0000 [r735] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7273
ac244935 7274 * rc.d/rc, rc.d/rc.sysinit: - typo
ec8b15cb 7275
cb0c01df 72762000-05-01 20:13 +0000 [r734] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7277
ac244935 7278 * rc.d/rc.sysinit: - typo
ec8b15cb 7279
cb0c01df 72802000-05-01 18:57 +0000 [r733] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7281
ac244935
AM
7282 * rc.d/rc: - line lengths are now evaluated properly - it's not
7283 necessary to set and unset af{2,6,7} every time we want to "say
7284 something" :)
ec8b15cb 7285
cb0c01df 72862000-05-01 18:53 +0000 [r732] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7287
ac244935
AM
7288 * rc.d/init.d/functions: - \n after messages passed to nls aren't
7289 necessary (nls uses "echo" after every printf anyway: if you want
7290 to get a message without a trailing "\n", use echo -n "`nls
7291 ...`")
ec8b15cb 7292
cb0c01df 72932000-05-01 18:43 +0000 [r731] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7294
ac244935
AM
7295 * rc.d/init.d/functions: - deltext is not necessary before ok,
7296 fail, others (it's called automatically) - [ $# -gt 0 ] instead
7297 of [ -n "$1" ]: printf_ sometimes has to accept argument lists
7298 like "" "a" (where first one is empty string) - replaced
7299 "\b\b\b..." in deltext by "termput hpa $INIT_COL" - COLOR_INIT=no
7300 doesn't mean that all other termcodes shouldn't work - COLOR_INIT
7301 is now checked only at case "setaf"
ec8b15cb 7302
cb0c01df 73032000-04-27 06:20 +0000 [r730] Jacek Konieczny <jajcus/at/pld-linux.org>
ec8b15cb 7304
ac244935
AM
7305 * sysconfig/network-scripts/ifup: - missing space added (without
7306 this "peer" option was used to "ip addr add" even if no "$REMIP"
7307 was defined)
ec8b15cb 7308
cb0c01df 73092000-04-25 12:01 +0000 [r729] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7310
b30f8040 7311 * sysconfig/system, rc.d/rc.sysinit: - added MOUNT_DEVFS option
ec8b15cb 7312
cb0c01df 73132000-04-24 16:56 +0000 [r728] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7314
ac244935
AM
7315 * rc.d/rc: - removed two unnecessary 0s at every textlen counting -
7316 arguments for nls in "" (necessary, when COLOR_INIT=no)
ec8b15cb 7317
cb0c01df 73182000-04-23 11:46 +0000 [r727] Marcin Bohosiewicz <marcus/at/pld-linux.org>
ec8b15cb 7319
a2ee7529
JR
7320 * sysconfig/network-scripts/ifup-ppp,
7321 sysconfig/network-scripts/ifup: * In ifup file added suppoer for
7322 Point-to-Point IPv4 Ethernet (REMIP variable). * In ifup-ppp
ac244935 7323 deleted some hashed lines.
ec8b15cb 7324
cb0c01df 73252000-04-21 17:47 +0000 [r716-726] Jacek Konieczny <jajcus/at/pld-linux.org>
ec8b15cb 7326
ac244935
AM
7327 * sysconfig/network-scripts/ifup-routes: - get REALDEVICE and use
7328 it for setting up the routes
ec8b15cb 7329
ac244935
AM
7330 * sysconfig/network-scripts/ifup-ppp: - detach pppd by default -
7331 use "linkname" option to make pppd save its pid and interface
7332 name - pass $CONFIG as ipparam - don't set remotename to device
7333 name so authentication will work with peer-given name
ec8b15cb 7334
ac244935
AM
7335 * sysconfig/network-scripts/ifup-post: - use
7336 get_ppp_device_and_pid() to get REALDEVICE - set up queing
7337 discipline if QDISC is given
ec8b15cb 7338
ac244935
AM
7339 * sysconfig/network-scripts/ifdown-ppp: - use
7340 get_ppp_device_and_pid() for getting pppd's pid
ec8b15cb 7341
ac244935
AM
7342 * rc.d/init.d/functions.network: - set REALDEVICE to DEVICE if
7343 nothig else is set
ec8b15cb 7344
ac244935
AM
7345 * sysconfig/interfaces/ifcfg-ppp0.tpsa: - chatscript in
7346 interfaces/data - QDISC set to SFQ (useful on PPP links)
ec8b15cb 7347
b30f8040
AM
7348 * sysconfig/interfaces/ifcfg-ppp0.callback,
7349 sysconfig/interfaces/ifcfg-ppp0.leased1: - chatscript in
ac244935 7350 interfaces/data
ec8b15cb 7351
ac244935
AM
7352 * sysconfig/interfaces/ifcfg-description: - QDISC parameter added
7353 (queuing discipline)
ec8b15cb 7354
ac244935
AM
7355 * rc.d/init.d/functions.network: - function get_ppp_device_and_pid
7356 added. It extracts PID and REALDEVICE from /var/run/ppp-*.pid
ec8b15cb 7357
ac244935
AM
7358 * ppp/ip-up: - real device name is now saved by pppd in
7359 /var/run/ppp-*.pid - ipparam is a config name not a device name -
7360 pass $CONFIG instead of ifcfg-$DEVICE to ifup-post
ec8b15cb 7361
ac244935
AM
7362 * ppp/ip-down: - "compatible location" of basename - ipparam is now
7363 a config name instead of logical device - ifdown-post uses
7364 $CONFIG instead of ifcfg-$DEVICE
ec8b15cb 7365
cb0c01df 73662000-04-19 18:20 +0000 [r715] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7367
ac244935
AM
7368 * sysconfig/network-scripts/ifup-post: - ifup-routes should be run
7369 with $CONFIG as parameter, not $DEVNAME
ec8b15cb 7370
cb0c01df 73712000-04-18 08:30 +0000 [r713-714] Jacek Konieczny <jajcus/at/pld-linux.org>
ec8b15cb 7372
ac244935
AM
7373 * sysconfig/network-scripts/ifup-post: - better hostname detection
7374 (for DHCP clients)
ec8b15cb 7375
ac244935 7376 * rc.d/init.d/functions.network: - "set_hostname" function fixed
ec8b15cb 7377
d23f8bf7 73782000-04-14 11:14 +0000 [r711-712] mkochano <mkochano/at/pld-linux.org>
ec8b15cb 7379
ac244935 7380 * rc.d/init.d/template.init: - s/syslogd/<service>/.
ec8b15cb 7381
ac244935 7382 * sysconfig/system: - Added note about aumix-OSS-preserve-settings.
ec8b15cb 7383
cb0c01df 73842000-04-13 08:25 +0000 [r710] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7385
ac244935 7386 * rc.d/init.d/template.init: - some changes in reload)
ec8b15cb 7387
d23f8bf7 73882000-04-12 23:21 +0000 [r709] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7389
ac244935 7390 * po/pl.po: - typo.
ec8b15cb 7391
cb0c01df 73922000-04-11 14:27 +0000 [r708] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7393
ac244935
AM
7394 * po/pl.po: - typo - missing translation for "to enter interactive
7395 startup"
ec8b15cb 7396
cb0c01df 73972000-04-08 21:41 +0000 [r707] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7398
ac244935
AM
7399 * rc.d/init.d/functions: - added single-letter-values to is_yes and
7400 is_no
ec8b15cb 7401
d23f8bf7 74022000-04-08 13:34 +0000 [r706] mkochano <mkochano/at/pld-linux.org>
ec8b15cb 7403
ac244935
AM
7404 * rc.d/rc.sysinit: - Changed 'modprobe -s midi' to 'modprobe -s
7405 synth0'. There is no module 'midi'. - Changed 'modprobe -s sound'
7406 to 'modprobe -s sound-slot-0'. This causes sound card driver to
7407 be loaded.
ec8b15cb 7408
03e40ed6 74092000-04-07 19:16 +0000 [r705] Jan Rękorajski <baggins/at/pld-linux.org>
ec8b15cb 7410
ac244935
AM
7411 * sysconfig/network-scripts/ifup-ipx: - don't try start IPX on
7412 unconfigured devices
ec8b15cb 7413
d23f8bf7 74142000-04-06 12:39 +0000 [r704] mkochano <mkochano/at/pld-linux.org>
ec8b15cb 7415
ac244935
AM
7416 * sysconfig/network-scripts/ifup-routes: - s/\$DEVICE/\$DEVNAME/.
7417 "$DEVNAME" is set by source_config() from .functions to the name
7418 of interface for which static routes should be set up.
ec8b15cb 7419
cb0c01df 74202000-04-05 10:33 +0000 [r703] Bartek Szady <bszx/at/pld-linux.org>
ec8b15cb 7421
ac244935 7422 * rc.d/init.d/timezone: - now it works under bash
ec8b15cb 7423
03e40ed6 74242000-04-03 14:50 +0000 [r700-702] Jan Rękorajski <baggins/at/pld-linux.org>
ec8b15cb 7425
b30f8040
AM
7426 * sysconfig/network-scripts/ifup-ppp,
7427 sysconfig/network-scripts/ifup-ipx, rc.d/init.d/network,
a2ee7529 7428 sysconfig/network-scripts/ifup-routes,
ac244935
AM
7429 sysconfig/network-scripts/ifup,
7430 sysconfig/interfaces/ifcfg-description,
b30f8040
AM
7431 sysconfig/network-scripts/ifdown, rc.d/rc.sysinit: - cleaned up
7432 ifup/ifdown mess, /sbin/ifup ethX.something works now - IPX
7433 fixes, works now - run hdparm from rc.sysinit BEFORE anything is
7434 mounted RW - fixed setting VFS_{FILE,INODE}_MAX - updated
7435 ifcfg-description
ec8b15cb 7436
ac244935 7437 * configure.in: - version 0.2.1
ec8b15cb 7438
ac244935 7439 * src/Makefile.am: - added initlog.conf to EXTRA_DIST
ec8b15cb 7440
cb0c01df 74412000-04-01 10:24 +0000 [r699] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7442
ac244935 7443 * rc.d/init.d/functions: - small termput() fixes
ec8b15cb 7444
03e40ed6 74452000-03-31 13:10 +0000 [r698] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ec8b15cb 7446
a2ee7529
JR
7447 * sysconfig/network-scripts/ifup-ppp,
7448 sysconfig/network-scripts/tnlup,
7449 sysconfig/network-scripts/tnldown: - support for maxfail option
ac244935 7450 in pppd - cleanups in tunnel scripts
ec8b15cb 7451
03e40ed6 74522000-03-27 16:07 +0000 [r697] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ec8b15cb 7453
4ca37ca2
JR
7454 * INSTALL, po/pl.po, sysconfig/interfaces/ifcfg-description,
7455 rc-scripts.spec.in, sysconfig/network-scripts/ifup-post, rc.d/rc,
ac244935 7456 rc.d/init.d/functions.network, rc.d/rc.sysinit,
4ca37ca2
JR
7457 sysconfig/network-scripts/ifdown-post, NEWS, src/Makefile.am: -
7458 removed "scripts" method of executing external programs after
7459 uping or downing device (almost nobody didn't know about it 8-) -
7460 added new method which is using run_up() and run_down() functions
7461 defined in device configuration file (ifcfg*) - fixed problem
7462 with displaing garbage instead of formated output - removed
7463 execution of random start (this should be started in standard
7464 init.d way) - set ld.so.cache if doesn't exist, too - use new
7465 (rh) style for date variables
ec8b15cb 7466
d23f8bf7 74672000-03-26 06:51 +0000 [r696] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7468
ac244935 7469 * sysconfig/system: - changed RUN_LDCONFIG to no.
ec8b15cb 7470
03e40ed6 74712000-03-24 08:48 +0000 [r695] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ec8b15cb 7472
4ca37ca2 7473 * po/pl.po, rc.d/rc: - fixed problem with Runlevel messages and
ac244935 7474 INIT_COL variable
ec8b15cb 7475
cb0c01df 74762000-03-24 08:39 +0000 [r694] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7477
ac244935 7478 * rc.d/rc.sysinit: - fixed nfsroot support
ec8b15cb 7479
cb0c01df 74802000-03-22 22:00 +0000 [r693] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7481
ac244935 7482 * rc-scripts.spec.in: use corect name
ec8b15cb 7483
cb0c01df 74842000-03-22 21:55 +0000 [r692] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7485
b30f8040
AM
7486 * rc.d/init.d/<template>.init (removed), rc.d/init.d/Makefile.am,
7487 rc.d/init.d/template.init (added): please don't use stupid names
7488 for files
ec8b15cb 7489
cb0c01df 74902000-03-22 21:44 +0000 [r691] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7491
ac244935 7492 * rc-scripts.spec.in: typo
ec8b15cb 7493
cb0c01df 74942000-03-22 21:41 +0000 [r690] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7495
ac244935 7496 * rc-scripts.spec.in: - added <templete>.init to %doc
ec8b15cb 7497
cb0c01df 74982000-03-22 21:30 +0000 [r689] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7499
ac244935 7500 * po/pl.po: cleanup
ec8b15cb 7501
d23f8bf7 75022000-03-22 21:21 +0000 [r688] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7503
ac244935 7504 * po/pl.po: - removed all fuzzy translations.
ec8b15cb 7505
d23f8bf7 75062000-03-22 21:04 +0000 [r686-687] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7507
ac244935 7508 * po/pl.po: - s/Stopowanie/Zatrzymywanie/
ec8b15cb 7509
ac244935 7510 * po/pl.po: - beter translations for stop/start serwices.
ec8b15cb 7511
d23f8bf7 75122000-03-22 20:51 +0000 [r685] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7513
ac244935
AM
7514 * po/pl.po: - added missing %s in pl translations (stopping,
7515 starting messages).
ec8b15cb 7516
cb0c01df 75172000-03-22 20:43 +0000 [r684] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7518
ac244935 7519 * rc.d/init.d/functions: fixed small typo
ec8b15cb 7520
cb0c01df 75212000-03-22 17:24 +0000 [r683] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7522
b30f8040 7523 * rc.d/rc.sysinit, sysconfig/system: - Allow set
03e40ed6 7524 /proc/sys/fs/file-max & inode-max (patch by Paweł Krawczyk
cb0c01df 7525 <kravietz/at/alfa.ceti.pl>)
ec8b15cb 7526
cb0c01df 75272000-03-22 17:20 +0000 [r682] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7528
ac244935 7529 * rc-scripts.spec.in: Added BuildRequires: gettext-devel
ec8b15cb 7530
d23f8bf7 75312000-03-22 01:17 +0000 [r681] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7532
ac244935 7533 * po/pl.po: - more pl translations.
ec8b15cb 7534
d23f8bf7 75352000-03-22 01:08 +0000 [r680] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7536
ac244935
AM
7537 * rc.d/init.d/functions.network: - added using msg_stopping() in
7538 stop.
ec8b15cb 7539
cb0c01df 75402000-03-21 23:59 +0000 [r678-679] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7541
ac244935 7542 * makepot.pl: use : instead . in file location
ec8b15cb 7543
b30f8040 7544 * po/pl.po, makepot.pl: updated makepot.pl and pl.po, pl.po need
ac244935 7545 fixing
ec8b15cb 7546
cb0c01df 75472000-03-20 06:58 +0000 [r677] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7548
ac244935 7549 * rc.d/rc.sysinit: - hacks for nfsroot, romfs
ec8b15cb 7550
d23f8bf7 75512000-03-17 01:14 +0000 [r676] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7552
ac244935 7553 * rc.d/init.d/functions: - more using msg_Usage().
ec8b15cb 7554
d23f8bf7 75552000-03-16 23:36 +0000 [r675] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7556
ac244935 7557 * configure.in: - VERSION=0.2.0 (prepare to release this version).
ec8b15cb 7558
03e40ed6 75592000-03-15 15:07 +0000 [r674] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ec8b15cb 7560
ac244935 7561 * README: - added info aboout Routing messages
ec8b15cb 7562
d23f8bf7 75632000-03-10 01:31 +0000 [r673] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7564
ac244935
AM
7565 * rc.d/init.d/<template>.init, rc.d/init.d/functions: -
7566 msg_Usage_noreload() and msg_Usage_reload() replace by
7567 msg_Usage().
ec8b15cb 7568
d23f8bf7 75692000-03-10 01:21 +0000 [r672] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7570
ac244935
AM
7571 * rc.d/init.d/<template>.init: - added return in exit error code
7572 $RETVAL.
ec8b15cb 7573
cb0c01df 75742000-03-09 11:50 +0000 [r671] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7575
ac244935 7576 * rc.d/init.d/functions: - show() now substitutes %s properly
ec8b15cb 7577
cb0c01df 75782000-03-09 11:43 +0000 [r670] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7579
ac244935 7580 * rc.d/init.d/functions: - show instead of nls in some functions
ec8b15cb 7581
cb0c01df 75822000-03-09 11:30 +0000 [r669] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7583
ac244935 7584 * rc.d/init.d/functions: - more function
ec8b15cb 7585
cb0c01df 75862000-03-09 11:11 +0000 [r668] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7587
ac244935 7588 * rc.d/init.d/functions: - default value for INIT_COL
ec8b15cb 7589
cb0c01df 75902000-03-09 10:57 +0000 [r666-667] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7591
ac244935 7592 * sysconfig/system: - added INIT_COL setting
ec8b15cb 7593
ac244935
AM
7594 * rc.d/init.d/functions: - slightly modified show() function -
7595 changed all "67" to "$INIT_COL"
ec8b15cb 7596
03e40ed6 75972000-03-08 16:30 +0000 [r664-665] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ec8b15cb 7598
b30f8040
AM
7599 * sysconfig/network-scripts/ifup,
7600 sysconfig/network-scripts/ifup-post,
7601 rc.d/init.d/functions.network,
7602 sysconfig/network-scripts/ifdown-post, README: - start some
7603 scripts after interface is upped or downed
ac244935 7604 (/etc/sysconfig/interfaces/scripts/ifname/somename.{up,down}
ec8b15cb 7605
b30f8040
AM
7606 * sysconfig/system, rc.d/rc, rc.d/rc.sysinit,
7607 rc.d/init.d/functions, po/pl.po: - support for interactive
7608 starting
ec8b15cb 7609
cb0c01df 76102000-03-08 15:43 +0000 [r663] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7611
ac244935
AM
7612 * rc.d/init.d/<template>.init, rc.d/init.d/functions: - added
7613 "is_yes" and "is_no" functions
ec8b15cb 7614
cb0c01df 76152000-03-08 15:26 +0000 [r662] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7616
ac244935
AM
7617 * rc.d/init.d/<template>.init: - force-reload returns right status
7618 on exit
ec8b15cb 7619
cb0c01df 76202000-03-08 15:23 +0000 [r661] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7621
ac244935
AM
7622 * rc.d/init.d/<template>.init: - added force-reload option - added
7623 exit code 1 at errors - checking for running service at stop
ec8b15cb 7624
cb0c01df 76252000-03-08 14:59 +0000 [r660] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7626
ac244935
AM
7627 * rc.d/init.d/<template>.init: - was "2&>1" instead of "2>&1" -
7628 fixed
ec8b15cb 7629
cb0c01df 76302000-03-08 14:50 +0000 [r659] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7631
ac244935
AM
7632 * rc.d/init.d/<template>.init: - unified syntax for setting
7633 numerical and nonnumerical variables
ec8b15cb 7634
cb0c01df 76352000-03-08 14:40 +0000 [r658] Sebastian Zagrodzki <zagrodzki/at/pld-linux.org>
ec8b15cb 7636
ac244935
AM
7637 * rc.d/init.d/<template>.init: - default configuration support -
7638 typo
ec8b15cb 7639
cb0c01df 76402000-03-08 11:52 +0000 [r657] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7641
ac244935
AM
7642 * rc.d/init.d/<template>.init: - support exit code defined in LSB
7643 spec (http://www.linuxbase.org/)
ec8b15cb 7644
cb0c01df 76452000-03-06 00:34 +0000 [r656] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7646
ac244935 7647 * rc.d/init.d/<template>.init: - nls()ed
ec8b15cb 7648
cb0c01df 76492000-03-06 00:23 +0000 [r655] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7650
ac244935
AM
7651 * rc.d/init.d/<template>.init: rm -f /var/lock/subsys/<service>
7652 >/dev/null 2&>1 1. -r is not needed 2. silent
ec8b15cb 7653
d23f8bf7 76542000-03-06 00:19 +0000 [r654] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7655
ac244935
AM
7656 * rc.d/init.d/<template>.init: - added "rm -rf
7657 /var/lock/subsys/<service>" in stop.
ec8b15cb 7658
d23f8bf7 76592000-03-06 00:10 +0000 [r653] kloczek <kloczek/at/pld-linux.org>
ec8b15cb 7660
ac244935
AM
7661 * rc.d/init.d/<template>.init (added): Template init script. This
7662 script can be used for preparing some unified output messages
7663 translation for other init scripts for all services) Also it
7664 would be good to change all other init scripts for compatybility
7665 with this skeleton script and/or keep this file as template.
ec8b15cb 7666
03e40ed6 76672000-03-04 22:40 +0000 [r652] Paweł Wilk <siefca/at/pld-linux.org>
ec8b15cb 7668
b30f8040
AM
7669 * rc-scripts.spec.in, src/resolvesymlink.c (added),
7670 src/Makefile.am, rc.d/init.d/timezone: Time zone information will
7671 be updated only when needed.
ec8b15cb 7672
03e40ed6 76732000-03-04 13:59 +0000 [r651] Paweł Wilk <siefca/at/pld-linux.org>
ec8b15cb 7674
a2ee7529
JR
7675 * sysconfig/Makefile.am, rc.d/init.d/Makefile.am, configure.in,
7676 rc-scripts.spec.in: added time zone setting
ec8b15cb 7677
03e40ed6 76782000-03-04 13:41 +0000 [r648-650] Paweł Wilk <siefca/at/pld-linux.org>
ec8b15cb 7679
ac244935
AM
7680 * sysconfig/timezone (added): configuration parameters for time
7681 zone setting
ec8b15cb 7682
ac244935 7683 * rc.d/init.d/timezone: chkconfig script for time zone setting
ec8b15cb 7684
ac244935
AM
7685 * rc.d/init.d/timezone (added): configuration profile (variables)
7686 for time zone setting
ec8b15cb 7687
cb0c01df 76882000-03-02 17:22 +0000 [r647] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7689
ac244935 7690 * configure.in: 0.1.5
ec8b15cb 7691
03e40ed6 76922000-02-28 12:50 +0000 [r646] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ec8b15cb 7693
ac244935
AM
7694 * rc.d/rc.sysinit: - run depmod if modules.dep is older that
7695 modules.conf, too
ec8b15cb 7696
03e40ed6 76972000-02-18 18:07 +0000 [r645] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ec8b15cb 7698
ac244935
AM
7699 * rc.d/init.d/network: - set ipv6 forwarding only if ipv6 is
7700 enabled
ec8b15cb 7701
03e40ed6 77022000-02-18 17:59 +0000 [r644] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ec8b15cb 7703
ac244935
AM
7704 * rc.d/init.d/functions: - translations for DONE etc are always
7705 taken from rc-scripts.mo
ec8b15cb 7706
cb0c01df 77072000-02-18 12:37 +0000 [r643] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7708
ac244935 7709 * rc.d/rc.shutdown: - typo
ec8b15cb 7710
cb0c01df 77112000-02-18 10:42 +0000 [r642] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7712
ac244935 7713 * rc.d/rc.shutdown: s/LANG/LC_ALL/ in umount
ec8b15cb 7714
cb0c01df 77152000-02-18 10:37 +0000 [r641] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7716
ac244935
AM
7717 * rc.d/rc.shutdown: - fix ummounting -- locale & /usr problem --
7718 devfs ready
ec8b15cb 7719
cb0c01df 77202000-02-18 09:13 +0000 [r640] Artur Frysiak <wiget/at/pld-linux.org>
ec8b15cb 7721
ac244935 7722 * rc.d/rc.sysinit: - run devfsd before all
ec8b15cb 7723
cb0c01df 77242000-02-18 08:35 +0000 [r639] Bartosz Waszak <waszi/at/pld-linux.org>
ec8b15cb 7725
b30f8040 7726 * sysconfig/system, rc.d/rc.sysinit: - added devfsd support
ec8b15cb 7727
03e40ed6 77282000-02-17 10:59 +0000 [r638] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ec8b15cb 7729
4ca37ca2 7730 * rc.d/rc.sysinit, po/pl.po: - print space as last char in prompt
ec8b15cb 7731
03e40ed6 77322000-02-10 10:31 +0000 [r637] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
7733
7734 * sysconfig/system, rc.d/rc.sysinit: - running depmod is now
7735 configurable
7736
03e40ed6 77372000-02-08 15:49 +0000 [r636] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
7738
7739 * rc-scripts.spec.in: - removed bogus defattr
7740
03e40ed6 77412000-02-03 11:50 +0000 [r632-635] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
7742
7743 * rc.d/init.d/single: - cleanups
7744
b30f8040
AM
7745 * sysconfig/network, rc.d/init.d/network,
7746 rc.d/init.d/functions.network: - router discovery daemon support
ac244935
AM
7747
7748 * rc.d/init.d/functions: - functions run_cmd() and daemon() are
7749 returning proper values now
7750
7751 * rc.d/rc.shutdown: - new (better) unmounting procedure from
7752 initscripts - cleanups
7753
03e40ed6 77542000-01-31 14:30 +0000 [r628-631] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 7755
b30f8040 7756 * rc.d/init.d/functions, rc-scripts.spec.in, autogen.sh: - fixes
ac244935
AM
7757 and updates
7758
7759 * NEWS: - translate to english (update)
7760
4ca37ca2 7761 * po/pl.po, rc.d/rc.sysinit: - nls cant handle special characters
ac244935
AM
7762 such as '\n' - workaround this
7763
7764 * rc.d/init.d/functions.network: - avoid errors when lo interface
7765 is down
7766
d23f8bf7 77672000-01-05 01:18 +0000 [r627] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7768
7769 * rc.d/rc.sysinit: - mout procsf before all.
7770
03e40ed6 77712000-01-04 17:23 +0000 [r626] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
7772
7773 * configure.in, sysconfig/system, rc.d/rc, rc.d/rc.sysinit: -
7774 version 0.1.4 - added RUN_LDCONFIG variable to
7775 /etc/sysconfig/system, now it's possible to turn off/on
7776 ld.so.cache regeneration upon startup
7777
cb0c01df 77781999-12-30 12:11 +0000 [r624-625] Jacek Konieczny <jajcus/at/pld-linux.org>
ac244935
AM
7779
7780 * rc.d/rc: - send messages to /dev/console (which can be serial
7781 console) instead of virtual terminal
7782
b30f8040 7783 * rc.d/init.d/network, rc.d/init.d/functions.network: - support for
ac244935
AM
7784 "any/none" routes in /etc/sysconfig/statig routes --- these may
7785 be used for unreachable or blackhole routes
7786
cb0c01df 77871999-12-30 12:01 +0000 [r623] Jacek Konieczny <jajcus/at/pld-linux.org>
ac244935
AM
7788
7789 * doc/sysconfig.docb: - updates in static-routes description
7790
cb0c01df 77911999-12-27 23:38 +0000 [r622] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
7792
7793 * sysconfig/network-scripts/tnldown: - fix typos
7794
cb0c01df 77951999-12-20 19:36 +0000 [r621] Jacek Konieczny <jajcus/at/pld-linux.org>
ac244935
AM
7796
7797 * sysconfig/network-scripts/ifdown: - ifdown should now work for
7798 user-controled interfaces
7799
d23f8bf7 78001999-12-20 10:28 +0000 [r620] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7801
7802 * rc.d/rc.sysinit: - reformated.
7803
cb0c01df 78041999-12-19 16:07 +0000 [r617-619] Jacek Konieczny <jajcus/at/pld-linux.org>
ac244935
AM
7805
7806 * sysconfig/network-scripts/ifup-post: - Use IPv4 address for
7807 setting hostname (or there will be no hostname on DHCP-configured
7808 hosts)
7809
7810 * sysconfig/network-scripts/ifup: - usernetctl is now in /sbin -
7811 OTHERSCRIPT should be started even if no IPv4 address is given
7812 (PPP won't work otherwise) - IPv6 link-local addresses are added
7813 by kernel. We shouldn't do it again
7814
7815 * sysconfig/network-scripts/ifdown: - usernetclt is now in /sbin -
7816 OTHERSCRIPT should be astarted even if no IPv4 address is given
7817
cb0c01df 78181999-12-19 15:58 +0000 [r616] Jacek Konieczny <jajcus/at/pld-linux.org>
ac244935
AM
7819
7820 * src/usernetctl.c: - search for ifcfg-* files in
7821 /etc/sysconfig/interfaces - ifup and ifdown are now only in /sbin
7822
cb0c01df 78231999-12-19 15:54 +0000 [r615] Jacek Konieczny <jajcus/at/pld-linux.org>
ac244935
AM
7824
7825 * src/.cvsignore: - more ignores
7826
d23f8bf7 78271999-12-18 19:51 +0000 [r613-614] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7828
7829 * configure.in: - release 0.1.3.
7830
7831 * src/Makefile.am: - added missing shvar.h to ppp_watch_SOURCES.
7832
d23f8bf7 78331999-12-18 16:43 +0000 [r612] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7834
7835 * doc/Makefile.am: - updated man_MANS man pages file list.
7836
d23f8bf7 78371999-12-18 16:26 +0000 [r610-611] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7838
7839 * po/pl.po: - s/ZDECHL/ZGINAL/.
7840
7841 * sysconfig/network-scripts/ifup-routes: - replace: grep "^$1 " to:
7842 grep "^$1[[:blank:]]" on finding static routes entries for
7843 specified interface. This allow place also tab character after
7844 interface name.
7845
03e40ed6 78461999-12-15 18:41 +0000 [r608-609] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
7847
7848 * src/consoletype.c (added): - one more source file
7849
b30f8040 7850 * src/usleep.c, sysconfig/network-scripts/tnldown,
4ca37ca2
JR
7851 sysconfig/network-scripts/ifdown, doc/consoletype.1 (added),
7852 src/ppp-watch.c (added), rc.d/init.d/functions.network,
7853 src/initlog.c, doc/ppp-watch.8 (added), src/doexec.c,
7854 src/initlog.conf (added), rc.d/init.d/allowlogin,
537d7646
AM
7855 rc.d/init.d/functions, sysconfig/network-scripts/tnlup,
7856 sysconfig/network-scripts/ifup, src/process.c,
7857 rc-scripts.spec.in, lang.sh, rc.d/rc.sysinit, src/shvar.c
7858 (added), src/testd.c, doc/usernetctl.1 (removed), lang.csh,
7859 src/getkey.c (added), src/Makefile.am, src/shvar.h (added),
b30f8040
AM
7860 src/usernetctl.c, doc/usleep.1, doc/usernetctl.8 (added),
7861 rc.d/init.d/network: - fixed lang.csh - we use -a instead && -
4ca37ca2
JR
7862 updated few programs in src directory - fixed starting network
7863 when none of ifcfg-* file exist - write nice logo at startup -
7864 fixed problem with translated deltext() function
ac244935 7865
03e40ed6 78661999-12-11 12:45 +0000 [r607] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
7867
7868 * AUTHORS: - added Jacek Konieczny
7869
d23f8bf7 78701999-12-09 12:31 +0000 [r606] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7871
7872 * rc.d/rc.sysinit: - added including /etc/rc.d/rc.modules for
7873 loading modules before starting all services and initializing
7874 raid deveces.
7875
d23f8bf7 78761999-12-02 21:44 +0000 [r605] elephant <elephant/at/pld-linux.org>
ac244935
AM
7877
7878 * rc.d/init.d/functions: - corrected e-mail of mine
7879
d23f8bf7 78801999-12-02 10:38 +0000 [r604] kloczek <kloczek/at/pld-linux.org>
ac244935 7881
4ca37ca2 7882 * rc.d/init.d/random, rc.d/init.d/single, rc.d/init.d/network: -
ac244935
AM
7883 chkconfig field is back (without this upgrade from initscripts to
7884 rc-scripts fails).
7885
cb0c01df 78861999-11-26 16:31 +0000 [r603] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
7887
7888 * rc.d/init.d/functions: - process /etc/sysconfig/system (fix
7889 BR#110)
7890
cb0c01df 78911999-11-16 14:54 +0000 [r602] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
7892
7893 * sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown:
7894 - fixes
7895
d23f8bf7 78961999-11-16 11:28 +0000 [r601] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7897
7898 * sysconfig/network-scripts/ifup-post: - reformated.
7899
d23f8bf7 79001999-11-16 01:34 +0000 [r599-600] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7901
7902 * rc.d/init.d/functions.network: - reformated text.
7903
7904 * po/pl.po: - s/Zapis ziarna losowego/Zapisanie podstawy generatora
7905 losoweg/ - other cleanups.
7906
cb0c01df 79071999-11-15 23:17 +0000 [r598] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
7908
7909 * po/pl.po: - updated
7910
d23f8bf7 79111999-11-15 01:21 +0000 [r597] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7912
7913 * sysconfig/i18n: - s/pl/pl_PL/.
7914
d23f8bf7 79151999-11-14 07:55 +0000 [r595-596] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7916
7917 * configure.in: - new version 1.1.2.
7918
7919 * sysconfig/network-scripts/ifup: - s/DEVICEFULLNAME/
7920
d23f8bf7 79211999-11-09 00:12 +0000 [r594] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7922
7923 * rc.d/rc.sysinit: - removed "chmod 0664 /var/log/wtmpx" (this is
7924 task for SysVinit %post).
7925
d23f8bf7 79261999-11-07 14:00 +0000 [r593] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7927
7928 * rc.d/init.d/functions.network: - fixed BR#103 (s#==#=).
7929
cb0c01df 79301999-11-06 00:25 +0000 [r591-592] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 7931
b30f8040 7932 * sysconfig/network-scripts/tnlup, sysconfig/network-scripts/ifup,
ac244935 7933 sysconfig/network-scripts/tnldown,
b30f8040 7934 sysconfig/network-scripts/ifdown: - small fixes
4ca37ca2
JR
7935
7936 * sysconfig/network-scripts/tnlup, sysconfig/network-scripts/ifup,
7937 sysconfig/network-scripts/tnldown,
7938 sysconfig/network-scripts/ifdown, rc.d/init.d/functions.network:
7939 - now realy handle ifup <dev>
ac244935 7940
cb0c01df 79411999-10-27 12:09 +0000 [r590] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
7942
7943 * rc.d/init.d/functions: - fix nls() function
7944
d23f8bf7 79451999-10-27 05:46 +0000 [r588-589] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7946
7947 * configure.in: - new bersion 0.1.1.
7948
7949 * rc.d/rc.sysinit: - more fixes for displaing messages on
7950 initializing raid devices.
7951
d23f8bf7 79521999-10-27 03:12 +0000 [r586-587] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7953
7954 * rc-scripts.spec.in: - reorder in %files.
7955
7956 * rc.d/rc.sysinit: - started instead busy on staring initialize
7957 raid dev.
7958
d23f8bf7 79591999-10-27 02:26 +0000 [r585] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7960
7961 * rc-scripts.spec.in: - added Requires: e2fsprogs > = 1.15.
7962
d23f8bf7 79631999-10-27 02:20 +0000 [r584] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7964
7965 * rc.d/rc.sysinit: - added -C to fsck parameters (display progres
7966 bar), - added support for new raidtools 0.90 utilities on
7967 ininitialize raid devices.
7968
cb0c01df 79691999-10-23 08:13 +0000 [r583] Bartosz Waszak <waszi/at/pld-linux.org>
ac244935
AM
7970
7971 * rc.d/init.d/network: /etc/rc.d/init.d/functions.network ->
7972 /etc/sysconfig/network-scripts/.functions
7973
d23f8bf7 79741999-10-22 11:43 +0000 [r582] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
7975
7976 * rc.d/init.d/functions.network: - fix: check and get
7977 /etc/sysconfig/interfaces/ifcfg-$CONFIG instead
7978 /etc/sysconfig/interfaces/$CONFIG in source_config().
7979
03e40ed6 79801999-10-17 09:34 +0000 [r581] Rafał Kleger-Rudomin <klakier/at/pld-linux.org>
ac244935 7981
b30f8040
AM
7982 * doc/polski.dsl (added), doc/sysconfig.docb (added), doc/make-html
7983 (added), doc/rc-scripts.docb (added): Przykład tworzenia
7984 pojedynczego reference entry z użyciem docbooka Właściwym plikiem
7985 jest sysconfig.docb
ac244935 7986
cb0c01df 79871999-10-14 15:59 +0000 [r580] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
7988
7989 * rc-scripts.spec.in: - fixed permision to %%doc
7990
cb0c01df 79911999-10-14 09:00 +0000 [r579] Bartosz Waszak <waszi/at/pld-linux.org>
ac244935
AM
7992
7993 * rc.d/init.d/Makefile.am: - small fixes
7994
d23f8bf7 79951999-10-13 21:28 +0000 [r578] kloczek <kloczek/at/pld-linux.org>
ac244935 7996
b30f8040 7997 * sysconfig/network-scripts/ifdown,
537d7646 7998 sysconfig/network-scripts/ifup-post,
ac244935
AM
7999 sysconfig/network-scripts/ifdown-post,
8000 sysconfig/network-scripts/ifup-sl,
8001 sysconfig/network-scripts/ifup-ppp,
a2ee7529
JR
8002 sysconfig/network-scripts/ifup-ipx, rc.d/init.d/Makefile.am,
8003 sysconfig/network-scripts/ifdown-sl,
8004 sysconfig/network-scripts/ifup-aliases,
b30f8040
AM
8005 sysconfig/network-scripts/tnlup,
8006 sysconfig/network-scripts/ifdown-ppp,
8007 sysconfig/network-scripts/ifup, rc-scripts.spec.in,
8008 sysconfig/network-scripts/ifup-plip,
8009 sysconfig/network-scripts/tnldown: -
ac244935
AM
8010 /etc/rc.d/init.d//network.functions moved to
8011 /etc/sysconfig/network-scripts/.functions.
8012
03e40ed6 80131999-10-13 17:35 +0000 [r577] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
8014
8015 * rc-scripts.spec.in: - added %config(noreplace) %verify(not size
8016 mtime md5) rc.local
8017
03e40ed6 80181999-10-13 16:56 +0000 [r576] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
8019
8020 * rc-scripts.spec.in: - typo
8021
03e40ed6 80221999-10-13 16:51 +0000 [r575] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
8023
8024 * rc.d/init.d/Makefile.am: - removed nfsfs and netfs
8025
03e40ed6 80261999-10-13 16:37 +0000 [r574] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
8027
8028 * rc.d/rc.shutdown (added), rc.d/rc, rc.d/rc.sysinit,
8029 rc.d/Makefile.am: - merged halt,reboot and shutdwn into
8030 rc.shutdown - moved ldconfig to the end of system startup
8031
03e40ed6 80321999-10-13 16:32 +0000 [r573] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
8033
8034 * configure.in: - 0.1.0
8035
03e40ed6 80361999-10-13 16:18 +0000 [r572] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
8037
8038 * rc-scripts.spec.in: - removed use of chkconfig - make rc?.d/{S,K}
8039 links by hand
8040
03e40ed6 80411999-10-13 16:11 +0000 [r571] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935 8042
b30f8040
AM
8043 * rc.d/init.d/single, rc.d/init.d/killall, rc.d/init.d/allowlogin,
8044 rc.d/init.d/halt (removed), rc.d/init.d/Makefile.am,
8045 rc.d/init.d/network, rc.d/init.d/reboot (removed),
8046 rc.d/init.d/shutdwn (removed), rc.d/init.d/random: - removed
8047 usage of chkconfig
ac244935 8048
03e40ed6 80491999-10-13 16:04 +0000 [r570] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
8050
8051 * rc.d/init.d/netfs (removed): - these should be from appropriate
8052 *mount packages (or NFS daemons)
8053
03e40ed6 80541999-10-13 15:56 +0000 [r569] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
8055
8056 * rc.d/init.d/nfsfs (removed): - obsoleted by netfs
8057
cb0c01df 80581999-10-13 09:06 +0000 [r568] Bartosz Waszak <waszi/at/pld-linux.org>
ac244935
AM
8059
8060 * rc.d/rc.sysinit: - conf.modules -> modules.conf needed by new
8061 modutils
8062
03e40ed6 80631999-10-12 14:09 +0000 [r567] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
8064
8065 * configure.in: - version 0.0.12 - halt, reboot and shutwdn merged
8066 into rc.shutdown - moved ldconfig at the end of rc system
8067
d23f8bf7 80681999-10-07 00:49 +0000 [r566] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8069
8070 * doc/net-scripts.txt: - updated partialy documentation.
8071
d23f8bf7 80721999-10-06 16:52 +0000 [r565] kloczek <kloczek/at/pld-linux.org>
ac244935 8073
b30f8040
AM
8074 * rc.d/init.d/network, sysconfig/network-scripts/ifdown-sl,
8075 sysconfig/network-scripts/tnlup, sysconfig/network-scripts/ifup,
8076 sysconfig/network-scripts/tnldown,
537d7646
AM
8077 sysconfig/network-scripts/ifdown,
8078 sysconfig/network-scripts/ifup-post, rc.d/rc,
4ca37ca2
JR
8079 rc.d/init.d/functions.network, rc.d/rc.sysinit,
8080 sysconfig/network-scripts/ifup-sl, rc.d/init.d/allowlogin,
b30f8040
AM
8081 rc.d/init.d/functions: - remove bashizm in using test ("="
8082 instead "==").
ac244935 8083
cb0c01df 80841999-09-28 16:17 +0000 [r562-564] Jacek Konieczny <jajcus/at/pld-linux.org>
ac244935 8085
b30f8040
AM
8086 * sysconfig/network-scripts/ifup-ppp,
8087 sysconfig/network-scripts/ifup-ipx,
a2ee7529
JR
8088 sysconfig/network-scripts/ifdown-sl,
8089 sysconfig/network-scripts/ifup-aliases,
8090 sysconfig/network-scripts/ifdown-ppp,
4ca37ca2
JR
8091 sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown,
8092 sysconfig/network-scripts/ifup-post,
b30f8040 8093 sysconfig/network-scripts/ifdown-post: - support for getting
4ca37ca2 8094 interface configuration from LDAP
ac244935
AM
8095
8096 * rc.d/init.d/network: - support for loading interface
8097 configuration from LDAP
8098
8099 * rc.d/init.d/functions.network: - functions for getting interfaces
8100 and aliases lists from LDAP added - fixed getting interface info
8101 from LDAP
8102
d23f8bf7 81031999-09-28 14:43 +0000 [r560-561] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8104
8105 * configure.in: - release version 0.0.11
8106
8107 * po/pl.po: - updated pl translation.
8108
d23f8bf7 81091999-09-28 14:24 +0000 [r558-559] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8110
8111 * rc.d/rc: - fix: print "Entering" instead "Leaving" on entering in
8112 runlevel.
8113
8114 * rc.d/rc.sysinit: - busy() instead started() on bigining
8115 initialize RAID.
8116
d23f8bf7 81171999-09-28 14:04 +0000 [r556-557] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8118
8119 * rc.d/rc.sysinit: - print 'fail' status on on failing initialize
8120 raid and 'done' on corect initialize raid.
8121
8122 * rc.d/init.d/functions.network: - fixes.
8123
d23f8bf7 81241999-09-28 13:17 +0000 [r555] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8125
8126 * rc.d/init.d/shutdwn: - fix raid deintialization: deinitialize
8127 only active devices (removed also using grep in getting active md
8128 devices list).
8129
d23f8bf7 81301999-09-28 12:48 +0000 [r553-554] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8131
8132 * rc.d/init.d/functions.network: - rearanged text.
8133
8134 * rc.d/init.d/functions.network: - fixed bug on checking is file
8135 with interface description exist, - removed getting dummy code
8136 $PARENTCONFIG (this afects net interfaces LDAP description).
8137
cb0c01df 81381999-09-27 20:02 +0000 [r552] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8139
8140 * sysconfig/network-scripts/ifup: - arp on for eth by default
8141
cb0c01df 81421999-09-27 18:31 +0000 [r551] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8143
8144 * rc.d/init.d/functions: - fixed typo
8145
cb0c01df 81461999-09-27 16:03 +0000 [r550] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8147
8148 * configure.in: - version 0.0.10
8149
cb0c01df 81501999-09-27 15:40 +0000 [r549] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8151
8152 * po/pl.po: - fixes
8153
d23f8bf7 81541999-09-27 15:31 +0000 [r547-548] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8155
8156 * po/pl.po: - typo.
8157
8158 * po/pl.po: - more translations.
8159
cb0c01df 81601999-09-27 15:14 +0000 [r545-546] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8161
8162 * po/pl.po: - sync
8163
4ca37ca2 8164 * rc.d/init.d/shutdwn, rc.d/rc.sysinit: - nls fixes
ac244935 8165
cb0c01df 81661999-09-27 15:00 +0000 [r544] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8167
8168 * po/pl.po: - small correction
8169
d23f8bf7 81701999-09-27 14:53 +0000 [r543] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8171
8172 * po/pl.po: - fixed some typos, more translations.
8173
cb0c01df 81741999-09-27 14:24 +0000 [r541-542] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8175
8176 * po/pl.po: - zmiana na formy bezosobowe - dodanie kilku nowych
03e40ed6 8177 tłumaczeń
ac244935
AM
8178
8179 * rc.d/rc.sysinit: - nls fixes
8180
03e40ed6 81811999-09-27 10:02 +0000 [r534-540] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8182
8183 * sysconfig/network: - cleanups
8184
4ca37ca2
JR
8185 * sysconfig/network-scripts/tnlup,
8186 sysconfig/network-scripts/tnldown: - nopmtudisc isn't specified
8187 by default - cleanups
ac244935
AM
8188
8189 * sysconfig/network-scripts/ifup: - checking for interface via
8190 MULTICAST setting instead of ARP setting - we are using
8191 ,,onlink'' option for tunnels
8192
8193 * rc.d/init.d/network: - more /proc/sys/net support (it can be
8194 buggy !!! testers needed) - fixed status reporting
8195
8196 * rc.d/init.d/functions: - termput cleanups - removed unnecesary
8197 pid of process checking - returns ,,died'' instead ,,failed'' in
8198 some cases - fixed nls()
8199
8200 * rc.d/init.d/allowlogin: - cleanups
8201
8202 * rc.d/init.d/functions.network: - fixed setup_nat() when
8203 /etc/sysconfig/static-nat doesn't exist - flushing instead
8204 deleting routing and addresses when down lo interface
8205
cb0c01df 82061999-09-26 14:56 +0000 [r533] Jacek Konieczny <jajcus/at/pld-linux.org>
ac244935 8207
b30f8040 8208 * sysconfig/network, rc.d/init.d/functions.network: - first step to
ac244935
AM
8209 keeping interface information in LDAP
8210
cb0c01df 82111999-09-15 21:43 +0000 [r532] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8212
8213 * rc-scripts.spec.in: - fixed typos
8214
cb0c01df 82151999-09-15 21:20 +0000 [r528-531] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 8216
4ca37ca2
JR
8217 * rc.d/init.d/allowlogin, rc.d/init.d/functions, rc.d/rc,
8218 po/.cvsignore, rc.d/rc.sysinit: - fixed nls messages - ignore
ac244935
AM
8219 autogenerated files
8220
8221 * po/rc-scripts.pot (removed): - removed autogenerated file
8222
8223 * configure.in: - added list of shell scripts
8224
8225 * makepot.pl (added): - helper scripts: extract messages from
8226 scripts and make pot file
8227
cb0c01df 82281999-09-15 21:12 +0000 [r527] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8229
8230 * po/pl.po, po/Makefile.am: - fixed `make rc-scripts.pot` - updated
8231 polish translation
8232
03e40ed6 82331999-09-15 10:35 +0000 [r526] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8234
8235 * rc.d/init.d/network: - errors from interfaces and tunnel checking
8236 > /dev/null
8237
03e40ed6 82381999-09-15 10:22 +0000 [r525] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8239
8240 * doc/Makefile.am: - removed ipchains-setup.txt
8241
03e40ed6 82421999-09-15 10:16 +0000 [r522-524] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8243
8244 * sysconfig/network-scripts/ifup: - we are adding fe80::IPv4
8245 addresses to sit interfaces _only_
8246
8247 * sysconfig/interfaces/tnlcfg-description: - added information
8248 about using tnlcfg-xxx instead of ifcfg-xxx
8249
8250 * po/pl.po: - fixed typo
8251
03e40ed6 82521999-09-13 13:37 +0000 [r521] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8253
8254 * rc.d/rc: - added test if /var/run is writable to avoid errors if
8255 it is read-only
8256
03e40ed6 82571999-09-13 13:29 +0000 [r516-520] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8258
8259 * sysconfig/i18n: - added missing cvs keyword
8260
8261 * doc/ipchains-setup.txt (removed): - removed obsolete
8262 documentation
8263
8264 * sysconfig/network-scripts/ifup,
8265 sysconfig/interfaces/ifcfg-description: - another support for
8266 IPv4 aliases via IPADDR_ALIASES variable
8267
8268 * sysconfig/network-scripts/tnlup,
8269 sysconfig/network-scripts/tnldown: - another way to set TTL or
8270 TOS to avoid 'inherit' value - cleanups in var names
8271
8272 * rc.d/init.d/network: - fixed status reporting
8273
cb0c01df 82741999-09-04 19:49 +0000 [r513-515] Bartosz Waszak <waszi/at/pld-linux.org>
ac244935
AM
8275
8276 * rc.d/init.d/shutdwn: umount -a fixed
8277
8278 * rc.d/rc.sysinit: now is rootfs on NFS compatible
8279
8280 * rc.d/Makefile.am: small fixes
8281
cb0c01df 82821999-09-03 07:54 +0000 [r512] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8283
8284 * rc.d/init.d/shutdwn: posible fix for umounting /usr
8285
cb0c01df 82861999-09-03 07:42 +0000 [r511] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8287
8288 * rc.d/init.d/functions: fix in termput()
8289
cb0c01df 82901999-09-03 07:24 +0000 [r510] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8291
8292 * rc.d/init.d/functions: termput() check for /usr/share/terminfo
8293 and tput everytime
8294
03e40ed6 82951999-09-02 12:42 +0000 [r509] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8296
8297 * rc.d/rc.init (added): - added proper rc.init version
8298
03e40ed6 82991999-09-02 12:38 +0000 [r508] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8300
b30f8040
AM
8301 * autogen.sh, NEWS, README, rc.d/initscript (removed),
8302 rc.d/Makefile.am, TODO, rc-scripts.spec.in: - updated
ac244935 8303
cb0c01df 83041999-09-02 12:38 +0000 [r507] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8305
8306 * rc.d/rc.init (removed): removed
8307
03e40ed6 83081999-09-02 12:30 +0000 [r502-506] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8309
8310 * sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown:
8311 - another way do check if IPv4/6 is specified on interface -
8312 fixed few typo
8313
b30f8040
AM
8314 * rc.d/init.d/Makefile.am, rc.d/init.d/ipchains (removed),
8315 rc.d/init.d/functions.network, rc.d/init.d/functions: - added
8316 function to setup NAT rules - modprobing ipv6.o is now done in
8317 autoclean mode - removed ipchains (this script should be in
4ca37ca2 8318 ipchains package) - better errors handling in run_cmd()
ac244935
AM
8319
8320 * sysconfig/network-scripts/tnlup: - modprobe modules in autoclean
8321 mode and report errors via syslog - added check for
8322 /lib/modules/`uname -r`/*/module_name.o
8323
8324 * sysconfig/network-scripts/ifup-sl: -load slip.o module if
8325 available (in autoclean mode)
8326
8327 * rc.d/init.d/network: - SIT tunnels are upped at the end
8328
03e40ed6 83291999-09-02 12:16 +0000 [r498-501] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8330
8331 * rc.d/rc.sysinit: - logging errors from depmod and modprobe via
8332 syslog
8333
8334 * rc.d/rc.init (added): - renamed initscript to rc.init
8335
8336 * doc/ipcalc.1: - fixed typos
8337
b30f8040
AM
8338 * src/usernetctl.c, src/ipcalc.c, src/usleep.c, src/process.c,
8339 src/netreport.c, src/initlog.c: - added casts to proper types and
ac244935
AM
8340 started NLSing
8341
cb0c01df 83421999-08-31 23:51 +0000 [r497] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8343
8344 * rc.d/init.d/network: - load /etc/ethers after interface ups.
8345
cb0c01df 83461999-08-31 23:30 +0000 [r496] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8347
8348 * rc-scripts.spec.in: - fix in make symlinks to rc.local
8349
cb0c01df 83501999-08-31 23:12 +0000 [r495] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 8351
b30f8040
AM
8352 * rc.d/rc, rc.d/init.d/functions.network, rc.d/rc.sysinit,
8353 rc.d/init.d/functions, configure.in, rc-scripts.spec.in: -
8354 version up to 0.0.9 - added printf_() equwalent to bash built-in
8355 printf() or /usr/bin/printf - changed nls() to work like printf -
8356 tput() -> termput() - changed all show bla bla; to show "bla
8357 bla"; - added symlinks to /etc/rc.d/rc.local
ac244935 8358
03e40ed6 83591999-08-31 13:59 +0000 [r494] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8360
8361 * rc.d/rc.sysinit: - fixed quotacheck calls
8362
03e40ed6 83631999-08-26 11:05 +0000 [r493] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8364
03e40ed6 8365 * TODO: - interfejs sit0 musi być podnoszony na samym końcu
ac244935 8366
d23f8bf7 83671999-08-25 14:15 +0000 [r492] mikrobi <mikrobi/at/pld-linux.org>
ac244935
AM
8368
8369 * sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown:
8370 - added DEFAULTHANDLING variable (mainly for ATM startup scripts)
8371
03e40ed6 83721999-08-20 13:39 +0000 [r490-491] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8373
8374 * rc.d/init.d/functions.network: added two nls calls
8375
8376 * rc.d/init.d/functions.network: - ipv6 addresses arn't deleted
8377 when lo device is downing (some people doesn't use IPv6, yet)
8378
03e40ed6 83791999-08-18 13:28 +0000 [r489] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8380
8381 * rc.d/rc.sysinit: fixed raid starting
8382
03e40ed6 83831999-08-16 09:38 +0000 [r488] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8384
b30f8040 8385 * TODO, rc-scripts.spec.in, rc.d/init.d/killall: killall is now
ac244935
AM
8386 chkconfig ready. updated TODO list.
8387
03e40ed6 83881999-08-14 13:18 +0000 [r485-487] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8389
8390 * sysconfig/network-scripts/ifup-sl: removed unnecesary check (via
8391 fuser)
8392
8393 * rc.d/init.d/network: removed [ -f /etc/sysconfig/interfaces/$i ]
8394 tests
8395
8396 * sysconfig/network-scripts/ifup-sl: typo
8397
03e40ed6 83981999-08-14 12:57 +0000 [r484] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8399
8400 * sysconfig/network-scripts/ifup-sl: increased sleep value after
8401 starting slattach to 2 seconds
8402
03e40ed6 84031999-08-14 12:39 +0000 [r483] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8404
8405 * rc.d/rc.sysinit: "quotaon /" removed. quota is turned on later by
8406 quotaon -a
8407
03e40ed6 84081999-08-14 12:01 +0000 [r482] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8409
4ca37ca2 8410 * sysconfig/network-scripts/tnlup, rc.d/init.d/functions.network:
ac244935
AM
8411 modprobing ipip ip_gre modules moved temporary to tnlup
8412
03e40ed6 84131999-08-14 11:56 +0000 [r481] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8414
8415 * rc-scripts.spec.in: interfaces file names must starting from
8416 "ifcfg-"
8417
03e40ed6 84181999-08-14 11:41 +0000 [r479-480] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8419
8420 * sysconfig/network-scripts/ifup-sl: fixed DIRECT_CONNECT mode (ie.
8421 for using slattach)
8422
8423 * sysconfig/network-scripts/ifup-post: now $FULLDEVNAME is passed
8424 to ifup-routes (fixed problem with duplicate routes)
8425
03e40ed6 84261999-08-14 11:25 +0000 [r478] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8427
8428 * sysconfig/network-scripts/ifup-aliases: changed path to ifup (now
8429 it's /sbin/ifup)
8430
03e40ed6 84311999-08-14 11:01 +0000 [r477] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8432
8433 * rc.d/init.d/functions: - \b\b\b\b... characters also are NLSed
8434 (this is needed when translating "DONE", "BUSY" etc.
8435
03e40ed6 84361999-08-14 10:56 +0000 [r476] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8437
4ca37ca2 8438 * sysconfig/system, rc.d/rc.sysinit: added new variable SET_SLINKS.
ac244935
AM
8439 If it set to "yes" then rc.sysinit is setting symlinks in /boot
8440 dependent on kernel version.
8441
03e40ed6 84421999-08-14 10:53 +0000 [r474-475] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8443
8444 * rc-scripts.spec.in: typo in locale path
8445
8446 * sysconfig/network-scripts/ifup: we are adding IPv4 based
8447 link-local addresses, too.
8448
03e40ed6 84491999-08-12 09:54 +0000 [r473] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8450
8451 * rc.d/init.d/network, sysconfig/network-scripts/ifup-aliases: -
8452 aliasing are upped via ifup-aliases after main device is up
8453
cb0c01df 84541999-08-09 21:05 +0000 [r472] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 8455
a2ee7529 8456 * rc.d/init.d/functions, rc.d/rc: - changed ptintf to awk
ac244935 8457
cb0c01df 84581999-08-09 20:44 +0000 [r470-471] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8459
8460 * rc-scripts.spec.in: - added Requires: /bin/gettext
8461
8462 * rc.d/init.d/shutdwn: - fix remount to ro
8463
d23f8bf7 84641999-08-09 20:20 +0000 [r468-469] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8465
8466 * sysconfig/Makefile.am: - removed ipchans and addes i18n to
8467 syscinfig files.
8468
8469 * sysconfig/ipchains (removed): - not neccessary (ip chaninc is
8470 handled by firewal-init scripts package).
8471
cb0c01df 84721999-08-09 20:00 +0000 [r467] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 8473
b30f8040 8474 * rc.d/init.d/functions, configure.in: - more locale strings - fix
ac244935
AM
8475 locale support in configure.in
8476
d23f8bf7 84771999-08-09 19:58 +0000 [r466] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8478
8479 * rc-scripts.spec.in: - added /etc/sysconfig/i18n as a %config
8480 file.
8481
d23f8bf7 84821999-08-09 19:44 +0000 [r465] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8483
8484 * configure.in: - release 0.0.8.
8485
cb0c01df 84861999-08-07 10:16 +0000 [r464] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 8487
b30f8040
AM
8488 * sysconfig/interfaces/Makefile.am, rc.d/init.d/functions,
8489 configure.in, po/Makefile.am (added), rc-scripts.spec.in,
8490 po/rc-scripts.pot, Makefile.am, rc.d/init.d/ipchains,
8491 rc.d/init.d/functions.network: - expr -> $(( )) - wstęp
8492 automake/autoconf do locale
ac244935 8493
03e40ed6 84941999-08-06 13:06 +0000 [r463] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8495
8496 * rc.d/init.d/functions.network: fixed bug with math
8497
03e40ed6 84981999-08-06 13:02 +0000 [r462] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8499
8500 * rc.d/init.d/functions.network: added return 0 to proc_net()
8501 function
8502
03e40ed6 85031999-08-06 10:25 +0000 [r461] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8504
8505 * rc.d/init.d/network: removed last change
8506
03e40ed6 85071999-08-04 16:59 +0000 [r460] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935 8508
03e40ed6
AM
8509 * rc.d/init.d/network: A BUG has been fixed! jak używacie zmiennych
8510 shella misiowie to tam _musi_ być $ na początku!
ac244935 8511
03e40ed6 85121999-08-02 14:51 +0000 [r459] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8513
8514 * rc.d/initscript (added): moved here from SysVinit package
8515
d23f8bf7 85161999-08-02 13:04 +0000 [r458] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8517
8518 * setsysfont: - reformated.
8519
d23f8bf7 85201999-08-02 12:04 +0000 [r457] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8521
8522 * rc.d/rc.sysinit: - changed group to utmp on utmpx (to be
8523 compliant with RH).
8524
03e40ed6 85251999-08-02 10:08 +0000 [r456] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8526
b30f8040
AM
8527 * sysconfig/network-scripts/ifup,
8528 sysconfig/network-scripts/ifup-post,
8529 rc.d/init.d/functions.network, rc.d/rc.sysinit, README: -
8530 poprawiony błąd "Delaying xxxx initialization." mimo poprawnej
8531 konfiguracji - tworzone są poprawne linki do
8532 /boot/System.map-version
ac244935 8533
d23f8bf7 85341999-08-01 19:26 +0000 [r455] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8535
8536 * po/.cvsignore (added): - shut files.
8537
03e40ed6 85381999-07-31 11:26 +0000 [r453-454] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8539
8540 * po/pl.po (added), po/rc-scripts.pot (added), po (added): - pot +
03e40ed6 8541 pl tłumaczenie
ac244935 8542
b30f8040
AM
8543 * rc.d/init.d/ipchains, autogen.sh, NEWS, ppp/ip-down.d/logger,
8544 sysconfig/interfaces/ifcfg-lo (removed), setsysfont,
8545 rc.d/init.d/allowlogin, sysconfig/i18n (added),
8546 sysconfig/network-scripts/ifup, configure.in,
8547 sysconfig/network-scripts/ifup-plip, rc.d/init.d/nfsfs,
8548 ppp/ip-up.d/logger, rc.d/rc.sysinit, doc-devel (removed),
8549 sysconfig/ipchains, TODO, rc.d/init.d/shutdwn,
8550 sysconfig/network-scripts/ifup-post,
8551 sysconfig/network-scripts/ifdown, rc.d/init.d/functions.network,
8552 rc.d/init.d/functions, sysconfig/network-scripts/tnlup, AUTHORS,
8553 rc-scripts.spec.in, sysconfig/system, rc.d/rc, rc.d/init.d/netfs,
8554 inittab, rc.d/init.d/random, rc.d/init.d/single,
8555 sysconfig/network, rc.d/init.d/killall,
8556 sysconfig/network-scripts/ifup-sl, rc.d/init.d/halt,
8557 rc.d/init.d/network, rc.d/init.d/reboot, INSTALL,
8558 sysconfig/network-scripts/tnldown, COPYING: - dodana obsługa
4ca37ca2
JR
8559 statycznej tablicy ARP - interfejs lo nie wymaga pliku
8560 konfiguracyjnego - dodane wsparcie dla innych języków niż
537d7646 8561 angielski (NLS) - rc.sysinit && rc ustawia odpowiednie zmienne
03e40ed6
AM
8562 potrzebne do obsługi NLS - ustawianie fontów, map już w skryptcie
8563 setsysfont - ifup && ifdown: wreszcie poprawnie działają dla
8564 interfejsów IPv6 only - dla deinicjowania sieci interfejsy
8565 sortujemy w porządku odwróconym - wykorzystujemy _wyłącznie_
8566 iproute2 (zmodyfikowane wszelkie odwołania do ifconfig lub route)
8567 - usunięte Requires: net-tools - dodane label ${FULLDEVNAME} przy
8568 deinicjowaniu interfejsów - usunięty baggins z AUTHORS - dodane
8569 COPYING (GPL) oraz standardowy plik INSTALL - dodana możliwość
8570 obsługi tłumaczeń DONE, BUSY itp o dlugości różnej od 4 liter
ac244935 8571
cb0c01df 85721999-07-29 15:09 +0000 [r452] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935
AM
8573
8574 * TODO: Zrobione. (to z ipv6)
8575
03e40ed6 85761999-07-29 13:59 +0000 [r451] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8577
8578 * sysconfig/network-scripts/tnlup, TODO,
8579 sysconfig/network-scripts/tnldown: now running tnlup/tnldown
8580 tunel is possible
8581
d23f8bf7 85821999-07-27 23:47 +0000 [r450] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8583
8584 * rc-scripts.spec.in: - added pasiing LDFLAGS="-s" to ./configure
8585 enviroment (cause stripping binaries).
8586
d23f8bf7 85871999-07-27 12:51 +0000 [r449] kloczek <kloczek/at/pld-linux.org>
ac244935 8588
03e40ed6 8589 * TODO: - dodać możliwość ustawiania statycznej tablicy arp (patrz:
ac244935 8590 man ethers arp opcja -f). Najpawdopodobniej najlepszym miescem
03e40ed6 8591 będzie punkt mię podnoszeniem lo a nastepnych interfejsów.
ac244935 8592
d23f8bf7 85931999-07-27 12:24 +0000 [r448] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8594
8595 * configure.in: - version up to 0.0.7.
8596
d23f8bf7 85971999-07-27 11:50 +0000 [r447] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8598
8599 * rc.d/rc.sysinit: - use raidadd instead raidstart during
8600 initialization RAID deveces, - added raidrun for activate md
8601 devices.
8602
cb0c01df 86031999-07-27 06:32 +0000 [r446] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 8604
03e40ed6 8605 * TODO: - rc.sysvinit działa z e2fsprogs 1.15 (testowane z LABEL=,
ac244935
AM
8606 do przetestowania UUID=)
8607
d23f8bf7 86081999-07-27 03:44 +0000 [r445] kloczek <kloczek/at/pld-linux.org>
ac244935 8609
03e40ed6
AM
8610 * TODO: - o ile to możliwe usunąć używanie awk i sed zastępować
8611 użyewaniem sh lub przynajmeniej zastępować awka sedem
ac244935 8612
d23f8bf7 86131999-07-27 03:35 +0000 [r444] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8614
8615 * rc-scripts.spec.in: - added allowlogin to inet.d scripts, - fixed
8616 typo in post, - cosmetics,
8617
d23f8bf7 86181999-07-27 03:25 +0000 [r443] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8619
8620 * rc.d/init.d/Makefile.am: - added allowlogin to init_SCRIPTS.
8621
d23f8bf7 86221999-07-27 03:11 +0000 [r442] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8623
8624 * sysconfig/network-scripts/Makefile.am: - added ifdown-post to
8625 networkscripts_SCRIPTS.
8626
d23f8bf7 86271999-07-27 02:51 +0000 [r441] kloczek <kloczek/at/pld-linux.org>
ac244935 8628
4ca37ca2 8629 * ppp/ip-down, ppp/ip-up: - chnegd "#!/bin/bash" to "#!/bin/sh".
ac244935 8630
cb0c01df 86311999-07-22 21:53 +0000 [r440] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8632
8633 * TODO: e2progs 1.15
8634
cb0c01df 86351999-07-22 21:51 +0000 [r439] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935
AM
8636
8637 * sysconfig/network-scripts/ifup: Maly hack zeby dzialaly iface
8638 tylko na ipv6. Pomijane jest wyliczanie natmaski/prefixu jak
8639 adres ipv4 nie jest zdefiniowany.
8640
d23f8bf7 86411999-07-22 15:13 +0000 [r438] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8642
8643 * configure.in: - version to 0.0.6.
8644
cb0c01df 86451999-07-22 11:11 +0000 [r437] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 8646
b30f8040 8647 * rc-scripts.spec.in, sysconfig/interfaces/Makefile.am: cleanup for
ac244935
AM
8648 release
8649
cb0c01df 86501999-07-22 10:44 +0000 [r436] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8651
8652 * TODO: uwaga do tnlup
8653
cb0c01df 86541999-07-22 10:40 +0000 [r435] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8655
8656 * TODO (added): TODO list
8657
cb0c01df 86581999-07-22 10:23 +0000 [r434] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 8659
b30f8040
AM
8660 * sysconfig/interfaces/ifcfg-description (added),
8661 sysconfig/interfaces/tnlcfg-icm,
8662 sysconfig/interfaces/ifcfg-eth0.wiget (removed),
8663 sysconfig/interfaces/tnlcfg-description (added): cleanup
ac244935 8664
cb0c01df 86651999-07-22 10:19 +0000 [r433] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8666
8667 * sysconfig/interfaces/ifcfg-lo: - added IPV6_ADDR - fixed PREFIX
8668
cb0c01df 86691999-07-22 09:09 +0000 [r432] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8670
8671 * rc-scripts.spec.in: - cleanup
8672
cb0c01df 86731999-07-22 08:46 +0000 [r431] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8674
8675 * rc.d/init.d/shutdwn: typo
8676
cb0c01df 86771999-07-21 14:30 +0000 [r430] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935
AM
8678
8679 * rc.d/init.d/network: Expresion with /usr/bin/cut replaced by one
8680 with sed ;-) now rc-scripts only need /bin to work properly.
8681
03e40ed6 86821999-07-21 13:52 +0000 [r429] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8683
8684 * rc.d/init.d/functions-ip6 (removed): obsoletes
8685
cb0c01df 86861999-07-20 09:03 +0000 [r428] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8687
8688 * rc-scripts.spec.in: rc.serial moved to setserial
8689
03e40ed6 86901999-07-15 13:43 +0000 [r427] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8691
8692 * rc.d/init.d/functions: - added >/dev/null 2>&1 to kill
8693
03e40ed6 86941999-07-15 13:29 +0000 [r426] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8695
b30f8040
AM
8696 * rc.d/init.d/functions.network, rc.d/rc.sysinit,
8697 rc.d/init.d/functions, rc.d/init.d/network: - we are using better
8698 pidofproc() from RH initscripts - removed unnecesary check in
8699 rc.sysinit - removed all obsolete functions from
ac244935
AM
8700 functions.network - finished proc_net() function (interface to
8701 /proc/sys/net)
8702
03e40ed6 87031999-07-15 13:16 +0000 [r425] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8704
8705 * rc-scripts.spec.in: requires: /bin/awk
8706
d23f8bf7 87071999-07-14 17:49 +0000 [r424] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8708
8709 * rc.d/rc.serial (removed): - moved to setserial.
8710
d23f8bf7 87111999-07-14 17:16 +0000 [r423] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
8712
8713 * rc.d/Makefile.am: - removed rc.derial.
8714
03e40ed6 87151999-07-13 13:27 +0000 [r422] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8716
8717 * AUTHORS: authors - based on ChangeLog
8718
03e40ed6 87191999-07-13 12:52 +0000 [r421] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8720
b30f8040 8721 * rc.d/init.d/functions, rc.d/rc.sysinit: - /proc is mounted before
ac244935
AM
8722 starting fsck (needed for working LABEL support is fsck) - fixed
8723 bug in show()
8724
03e40ed6 87251999-07-13 12:49 +0000 [r420] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8726
b30f8040 8727 * sysconfig/network-scripts/ifup-sl,
4ca37ca2 8728 sysconfig/interfaces/data/chat-ppp0.tpsa,
4ca37ca2 8729 sysconfig/network-scripts/ifup-aliases,
b30f8040
AM
8730 sysconfig/network-scripts/ifdown-ppp, INSTALL,
8731 sysconfig/network-scripts/tnldown, rc.d/rc.serial,
8732 sysconfig/interfaces/tnlcfg-icm, NEWS,
8733 sysconfig/interfaces/ifcfg-lo, doc/sysvinitfiles, setsysfont,
8734 sysconfig/interfaces/ifcfg-eth0.wiget,
8735 sysconfig/network-scripts/ifup, doc/sysconfig.txt,
8736 sysconfig/network-scripts/ifup-plip,
8737 sysconfig/interfaces/data/chat-ppp0.callback, ppp/ip-up,
8738 sysconfig/network-scripts/ifdown-post, rc.d/rc.sysinit, README,
8739 lang.csh, doc-devel/ogolnie, doc/net-scripts.txt,
8740 sysconfig/interfaces/ifcfg-sl0,
8741 sysconfig/network-scripts/ifup-routes,
8742 sysconfig/network-scripts/ifup-post,
8743 sysconfig/network-scripts/ifdown, Makefile.am,
bbbc0441 8744 sysconfig/interfaces/data/chat-ppp0.leased1,
b30f8040
AM
8745 rc.d/init.d/functions.network, ppp/ip-down,
8746 sysconfig/interfaces/ifcfg-ppp0.callback, doc/ipchains-setup.txt,
8747 sysconfig/network-scripts/ifup-ppp, rc.d/rc.local,
8748 sysconfig/network-scripts/ifup-ipx, rc.d/init.d/functions,
ac244935 8749 sysconfig/network-scripts/ifdown-sl,
b30f8040
AM
8750 sysconfig/network-scripts/tnlup, AUTHORS, rc-scripts.spec.in,
8751 rc.d/rc, inittab, lang.sh,
8752 sysconfig/interfaces/ifcfg-ppp0.leased1,
8753 sysconfig/interfaces/ifcfg-ppp0.leased2: massive :$
ac244935 8754
cb0c01df 87551999-07-05 10:27 +0000 [r419] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8756
8757 * rc-scripts.spec.in: Requires: procps
8758
03e40ed6 87591999-07-05 10:23 +0000 [r418] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8760
8761 * rc.d/init.d/functions: we are using printf from sh-utils package
8762 instead of cut
8763
cb0c01df 87641999-07-05 09:12 +0000 [r417] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8765
8766 * configure.in, rc-scripts.spec.in: - network-scripts moved to
8767 /etc/sysconfig
8768
cb0c01df 87691999-07-05 08:47 +0000 [r415-416] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8770
8771 * rc-scripts.spec.in: Requires: net-tools, iproute2
8772
8773 * rc-scripts.spec.in: Requires: sed
8774
cb0c01df 87751999-07-05 08:39 +0000 [r414] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8776
8777 * configure.in, rc-scripts.spec.in,
8778 sysconfig/network-scripts/Makefile.am: - skrypty sieciowe w
03e40ed6
AM
8779 network-scripts - ipchains poniechane (jak ktoś chce to niech
8780 wsadzi w oddzielny moduł) - net-scripts i rc-scripts połączone w
ac244935
AM
8781 rc-scripts
8782
03e40ed6 87831999-07-05 08:08 +0000 [r413] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8784
4ca37ca2 8785 * rc.d/rc, rc.d/init.d/functions, sysconfig/network-scripts/ifup: -
03e40ed6 8786 przesunięte inormacje `ok`, `busy` itp w nieco w prawo (więcej
ac244935
AM
8787 miejsca na komunikaty) - dodajemy takze routing IPv6 na okreslone
8788 interfejsy
8789
03e40ed6 87901999-07-03 15:09 +0000 [r410-412] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8791
8792 * sysconfig/network-scripts/ChangeLog (removed): i po tescie
8793
8794 * sysconfig/network-scripts/ifup: ip used to sed MAC address
8795
8796 * sysconfig/network-scripts/ChangeLog (added): test
8797
cb0c01df 87981999-07-02 13:21 +0000 [r409] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8799
8800 * rc-scripts.spec.in: more Requires
8801
cb0c01df 88021999-07-02 11:49 +0000 [r408] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8803
8804 * rc-scripts.spec.in: more Requires
8805
cb0c01df 88061999-07-02 11:31 +0000 [r407] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 8807
a2ee7529 8808 * src/Makefile.am, rc-scripts.spec.in: added missing files
ac244935 8809
cb0c01df 88101999-07-02 11:14 +0000 [r404-406] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8811
8812 * doc/ipcalc.1: from src
8813
8814 * doc/Makefile.am: added initlog.1
8815
b30f8040
AM
8816 * src/usernetctl.1 (removed), src/Makefile.am, src/ipcalc.1
8817 (removed), src/usleep.1 (removed), src/netreport.1 (removed),
8818 src/initlog.1 (removed), src/doexec.1 (removed): manuals in doc
ac244935 8819
03e40ed6 88201999-07-02 09:32 +0000 [r402-403] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8821
8822 * rc.d/init.d/Makefile.am, sysconfig/network-scripts/ifup: -
8823 ARPable by default
8824
b30f8040
AM
8825 * rc.d/init.d/allowlogin (added), rc.d/init.d/network-ip6.init
8826 (removed), rc.d/init.d/network, sysconfig/network-scripts/tnlup,
ac244935 8827 sysconfig/network-scripts/ifup,
537d7646
AM
8828 sysconfig/network-scripts/ifup-plip,
8829 sysconfig/network-scripts/tnldown, sysconfig/network-ip6
b30f8040
AM
8830 (removed), rc.d/rc, rc.d/rc.sysinit, sysconfig/network,
8831 sysconfig/network-ip6.conf (removed), doc-devel/ogolnie,
8832 sysconfig/interfaces/ifcfg-eth0.wiget: - obsługa multicast, arp,
8833 src - poprawka w "Delay Login" - poprawki w template
8834 ifcfg-eth0.wiget - tnlup && tnldown uwzględniają konfigurację w
8835 network - ustawianie defaulowo PROTOCOL=
ac244935 8836
cb0c01df 88371999-07-01 21:10 +0000 [r401] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 8838
b30f8040
AM
8839 * sysconfig/interfaces/Makefile.am, configure.in,
8840 rc-scripts.spec.in, sysconfig/interfaces/data/Makefile.am: now
8841 rc-scripts compile, install and make rpm correct
ac244935 8842
cb0c01df 88431999-07-01 14:37 +0000 [r400] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 8844
4ca37ca2
JR
8845 * sysconfig/interfaces/data/.cvsignore (added),
8846 sysconfig/interfaces/.cvsignore (added): ignore autogenerated
ac244935 8847
03e40ed6 88481999-06-29 16:38 +0000 [r399] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8849
b30f8040
AM
8850 * sysconfig/network-scripts/ifdown, rc.d/init.d/functions.network,
8851 rc.d/init.d/functions, rc.d/init.d/network,
8852 sysconfig/network-scripts/tnlup, sysconfig/network-scripts/ifup:
a2ee7529
JR
8853 - poprawki w calcnetmask - net-tools (prawie) > /dev/null.
8854 Używamy iproute - poprawki w obsłudze aliasów (nie testowałem ale
8855 powinno być możliwe używanie aliasów typu eth0:PLD_JEST_SUPER)
ac244935 8856
d23f8bf7 88571999-06-28 20:05 +0000 [r397-398] kloczek <kloczek/at/pld-linux.org>
ac244935 8858
b30f8040
AM
8859 * sysconfig/interfaces/Makefile.am (added),
8860 sysconfig/interfaces/data/Makefile.am (added): - template
8861 Makefile.am.
ac244935
AM
8862
8863 * configure.in: - added missing "\".
8864
cb0c01df 88651999-06-28 15:39 +0000 [r395-396] Artur Frysiak <wiget/at/pld-linux.org>
ac244935
AM
8866
8867 * src/Makefile (removed): Autogenerated
8868
b30f8040
AM
8869 * Makefile.am, sysconfig/network-scripts/Makefile.am,
8870 sysconfig/Makefile.am, rc.d/init.d/Makefile.am, src/Makefile,
8871 configure.in, rc-scripts.spec.in: first try to sync Makefile.am
ac244935 8872
03e40ed6 88731999-06-28 14:30 +0000 [r394] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8874
b30f8040
AM
8875 * sysconfig/interfaces/data (added),
8876 sysconfig/interfaces/data/chat-ppp0.tpsa (added),
8877 sysconfig/network-scripts/chat-ppp0.tpsa (removed),
ac244935
AM
8878 sysconfig/interfaces/data/chat-ppp0.callback (added),
8879 sysconfig/interfaces/data/chat-ppp0.leased1 (added),
8880 sysconfig/network-scripts/chat-ppp0.callback (removed),
b30f8040
AM
8881 sysconfig/network-scripts/chat-ppp0.leased1 (removed): moved
8882 chat*
ac244935 8883
03e40ed6 88841999-06-28 13:12 +0000 [r393] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8885
03e40ed6 8886 * sysconfig/network-scripts/tnlup: wszędzie ${}
ac244935 8887
03e40ed6 88881999-06-28 13:07 +0000 [r392] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8889
b30f8040
AM
8890 * rc.d/init.d/functions.network, sysconfig/static-nat (added),
8891 sysconfig/network-scripts/ifup-tnl (removed),
8892 rc.d/init.d/tunnels-ip6.init (removed), src/ipcalc.c,
8893 sysconfig/network-scripts/ifdown-tnl (removed),
a2ee7529
JR
8894 rc.d/init.d/network, sysconfig/network-scripts/ifup-routes,
8895 sysconfig/network-scripts/tnlup (added),
8896 sysconfig/network-scripts/ifup,
4ca37ca2 8897 sysconfig/network-scripts/ifdhcpc-done (removed),
b30f8040
AM
8898 doc/sysconfig.txt, sysconfig/network-scripts/tnldown (added): -
8899 zmiana syntaxy dla routingu statycznego - if{up,down}-tnl ->
8900 tnl{up,down} - poprawki dotyczące PREFIX - tunnels-ip6.init,
8901 ifdhcpc-done - zbędne (zastąpione przez inne narzędzia)
ac244935 8902
cb0c01df 89031999-06-27 18:48 +0000 [r391] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935
AM
8904
8905 * rc.d/init.d/functions.network: Added function to calculate
8906 netmask from prefix
8907
03e40ed6 89081999-06-27 18:26 +0000 [r390] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8909
8910 * doc-devel/ogolnie: removed 2 config files
8911
03e40ed6 89121999-06-27 18:14 +0000 [r388-389] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8913
8914 * rc.d/init.d/network: tunnels
8915
b30f8040 8916 * sysconfig/interfaces/ifcfg-lo, doc/net-scripts.txt,
ac244935
AM
8917 sysconfig/interfaces/ifcfg-ppp0.leased1,
8918 sysconfig/interfaces/ifcfg-ppp0.leased2,
a2ee7529 8919 sysconfig/interfaces/ifcfg-eth0.wiget,
b30f8040
AM
8920 sysconfig/network-scripts/ifup,
8921 sysconfig/network-scripts/ifup-plip: NETMASK= is obsoletes
8922 (instead we use PREFIX=)
ac244935 8923
03e40ed6 89241999-06-27 17:34 +0000 [r387] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8925
8926 * src/ipcalc.1, src/ipcalc.c: PREFIX instead NETMASK in --prefix
8927 option
8928
03e40ed6 89291999-06-27 17:25 +0000 [r384-386] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8930
8931 * rc.d/init.d/functions.network: poprawki
8932
8933 * rc.d/init.d/functions.network: poprawki
8934
8935 * rc.d/init.d/functions.network: poprawki
8936
03e40ed6 89371999-06-27 17:11 +0000 [r383] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8938
8939 * rc.d/init.d/functions.network: typo
8940
cb0c01df 89411999-06-27 17:00 +0000 [r382] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935
AM
8942
8943 * rc.d/init.d/functions.network: Added function for calulating
8944 network prefix.
8945
03e40ed6 89461999-06-27 16:06 +0000 [r381] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8947
8948 * sysconfig/network-scripts/ifup: small poprawken
8949
03e40ed6 89501999-06-27 15:30 +0000 [r380] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8951
4ca37ca2 8952 * src/ipcalc.c, src/ipcalc.1: - added support for short netmask
ac244935
AM
8953 style (/24 etc)
8954
03e40ed6 89551999-06-27 14:42 +0000 [r379] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8956
8957 * sysconfig/interfaces/ifcfg-eth0.wiget (added): readed
8958
03e40ed6 89591999-06-27 14:27 +0000 [r378] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8960
a2ee7529 8961 * sysconfig/interfaces/tnlcfg-icm, rc.d/rc.sysinit,
ac244935
AM
8962 sysconfig/network-scripts/ifdown-post, sysconfig/tunnels-ip6.conf
8963 (removed), sysconfig/network-scripts/ifup-tnl (added),
8964 sysconfig/network-scripts/ifup-sl,
8965 sysconfig/network-scripts/ifup-ppp,
8966 sysconfig/network-scripts/ifdown-tnl (added),
a2ee7529
JR
8967 sysconfig/network-scripts/ifup-ipx,
8968 sysconfig/network-scripts/ifdown-ppp,
8969 sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown,
8970 sysconfig/network-scripts/ifup-post: - używamy pumpa do
03e40ed6 8971 bootp/dhcpd - dodano ifup-tnl && ifdown-tnl - obsługa tuneli
ac244935 8972 ipip, sit, gre (ipxip niezrobiona jeszcze) - tunnels-ip6.conf -
03e40ed6 8973 zbędne (tunele są konfigurowane w stylu SySV) - drobne poprawki
ac244935 8974
03e40ed6 89751999-06-23 17:14 +0000 [r377] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
8976
8977 * sysconfig/network-scripts/ifcfg-lo (removed): removed
8978
03e40ed6 89791999-06-21 20:36 +0000 [r376] Jan Rękorajski <baggins/at/pld-linux.org>
ac244935
AM
8980
8981 * rc.d/rc.sysinit: usuwanie lockow po pam_console
8982
d23f8bf7 89831999-06-19 11:29 +0000 [r375] kloczek <kloczek/at/pld-linux.org>
ac244935 8984
b30f8040
AM
8985 * rc.d/init.d/killall, rc.d/init.d/functions, inputrc (removed),
8986 rc.d/init.d/shutdwn, Makefile.am, autogen.sh, rc.d/rc.sysinit,
8987 rc.d/init.d/single: - removed inputrc (it must be in readline), -
8988 reformatings, - removed processing doc in Makefile.am and
a2ee7529 8989 autogen.sh.
ac244935 8990
03e40ed6 89911999-06-18 19:23 +0000 [r374] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 8992
b30f8040
AM
8993 * doc/initlog.1 (added), sysconfig/interfaces/tnlcfg-icm (added),
8994 src/minilogd.c (added), src/initlog.c (added), src/loglevel.c
8995 (added), src/initlog.h (added), rc.d/init.d/functions,
8996 src/process.c (added), sysconfig/system, rc.d/init.d/netfs
8997 (added), src/initlog.1 (added), rc.d/rc.sysinit, src/process.h
8998 (added), rc.d/init.d/single, doc-devel/ogolnie (added),
a2ee7529
JR
8999 sysconfig/interfaces/ifcfg-sl0 (added), doc-devel (added),
9000 rc.d/init.d/network, src/Makefile (added),
9001 sysconfig/network-scripts/tnlcfg-icm (removed),
b30f8040 9002 rc.d/init.d/shutdwn, rc.d/rc.serial: pare zmian
ac244935 9003
03e40ed6 90041999-06-18 19:14 +0000 [r373] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935 9005
a2ee7529
JR
9006 * sysconfig/network-scripts/ifup-sl,
9007 sysconfig/network-scripts/network-functions (removed),
9008 sysconfig/network-scripts/ifcfg-ppp0.tpsa (removed),
9009 sysconfig/network-scripts/ifdown-sl,
ac244935
AM
9010 sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifdown,
9011 sysconfig/network-scripts/ifup-post,
9012 sysconfig/network-scripts/ifcfg-ppp0.callback (removed),
9013 sysconfig/network-scripts/ifcfg-ppp0.leased1 (removed),
9014 sysconfig/network-scripts/ifdown-post,
9015 sysconfig/network-scripts/ifcfg-ppp0.leased2 (removed),
9016 sysconfig/network-scripts/ifcfg-eth0.wiget (removed),
a2ee7529
JR
9017 sysconfig/network-scripts/ifcfg-eth0 (removed): *** empty log
9018 message ***
ac244935 9019
03e40ed6 90201999-06-16 17:29 +0000 [r372] Arkadiusz Miśkiewicz (alias) <misiek/at/pld-linux.org>
ac244935
AM
9021
9022 * rc.d/rc.sysinit: fixed colors
9023
d23f8bf7 90241999-06-15 18:06 +0000 [r371] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
9025
9026 * rc.d/rc.media (removed): - removed. This was (my) silly idea.
9027
d23f8bf7 90281999-06-15 14:31 +0000 [r370] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
9029
9030 * src/Makefile (removed): - autogenerated.
9031
cb0c01df 90321999-06-14 21:17 +0000 [r369] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935 9033
b30f8040
AM
9034 * rc.d/init.d/shutdwn, rc.d/init.d/functions.network (added),
9035 sysvinitfiles (removed), doc/doexec.1 (added), autogen.sh
9036 (added), NEWS (added), sysconfig/Makefile.am (added), Makefile
9037 (removed), sysconfig.txt (removed), doc/.cvsignore (added),
4ca37ca2
JR
9038 ppp/ip-up.d/Makefile.am (added),
9039 sysconfig/network-scripts/ifdown-sl, doc/netreport.1 (added),
b30f8040
AM
9040 configure.in (added), net-scripts.txt (removed), lang.sh,
9041 rc.d/rc, doc/usernetctl.1 (added), README (added),
4ca37ca2 9042 sysconfig/interfaces/ifcfg-ppp0.leased1 (added),
b30f8040
AM
9043 sysconfig/interfaces/ifcfg-ppp0.leased2 (added), doc/usleep.1
9044 (added), sysconfig/network-scripts/ifup-sl, rc.d/init.d/network,
9045 INSTALL (added), ppp/ip-down.d/Makefile.am (added),
9046 sysconfig/network-scripts/ifdown, ipchains-setup.txt (removed),
9047 sysconfig/interfaces/ifcfg-ppp0.callback (added), doc/Makefile.am
9048 (added), doc/sysvinitfiles (added),
9049 sysconfig/network-scripts/ifup-ppp, doc/sysconfig.txt (added),
9050 sysconfig/network-scripts/ifup-plip, sysconfig/system,
9051 sysconfig/network-scripts/Makefile.am (added),
9052 rc.d/init.d/single, rc.d/init.d/halt,
9053 sysconfig/network-scripts/ifup-aliases, rc.d/rc.serial,
a2ee7529 9054 sysconfig/network-scripts/ifup-post, Makefile.am (added),
b30f8040
AM
9055 .cvsignore, rc-scripts.spec (removed), rc.d/init.d/functions,
9056 rc.d/init.d/Makefile.am (added), sysconfig/network-scripts/ifup,
9057 AUTHORS (added), sysconfig/interfaces/ifcfg-ppp0.tpsa (added),
9058 lang.csh (added), sysconfig/network, rc.d/Makefile.am (added),
9059 src/Makefile.am (added), doc (added), ppp/Makefile.am (added),
9060 COPYING (added), sysconfig/interfaces/ifcfg-lo (added),
9061 doc/ipchains-setup.txt (added), rc-scripts.spec.in (added),
9062 sysconfig/interfaces (added), rc.d/rc.sysinit,
9063 doc/net-scripts.txt (added), doc/ipcalc.1 (added),
9064 rc.d/init.d/reboot, sysconfig/network-scripts/ifdown-ppp: Synced
9065 with latest from old repo
ac244935 9066
cb0c01df 90671999-06-14 21:06 +0000 [r367-368] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935
AM
9068
9069 * ipchains-setup.txt (added): now synced. (one file was missed)
9070
b30f8040
AM
9071 * rc-scripts.spec, sysconfig/ipchains (added),
9072 rc.d/init.d/functions, rc.d/init.d/network, rc.d/rc.media
4ca37ca2 9073 (added), sysconfig/system, net-scripts.txt (added),
a2ee7529
JR
9074 rc.d/init.d/ipchains (added), sysconfig/static-routes (added),
9075 rc.d/rc.sysinit, sysconfig/network-scripts/ifcfg-eth0.wiget
b30f8040 9076 (added), Makefile: synced with 0.0.5
ac244935 9077
cb0c01df 90781999-06-14 20:53 +0000 [r366] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935 9079
b30f8040
AM
9080 * rc-scripts.spec, sysconfig.txt, sysconfig/network-scripts/ifup,
9081 lang.sh, Makefile, sysconfig/network, src/testdinit, setsysfont:
9082 Synced with 0.0.4
ac244935 9083
cb0c01df 90841999-06-14 20:50 +0000 [r365] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935
AM
9085
9086 * sysconfig/network (added), sysconfig/network-scripts/ifcfg-eth0
9087 (added): now is really synced with 0.0.3
9088
cb0c01df 90891999-06-14 20:44 +0000 [r364] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935 9090
b30f8040
AM
9091 * sysconfig/network-scripts/chat-ppp0 (removed),
9092 sysconfig/network-scripts/network-functions, sysconfig.txt,
4ca37ca2
JR
9093 sysconfig/network-scripts/ifup-ppp, rc-scripts.spec,
9094 rc.d/init.d/functions, sysconfig/network-scripts/ifup-ipx,
ac244935
AM
9095 sysconfig/network-scripts/ifdown-sl, inputrc,
9096 sysconfig/network-scripts/ifup, tunnels-ip6.init (removed),
9097 sysconfig/network-scripts/ifup-plip, ppp/ip-up.d/logger,
9098 sysconfig/network-scripts/ifdown-post,
a2ee7529
JR
9099 sysconfig/network-scripts/ifup-sl, radvd.init (removed),
9100 rc.d/init.d/network, sysconfig/network-scripts/ifup-aliases,
9101 sysconfig/network-scripts/ifdhcpc-done,
9102 sysconfig/network-scripts/ifdown-ppp,
9103 sysconfig/network-scripts/ifdown,
4ca37ca2
JR
9104 sysconfig/network-scripts/ifup-post,
9105 sysconfig/network-scripts/ifcfg-ppp0 (removed),
b30f8040 9106 ppp/ip-down.d/logger: Synced with rc-scripts-0.0.3 from old repo.
ac244935 9107
cb0c01df 91081999-06-14 20:12 +0000 [r363] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935 9109
b30f8040
AM
9110 * rc-scripts.spec, rc.d/init.d/functions, rc.d/init.d/network,
9111 src/Makefile, sysconfig/system, ppp/ip-up.d/logger,
9112 rc.d/rc.sysinit, .cvsignore, Makefile, ppp/ip-down.d/logger:
9113 Synced with rc-scripts-0.0.2 from old repo.
ac244935 9114
cb0c01df 91151999-06-14 20:08 +0000 [r362] Grzegorz Stanislawski <stangrze/at/pld-linux.org>
ac244935 9116
b30f8040
AM
9117 * sysconfig/network-scripts/ifup-routes, rc.d/init.d/shutdwn
9118 (added), sysconfig/network-scripts/ifup-post,
a2ee7529
JR
9119 sysconfig/network-scripts/ifdown,
9120 sysconfig/network-scripts/chat-ppp0.callback (added),
4ca37ca2
JR
9121 sysvinitfiles (added), sysconfig/network-scripts/ifup-ppp,
9122 rc-scripts.spec (added), sysconfig.txt,
9123 sysconfig/network-scripts/ifup-ipx,
9124 sysconfig/network-scripts/ifcfg-ppp0.tpsa (added), rc.d/rc.local,
9125 rc.d/init.d/functions, sysconfig/network-scripts/ifdown-sl,
9126 sysconfig/network-scripts/ifcfg-ppp0.leased1 (added), rc.d/rc,
9127 inittab, lang.sh, sysconfig/network-scripts/ifcfg-ppp0.leased2
9128 (added), rc.d/init.d/random,
9129 sysconfig/network-scripts/chat-ppp0.leased1 (added),
9130 rc.d/init.d/single, rc.d/init.d/killall, src/usernetctl.c,
9131 sysconfig/network-scripts/ifup-sl, rc.d/init.d/halt,
9132 sysconfig/network-scripts/ifup-aliases, src/Makefile,
9133 rc.d/init.d/network, sysconfig/network-scripts/tnlcfg-icm
9134 (added), sysconfig/network-scripts/ifdown-ppp, rc.d/init.d/reboot
9135 (added), rc.d/rc.serial,
9136 sysconfig/network-scripts/ifcfg-ppp0.callback (added),
9137 sysconfig/tunnels-ip6.conf (added), Makefile,
9138 sysconfig/network-ip6.conf, rc.d/init.d/functions-ip6, inputrc
9139 (added), sysconfig/network-scripts/chat-ppp0.tpsa (added),
9140 sysconfig/network-scripts/ifup,
9141 sysconfig/network-scripts/ifup-plip, sysconfig/network-ip6,
9142 rc.d/init.d/nfsfs, rc.d/rc.sysinit,
9143 sysconfig/network-scripts/ifdown-post,
9144 rc.d/init.d/tunnels-ip6.init (added),
b30f8040 9145 rc.d/init.d/network-ip6.init (added): Synced with
a2ee7529 9146 rc-scripts-0.0.1 from old repo.
ac244935 9147
d23f8bf7 91481999-06-14 19:55 +0000 [r361] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
9149
9150 * sysconfig/system (added): - added initial main system
9151 configuration file with: -- RUN_SULOGIN_ON_ERR=yes --
9152 DEFAULT_SERVICE_RUN_NICE_LEVEL=0 -- RUN_ISAPNP=yes --
9153 PANIC_REBOOT_TIME=0 -- DELAY_LOGIN=yes -- CLEAN_TMP=yes
9154
d23f8bf7 91551999-06-14 19:31 +0000 [r360] kloczek <kloczek/at/pld-linux.org>
ac244935
AM
9156
9157 * rc.d/init.d/functions: - added suporting colors with using tput
9158 instead hardcoded term sequences.
9159
d23f8bf7 91601999-06-14 19:25 +0000 [r359] kloczek <kloczek/at/pld-linux.org>
ac244935 9161
b30f8040 9162 * ppp/ip-down.d/.cvsignore (added), ppp/.cvsignore (added),
a2ee7529
JR
9163 .cvsignore (added), sysconfig/network-scripts/.cvsignore (added),
9164 sysconfig/.cvsignore (added), rc.d/.cvsignore (added),
b30f8040
AM
9165 src/.cvsignore (added), ppp/ip-up.d/.cvsignore (added),
9166 rc.d/init.d/.cvsignore (added): - added template .cvsignore.
ac244935 9167
cb0c01df 91681999-06-14 19:22 +0000 [r357] Artur Frysiak <wiget/at/pld-linux.org>
ac244935 9169
b30f8040
AM
9170 * sysconfig/network-scripts/chat-ppp0 (added), src/usernetctl.1
9171 (added), sysconfig/network-scripts/network-functions (added),
9172 setsysfont (added), sysconfig.txt (added), rc.d/rc.local (added),
9173 src/usleep.1 (added), sysconfig/network-scripts/ifdown-sl
9174 (added), rc.d (added), src (added), rc.d/rc (added), lang.sh
9175 (added), ppp/ip-up.d/logger (added), ppp (added),
9176 sysconfig/network-scripts/ifup-sl (added), src/ipcalc.c (added),
9177 rc.d/init.d/network (added),
4ca37ca2
JR
9178 sysconfig/network-scripts/ifdhcpc-done (added),
9179 sysconfig/network-scripts/ifdown (added),
9180 sysconfig/network-scripts/ifcfg-ppp0 (added), src/doexec.c
b30f8040
AM
9181 (added), rc.d/init.d/functions-ip6 (added),
9182 sysconfig/network-scripts/ifup-ppp (added),
9183 sysconfig/network-scripts/ifup-plip (added), ppp/ip-up (added),
9184 sysconfig/network-ip6 (added), rc.d/init.d/nfsfs (added),
9185 rc.d/init.d/random (added), rc.d/init.d/single (added),
9186 src/usernetctl.c (added), rc.d/init.d/halt (added),
9187 sysconfig/network-scripts/ifup-aliases (added), sysconfig
9188 (added), sysconfig/network-scripts/ifup-routes (added),
9189 src/usleep.c (added), rc.d/rc.serial (added),
9190 sysconfig/network-scripts/ifcfg-lo (added), src/netreport.1
9191 (added), sysconfig/network-scripts/ifup-post (added), ppp/ip-up.d
9192 (added), ppp/ip-down.d/logger (added), adjtime (added),
9193 rc.d/init.d/functions (added), sysconfig/network-scripts/ifup
9194 (added), inittab (added), src/testdinit (added), ppp/ip-down.d
9195 (added), rc.d/init.d/killall (added), radvd.init (added),
9196 src/ipcalc.1 (added), sysconfig/network-scripts (added),
9197 sysconfig/network-scripts/ifup-ipx (added), tunnels-ip6.init
9198 (added), src/netreport.c (added), rc.d/rc.sysinit (added),
4ca37ca2 9199 src/testd.c (added), sysconfig/network-scripts/ifdown-post
b30f8040
AM
9200 (added), src/doexec.1 (added), / (added), src/Makefile (added),
9201 sysconfig/network-scripts/ifdown-ppp (added), rc.d/init.d
9202 (added), ppp/ip-down (added), sysconfig/network-ip6.conf (added),
9203 Makefile (added): Initial revision
ec8b15cb 9204
This page took 1.552281 seconds and 4 git commands to generate.