]> TLD Linux GIT Repositories - rc-scripts.git/blob - TODO
- disable lock checks (happens on LUKS2 and fails during system boot)
[rc-scripts.git] / TODO
1 Important:
2 - don't set any flags automatically; always follow user
3   suggestion (multicast, arp)
4 - merge baggins changes in atm-rc (added support for RFC1483/2684 Bridged
5   protocol)
6 - killproc() sucks and has no consistency, error reporting
7   you'll never know which side of PROCNAME you should add the --waitforname or -SIGNAL args
8   because if you put -SIGNAL at wrong side of PROGNAME it will enter infinitive loop:
9     killproc -TERM --waitforname slapd --waitfortime 300 slapd
10   if you put --waitforname at wrong side, it will just ignore them:
11     killproc slapd -TERM --waitforname slapd --waitfortime 300
12   while correct would be:
13     killproc --waitforname slapd --waitfortime 300 slapd -TERM
14 - switch to use __umount_*loop instead of own umount loop when stopping system
15 - rc-scripts won't work if /dev/console is invalid (for example I made typo when configuring serial
16   console, console=ttys1,... instead of console=ttyS1) - rc.d/rc uses /dev/console a lot
17
18 Other:
19 - maybe merge ATM rc scripts
20
21 We are waiting for suggestions.