]> git.pld-linux.org Git - projects/rc-scripts.git/blob - TODO
remove $Id$ lines
[projects/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.
22
23 upstart:
24 +upstart_controlled --except reload
25 +
26 +# return true if service is considered "up"
27 +# with upstart, upstart is consulted
28 +# otherwise lockfile in subsys must exist
29 +is_service_up() {
30 +       use_upstart && is_upstart_running "$1" || [ -f /var/lock/subsys/"$1" ]
31 +}
32 +
33
34 from nscd.init
35
This page took 0.052734 seconds and 3 git commands to generate.