Commit Graph

550 Commits

Author SHA1 Message Date
495690ea5e Plug some leaks 2007-09-24 09:07:00 +00:00
7a2507c52f Fix pppd metric, #193574 thanks to Martin Väth. 2007-09-24 06:57:40 +00:00
e0d06f556e Add extraopts to our usage 2007-09-21 11:52:37 +00:00
faa555efe2 No need for this convulted sed now our prefixed output is on a direct terminal again :) 2007-09-21 08:54:36 +00:00
45bd125dcc Use a pty for prefixed output instead of pipes for stdout/stderr. This
is so that programs can get information about the controlling terminal.
This change was triggered by bug #188506 where it's possible that
stdin, stdout and stderr didn't point to a terminal but ended up on one
via our pipes. Using a pty means that stdout and stderr always point to
a terminal, but we lose the ability to tell them apart.
If there is not a pty available then we use un-prefixed output as normal.
This change has also introduced the need for a signal pipe so that
SIGCHLD can exit the loop cleanly.
2007-09-21 08:49:43 +00:00
ca58877ed0 Harden startup and shutdown 2007-09-20 22:45:16 +00:00
963229dce8 whitespace 2007-09-20 11:53:10 +00:00
ccced38428 libeinfo now works out the number of columns from stdout rather than stdin, #188506. 2007-09-20 11:47:04 +00:00
c1cd1da595 Warn if file/directory mismatch 2007-09-19 17:18:43 +00:00
50ea72ef4b Allow checkown to create files too. 2007-09-19 17:08:25 +00:00
40a1beabe0 Move the error messages to the option parsing 2007-09-19 16:54:23 +00:00
b6aa1c857c Added the checkown applet based on the work by Renato Caldas, #192682
checkdir ensures that the specified files (or directories) are owned
by the current user/group or as specified on the command line. You can
optionally check permissions too.
2007-09-19 16:27:37 +00:00
a74dd430d5 Punt rc_xcalloc as nothing uses it 2007-09-19 13:55:01 +00:00
77f9015f0b /lib/rcscripts -> /lib/rc 2007-09-19 13:53:40 +00:00
987c72f12f --opts to --options 2007-09-19 11:53:35 +00:00
5248fb52fa plugin hook function is now rc_plugin_hook instead of a name based
on the name of the plugin.
2007-09-19 09:00:43 +00:00
726e754fff var no longer used 2007-09-18 17:37:35 +00:00
1996a1e032 Hide errors caused by old splash plugin for the time being 2007-09-18 16:57:39 +00:00
5ba4ad52e2 Only mount /sys if it's not mounted, #192436. 2007-09-18 15:45:15 +00:00
81c009e47d Don't be an ass - don't free the 2nd list. Instead just empty it. 2007-09-18 15:43:19 +00:00
9587d71df3 Clarify strlist_join behaviour 2007-09-18 14:18:22 +00:00
90c2291cac Whitespace 2007-09-18 14:13:16 +00:00
75b5fdff29 Match the recent api change to rc_strlist_join also. We now free the 2nd list for ease of use. 2007-09-18 14:08:56 +00:00
c8b03c96b7 API change! rc_config_env is renamed to rc_make_env and takes no argument. 2007-09-18 12:20:55 +00:00
807e4afbed Don't space separate the options 2007-09-18 12:08:04 +00:00
936dc94351 API change! rc_ls_dir, rc_get_config and rc_get_list no longer take
a starting list as a first argument. Instead, use rc_strlist_join
to append or prepend the new list to an existing list.
2007-09-18 12:04:51 +00:00
f1bba12892 API change! rc_strlist_add and friends now take char *** instead of
char ** and return a pointer to the item added instead of the new
list head. This is so we can easily tell if the item was successfully
added or not instead of iterating through the list looking for it.

list = rc_strlist_add (list, item);
becomes
rc_strlist_add (&list, item);
2007-09-18 11:36:55 +00:00
99eabdc3ba Re-work mountinfo so that we have a lot less OS specific code 2007-09-18 09:20:30 +00:00
47f21d06a0 Fix fallback configurations 2007-09-17 21:38:58 +00:00
fac4de2b46 Portability 2007-09-17 20:59:55 +00:00
cc7df1d1f8 Document the preferance of wpa_supplicant, #192828. 2007-09-17 17:44:10 +00:00
bcb85a016d BSD will need a fixed gcc for --as-needed 2007-09-12 14:32:18 +00:00
a5585487aa More --as-needed foo 2007-09-11 22:06:27 +00:00
607f2b37b1 Work better with --as-needed 2007-09-11 21:45:26 +00:00
bc6b031f2e librc should link against libeinfo too 2007-09-10 21:26:13 +00:00
2aac9fa464 revert EARLY_MOUNTS since everything in the boot runlevel depends on localmount already and anything that runs before it does not rely on things like /tmp or /var/run (and because i confused localmount with checkroot) 2007-09-09 16:49:40 +00:00
5420f22a14 add BSD SPECIFIC OPTIONS marking 2007-09-09 16:12:53 +00:00
869da3c685 only do the X lock stuff in /tmp so people can overload WIPE_TMP_DIRS for a general "wipe this directory" option. also force +t on /tmp and /var/tmp. 2007-09-09 16:08:32 +00:00
230421384a Allow people to specify a list of early mount points which will be mounted at the end of localmount so they can do tmpfs on things like /tmp #181527. 2007-09-09 16:04:40 +00:00
06ae2e5593 Allow people to specify a list of temp dirs to clean in bootmisc #191807. 2007-09-09 15:52:05 +00:00
ba4b5d5b7f Makefile in src now supports pmake as used on the BSDs. 2007-09-06 13:00:03 +00:00
d095d4d8f5 strdup -> rc_xstrdup 2007-09-06 08:59:35 +00:00
eb5b1c4c41 start-stop-daemon now works with userids correctly when a pidfile
is not specified, #191206.
2007-09-04 09:32:36 +00:00
52f7df0d0c Add --quiet to mountinfo 2007-09-03 14:02:15 +00:00
a166958537 Always attempt to mount /dev/pts when devpts is available as it may appear in some 2.4 setups. 2007-09-03 03:10:42 +00:00
2a1e0c1d8d Release rc4 2007-09-02 13:12:24 +00:00
09374583ac RC_TTY_NUMBER now defaults to 12, #190996 thanks to Pacho Ramos. 2007-09-02 13:09:34 +00:00
2d39857170 Don't use local here 2007-09-02 12:55:18 +00:00
c04af92cb4 We may not always add to the array, so re-count it afterwards 2007-09-01 00:51:41 +00:00
a9ebc7a2af Only generate dependencies for Gentoo scripts, #190547. 2007-08-31 16:21:19 +00:00