Christian Ruppert
6913f1deb6
Fix some more warnings
2012-02-12 20:37:05 +01:00
Christian Ruppert
d9dc5dc423
Use size_t instead of int
2012-02-12 02:23:04 +01:00
Christian Ruppert
8c55f1e50d
Remove unused/useless function single_user()
2012-02-11 00:24:46 +01:00
William Hubbs
0fcc6251fc
fstabinfo: add --remount option
...
This adds a --remount/-R option to fstabinfo. This new option works like
--mount, but it adds the necessary options to remount a file system
that is already mounted.
Reported-by: Piotr Karbowski <piotr.karbowski@gmail.com>
X-Gentoo-Bug: 401573
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=401573
2012-01-31 16:33:05 -06:00
William Hubbs
7da8394a8e
Complain about loading /etc/conf.d/rc
...
Openrc was quietly loading this file if it existed and this was causing
some issues, so now openrc loads the file and complains about it.
Hopefully the warning message will convince everyone to remove this file
and migrate the settings to @SYSCONFDIR@/rc.conf where they belong.
2012-01-30 13:24:54 -06:00
Christian Ruppert
2d2751c433
Do not unlink the temp. log during shutdown
...
Also ignore errors in case of EROFS (Read-Only file systems)
Reported-by: Maxim Kammerer
X-Gentoo-Bug: 401115
X-Gentoo-Bug-URL: https://bugs.gentoo.org/401115
2012-01-28 18:59:16 +01:00
Christian Ruppert
6be8a0679b
Do not loop flock()
...
There's no need to loop until flock was successfully as flock() would simply
block till a previous lock has been released.
There's more to do to fix it properly, see my comments in the patch.
Reported-by: James Le Cuirot <chewi@aura-online.co.uk>
X-Gentoo-Bug: 360013
X-Gentoo-Bug-URL: https://bugs.gentoo.org/360013
2012-01-28 16:43:54 +01:00
Christian Ruppert
7ea5c614d9
Add -W/--writable function to checkpath
...
Checkpath -W will use access(3p) to determine whether or not a path is
writable. This is more accurate than test(1p) because it also takes into
account whether or not the filesystem is mounted read-only.
Modified by William Hubbs to add the man page update.
2012-01-26 14:42:18 -06:00
Christian Ruppert
5d441dd376
Whitespace
2012-01-26 20:47:46 +01:00
Christian Ruppert
44019f6542
Add is_writable() function to check whether a path is writable or not
2012-01-26 20:46:31 +01:00
Christian Ruppert
8b4fc05ff2
Disable parallel startup in interactive mode
2012-01-24 19:41:50 +01:00
Christian Ruppert
ced60319e3
Override rc.conf options only
2012-01-24 19:41:50 +01:00
Robin H. Johnson
426b94bd69
Per the systemd tmpfiles implementation, we need to watch out for umask during initial creation of files as well as potentially changing permissions later. Also do not abort if the items exist already, per truncate rules in tmpfiles.
...
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2012-01-23 10:26:58 +00:00
Robin H. Johnson
06b8084b2c
Ensure that when -F is passed, existing files are truncated properly.
...
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2012-01-23 05:30:00 +00:00
Robin H. Johnson
e3d0fe06bd
Respin features.h usage so that we correctly test for features before we use them. Some BSD libc implementations may have one or the other flag, but not both.
...
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2012-01-23 05:26:40 +00:00
Robin H. Johnson
319f5003c6
Revert "Drop include for features.h"
...
This reverts commit 30a565f80d
.
2012-01-23 05:24:54 +00:00
William Hubbs
30a565f80d
Drop include for features.h
...
The following information is taken from the feature_test_macros man
page:
<features.h> is a Linux/glibc-specific header file. Other systems have
an analogous file, but typically with a different name. This header
file is automatically included by other header files as required: it is
not necessary to explicitly include it in order to employ feature test
macros.
Reported-by: Tibor Vago <tibor.vago@gmail.com>
X-Gentoo-Bug: 399635
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=399635
2012-01-22 14:41:47 -06:00
William Hubbs
85c90f9a1d
small style fix
2012-01-20 21:38:13 -06:00
William Hubbs
d729f9d0f2
style fixes
2012-01-16 12:11:29 -06:00
Christian Ruppert
30a56cdb46
Add "ifstopped" command to runscript
...
Signed-off-by: Christian Ruppert <idl0r@gentoo.org>
2012-01-15 02:10:35 +01:00
Christian Ruppert
14625346c0
Allow overriding of rc.conf options via kernel cmdline
...
This adds a new function that allows us to override some specific rc.conf
options via the kernel cmdline aka /proc/cmdline.
This makes esp. sense in cases where a rc_parallel enabled system has boot
issues. Simply disable rc_parallel by appending rc_parallel=no to your kernel
cmdline.
2012-01-15 01:02:11 +01:00
Christian Ruppert
c3be42006b
Rename proc_getent to rc_proc_getent and make it global
2012-01-15 01:02:11 +01:00
Robin H. Johnson
66f4305e1c
rc/checkpath: tmpfiles.d backend creation code
...
This commit provides the checkpath applet with feature parity to
systemd's tmpfiles.c create_item function.
Very similarly to the systemd function, it does NOT do any of the
cleanup work in this function.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2012-01-09 19:20:47 -08:00
Christian Ruppert
34b7632d1d
Do not exit immediately when a service has been stopped already
...
The old behaviour was to exit(EXIT_SUCCESS) in case the service has been stopped
already, even if further commands has been passed to the init script
(like zap, start).
So using for example /etc/init.d/foo stop zap start would abort immediately
after "stop" if the service has been stopped already. Though there may be cases
were we need it to proceed with the remaining commands, zap and start in this
case.
This patch fixes the behaviour to continue and proceed with the remaining
commands whenever necessary.
X-Gentoo-Bug: 371845
X-Gentoo-Bug-URL: https://bugs.gentoo.org/371845
2011-12-31 03:35:32 +01:00
Christian Ruppert
372745844b
Code style fixes
2011-12-30 16:03:24 +01:00
Christian Ruppert
0d6ae379f4
Compare stricter in proc_getent
...
The new proc_getent compares stricter so that e.g. "ro" doesn't match
root=/dev/sdaN anymore.
So it has to be either "ro" or "ro=".
2011-12-30 16:03:24 +01:00
Christian Ruppert
49e99a7393
Don't try to write the log during sysinit
...
During the sysinit and shutdown runlevels the logfile destination may be
read-only. Skip the error messages in this case.
X-Gentoo-Bug: 390645
X-Gentoo-Bug-URL: https://bugs.gentoo.org/390645
2011-12-29 13:58:08 +01:00
Christian Ruppert
8dcb7554ee
Use RC_LEVEL_SHUTDOWN
2011-12-29 03:16:53 +01:00
Christian Ruppert
b754a27f62
Remove useless rc_runlevel_get() call
...
The current runlevel will be passed to rc_logger_open() already.
2011-12-29 03:08:29 +01:00
Christian Ruppert
ec65f181ea
Don't print error when the logfile isn't writeable during shutdown
...
The logfile or its basedir may be read-only during shutdown because the
directory may be umounted or read-only remounted already. In this case we simply
skip this error.
This is related to a comment in bug 390645 but the initial bug is not fixed
through this commit.
X-Gentoo-Bug: 390645
X-Gentoo-Bug-URL: https://bugs.gentoo.org/390645
2011-12-29 02:50:24 +01:00
William Hubbs
e574b5d441
fix compile error
...
A variable used in the previous commit was actually removed in another
commit; that is why I didn't catch it.
Reported-by: Duncan < 1i5t5.duncan@cox.net>
X-Gentoo-Bug: 394369
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=394369
2011-12-11 14:33:39 -06:00
William Hubbs
5e01051c4e
Allow init scripts to be executed with a relative path
...
This was a regression that was caused by the fix for
http://bugs.gentoo.org/show_bug.cgi?id=350910 . I am reverting the commit
that we said fixed that bug and re-opening it.
Reported-By: Nathaniel <nathaniel@paust.us
X-Gentoo-Bug: 392457
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=392457
2011-12-11 01:18:08 -06:00
Mike Frysinger
453d13296d
rc: usage: do not output non-printable short options in usage
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-11-19 02:43:25 -05:00
Mike Frysinger
c21c1f1e59
rc: usage: optimize help string alignment output a little
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-11-19 02:42:41 -05:00
Mike Frysinger
c7cc685458
rc: fix style around case_RC_COMMON_GETOPT
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-11-19 02:33:11 -05:00
Mike Frysinger
ef1ff1b4f2
make shell math operations style more succulent
...
Convert the style:
var=$((${var} + 1))
to:
: $(( var += 1 ))
The latter is easier to read imo.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-11-19 02:25:36 -05:00
William Hubbs
66e99b6d63
Fix compile warning
2011-11-17 16:06:18 -06:00
William Hubbs
5b1aaf8cc8
add support for extra_stopped_commands
2011-11-16 13:56:55 -06:00
Mike Frysinger
3f2e9c4e1f
mountinfo: Do not error out if realpath fails
...
Reported-By: Dennis Schridde <devurandom@gmx.net>
X-Gentoo-Bug: 383333
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=383333
2011-11-15 15:19:55 -06:00
Mike Frysinger
16661d02e9
ssd: fix building when SYS_ioprio_set is missing
...
Older glibc's might not provide this.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-11-09 00:09:58 -05:00
William Hubbs
f46626dcfc
add auto detection for lxc
...
Reported-by: Francesco Riosa <francesco+gentoo_bugzilla@pnpitalia.it>
X-Gentoo-Bug: 384151
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=384151
2011-11-07 08:39:16 -06:00
William Hubbs
5066d40ac8
Use pattern rules instead of suffix rules
...
Rework the makefiles to use pattern rules instead of suffix rules.
This is the preferred way to write implicit rules according to the gnu
make manual.
2011-10-29 09:43:24 -05:00
Christian Ruppert
e2f1464f47
Use the real/actual path when looking for mounts
...
/proc/mounts contains real/actual paths so we should do the same in mountinfo.
2011-09-08 19:20:20 +02:00
Christian Ruppert
5df9dc1af5
Remove unused variable
2011-09-08 18:42:05 +02:00
Flex
6d5b452ef5
Do not ignore return code for custom script functions
...
X-Gentoo-Bug: 380317
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=380317
2011-09-02 11:32:30 -05:00
Diego
b71f3bd2fd
Start-stop-daemon: remove call to pam_authenticate
2011-09-01 17:08:55 -05:00
William Hubbs
4ee62c7903
Libeinfo: do not suppress ewarn() messages
...
The ewarn() function was affected by the EINFO_QUIET environment
variable which lead to warning messages being suppressed. Warnings
should not be suppressed.
Reported-by: Hanno Boeck <hanno@gentoo.org>
X-Gentoo-Bug: 380073
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=380073
2011-08-22 12:39:26 -05:00
William Hubbs
0c8bea2152
Improve processing of service directories and conf.d files
...
symbolic links should not be followed in an attempt to work out the name
of the service we are running. Also, @sysconfdir@/conf.d should be tried
as a backup directory for configuration files.
I would like to thank Robin Johnson for his input on this change.
X-Gentoo-Bug: 350910
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=350910
2011-07-31 10:00:48 -05:00
William Hubbs
370e5c775a
runscript: rename saveDir back to save to fix compile error
2011-07-26 16:58:42 -05:00
William Hubbs
07694255a4
rename save and save2 for clarity
...
The names saveDir and saveLnk seem to better define how these variables
are used.
2011-07-20 14:38:55 -05:00
Christian Ruppert
a74382d9cb
Fix rc_service_value_get() to return multiple lines as well
...
As introduced in bug 372547 using service_get_value() in the init scripts
or using rc_service_value_get() directly will only return one line.
This patch fixes it by using the new rc_getfile() function, it returns even
multiple lines. We're still using a char *, so the lines will be appended
instead of added into new element.
X-Gentoo-Bug: 372547
X-Gentoo-Bug-URL: http://bugs.gentoo.org/372547
2011-07-13 21:32:13 +02:00
Mike Frysinger
fdaf1c65cd
Add a new function, bool rc_getfile(const char *, char **, size_t *)
...
<snip>
Read the entire @file into the buffer and set @len to the
size of the buffer when finished. For C strings, this will
be strlen(buffer) + 1.
Don't forget to free the buffer afterwards!
</snip>
We also fix bug 374899 by adding this new function.
X-Gentoo-Bug: 374899
X-Gentoo-Bug-URL: http://bugs.gentoo.org/374899
2011-07-13 21:31:20 +02:00
Christian Ruppert
ef22868f36
Do not skip similar config options
...
OpenRC goes through the config and checks each option for duplicates.
Lets say we're on "rc_logger" currently and its the last option in the config
file and we previously defined rc_logger_path.
It now goes through all previous config options and compares those against the
current one "rc_logger" *but* it compares only the first N bytes, in this
case strlen("rc_logger"). So it strips the _path from "rc_logger_path" which
ends up into "rc_logger" and it compares that against the current one (also
"rc_logger"), it would then simply override the previous definition.
This patch fixes this behaviour to always compare the full option / variable
names.
2011-07-09 23:15:16 +02:00
Christian Ruppert
05e3251467
Rename rc_logger_path to rc_log_path
2011-07-06 21:16:15 +02:00
Christian Ruppert
44dc7db4f8
Improve logging
...
Add "e" (O_CLOEXEC) to all fopen() calls.
Remove system() call and replace it by fopen() and friends.
This also fixes bug 368933
X-Gentoo-Bug: 368933
X-Gentoo-Bug-URL: https://bugs.gentoo.org/368933
2011-07-05 23:42:21 +02:00
Christian Ruppert
003d4ba15b
Don't write into optarg, this also fixes a compiler warning.
2011-07-05 00:51:29 +02:00
Christian Ruppert
70a3a3cf39
Add --startas/-a back to the optstring
...
X-Gentoo-Bug: 373609
X-Gentoo-Bug-URL: https://bugs.gentoo.org/373609
2011-06-30 20:21:48 +02:00
Mike Frysinger
d0bc4f20ad
drop useless "All rights reserved" notice
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-06-29 19:46:31 -04:00
Christian Ruppert
b6766c2544
Use RC_CONF instead of the hardcoded /etc/rc.conf
2011-06-28 18:45:39 +02:00
Joe Harvell
24ba795563
Only print the deprecation warning for --chuid/-c when using it
...
The deprecation warning has been printed when using the replecement functions as
well, bug 373243.
2011-06-27 23:20:47 +02:00
Christian Ruppert
4eb37f67cf
Warn if deprecated commandline options are used for start-stop-daemon
2011-06-05 16:49:12 +02:00
Mike Frysinger
e49da2af91
clean up gitignore files
...
Rather than listing explicit object files, ignore all of them in
the whole tree.
Also ignore patch/gdb related files throughout.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-06-03 17:07:22 -04:00
Mike Frysinger
11d8b70d74
rc-update: sort "show" output
...
X-Gentoo-Bug: 367305
X-Gentoo-Bug-URL: http://bugs.gentoo.org/367305
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-05-28 12:11:37 -04:00
Mike Frysinger
227f831639
cc.mk: move debug.mk out of end Makefiles
...
Since we always want debug.mk whenever we include cc.mk, move the include
out of the Makefiles and into cc.mk itself. This also fixes an include
order bug in rc/Makefile where debug.mk is included before cc.mk and
breaks the default CFLAGS setup in cc.mk.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-05-28 12:00:34 -04:00
Mike Frysinger
fe18c7bb63
librc: tweak style: foo () -> foo()
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-05-28 11:53:29 -04:00
Mike Frysinger
f8ff4a86a3
rc: delete now unused local "i" variable
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-05-28 11:42:49 -04:00
Christian Ruppert
d59e245bc7
Fix dirname calls in runscript
...
runscript will try to get the dir and basename of a file/link in case it
contains at least one slash. This patch gives a temporary copy of the path to
the dirname() function since dirname() can modify its argument.
2011-05-23 14:23:15 -05:00
James Le Cuirot
8fcaba9a22
fix rc_service_extra_commands return value
...
If there were no extra commands, rc_service_extra_commands returned a
list containing a single empty string. This changes that to return an
empty list, which is more consistent with what you would expect.
X-Gentoo-Bug: 360013
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=360013
2011-04-27 15:27:16 -05:00
William Hubbs
04e256e3b8
fix list returned by rc_service_extra_commands
...
This function was returning the setting of the variable $opts, which is
not correct. $opts was used in baselayout-1, but it is replaced by
$extra_commands and $extra_started_commands in openrc.
This does not appear to break backward compatibility since this function
does not appear to be used anywhere in the openrc code.
Thanks to James Le Cuirot for the original patch.
X-Gentoo-Bug: 360013
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=360013
2011-04-27 14:46:59 -05:00
William Hubbs
07db27d220
typo fix
...
X-Gentoo-Bug: 217999
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=217999
2011-04-09 13:00:44 -05:00
William Hubbs
b512d0db98
new implementation of applet option
...
This reworks the implementation of the --applet option so that it is
processed in run_applets() and does not require two calls to the
getopts_long() function. It is based on code by Robin Johnson and Chris
Richards.
X-Gentoo-Bug: 351712
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=351712
2011-02-16 09:00:38 -06:00
William Hubbs
73d1a8698e
make version option common
...
This reworks the code for the version option so that it is part of the
parser loop and is a common option to all applets.
2011-02-14 18:40:05 -06:00
Mike Frysinger
c0aa27ef32
tests: filter valid parisc relocs
...
Parisc generates a few relocs against internal symbols which are OK.
X-Gentoo-Bug: 258913
X-Gentoo-Bug-URL: http://bugs.gentoo.org/258913
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-02-14 12:06:58 -05:00
William Hubbs
04379b2de9
fix symlink target
...
The target for the symlinks in ${SBINDIR} (the same directory as the rc
binary) was "rc". This is not correct; the target should be
${SBINDIR}/rc instead.
2011-02-07 02:25:00 -06:00
William Hubbs
db6d680765
rework pam, ncurses and termcap include files
...
This allows error checking inside the included files instead of either
including the appropriate file or a blank file.
Also the blank file named .mk gets removed by this change.
2011-02-04 22:30:30 -06:00
William Hubbs
19037cbd83
remove unnecessary shell calls
...
The main makefile, init.d/Makefile and src/librc/Makefile all contain
several shell calls which can be handled as make conditionals. This
switches them to conditionals.
2011-02-04 17:46:57 -06:00
Chris Richards
21c5a022af
selinux: replace symlinks with wrapper scripts
...
This needs to be done on selinux systems so the proper context can be
set for each rc applet.
X-Gentoo-Bug: 351712
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=351712
2011-01-31 14:54:02 -06:00
William Hubbs
cca7e9f7e1
use immediate evaluation for shell calls
...
This reworks the shell calls in the makefiles to use immediate
evaluation and should improve parallel building.
X-Gentoo-Bug: 289264
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=289264
2011-01-31 14:05:57 -06:00
Mike Frysinger
9ce957c3e7
librc: delete trailing newlines
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-01-17 20:05:13 -05:00
Mike Frysinger
c825a74dd1
tests: check for trailing blank newlines
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-01-17 20:04:53 -05:00
Robin H. Johnson
164b8e4e04
Document that rc_sys_v{1,2} should not be used outside of OpenRC.
2011-01-17 22:30:40 +00:00
Robin H. Johnson
de8b4855d3
Bug #351570 : Fix hidden functions visibility for rc_deptree_load_file.
2011-01-17 19:36:51 +00:00
Robin H. Johnson
f3f55f1f6d
Build cleanup: librc.funcs.hidden.list is generated by testsuite.
2011-01-17 19:34:09 +00:00
Robin H. Johnson
2b7c2b8cf1
Bug #351570 : Hidden function fixes: rc_conf_value.
...
Refactor rc_conf_value into librc for use in library context.
Also requires moving:
- rc_conf internal static
- Defines: PROFILE_ENV, SYS_WHITELIST, USR_WHITELIST, RC_PATH_PREFIX
moved to rc.h with new RC_ prefix added.
- Defines: RC_CONF, RC_CONF_OLD moved to rc.h.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2011-01-17 19:29:45 +00:00
Mike Frysinger
6e876bca13
tests: check for common style issues
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-01-17 04:49:35 -05:00
Mike Frysinger
faa2df1159
more whitespace cleanup
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-01-17 04:49:12 -05:00
Mike Frysinger
711713d664
start-stop-daemon: use termios.h rather than sys/termios.h
...
POSIX specifies termios.h, not sys/termios.h.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-01-17 04:48:13 -05:00
Robin H. Johnson
b2d0656814
Style fix: "char *foo" not "char* foo".
2011-01-17 08:46:41 +00:00
Robin H. Johnson
c0a3e25d48
Style fix: /* */ comments not // comments.
2011-01-17 08:43:40 +00:00
Robin H. Johnson
0c93f4df32
Style fix: "while (" not "while(".
2011-01-17 08:42:28 +00:00
Robin H. Johnson
b1fcf4ce9c
Style fix: "if (" not "if(".
2011-01-17 08:41:02 +00:00
Robin H. Johnson
6804edfc85
Better error checking of argc for --applet call.
2011-01-17 08:39:44 +00:00
Robin H. Johnson
bfb87f2d51
Use xstrdup for style.
2011-01-17 08:34:03 +00:00
Robin H. Johnson
e6fc30da61
Clean up all trailing whitespace in src/.
2011-01-17 08:28:43 +00:00
Robin H. Johnson
49339525a9
Bug #351712 : Implement --applet selection mode for SELinux wrappers.
...
In addition to detecting what multicall applet we want via argv[0],
provide an explicit override mode with a --applet initial argument.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2011-01-17 07:37:43 +00:00
Robin H. Johnson
b00ad439a6
Add new option -F to rc-depend tool, so that we can debug user deptree files easily.
2011-01-17 06:53:50 +00:00
Robin H. Johnson
0e90ae266a
Factor out new function rc_deptree_load_file to aid in debugging deptree files from users. Loads from a given filename instead of the hardcoded RC_DEPTREE_CACHE define.
2011-01-17 06:32:46 +00:00
Eray Aslan
66abbefd6c
bug 351160: make openrc exit codes LSB compliant
...
* status on a stopped service now has a return code of 3 (was 1)
* starting an already started service now has a return code of 0 (was 1)
* stopping an already stopped service now has a return code of 0 (was 1)
2011-01-12 19:46:11 -06:00
Robin H. Johnson
647df8cfe7
Make sure old rc_sys code never runs if the rc_sys variable exists.
...
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2011-01-05 22:33:03 -08:00
Robin H. Johnson
3d4d1ab14b
Remove broken automatic LXC subsystem detection.
...
Any system using cgroups was being detected as an LXC system. This was
triggering on OpenVZ under RHEL6 as well as the "automated per tty task
groups" as discussed on the LKML.
All LXC users should now switch to the new rc_sys variable introduced in
the previous patch.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2011-01-05 22:09:34 -08:00
Robin H. Johnson
09f990a7c8
Implement explicit selection of subsystem types.
...
- Fixes bugs #347583 , #349389 , both of which were triggered by cgroups
being detected as the LXC subsystem type.
- Makes it much easier to select "prefix" type.
- "rc -S" will now print a warning if you have not configured rc_sys in
/etc/rc.conf
- All other semantics of rc_sys are unchanged in this patch.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2011-01-05 22:09:34 -08:00
Thomas Pfaff
062223a5df
Avoid race condition in runscript (bug #319865 )
...
Under normal conditions, runscript creates one child and waits for its
termination, which is signaled by a pipe write from the SIGCHLD
sighandler.
When running killprocs however more than one SIGHCLD signal is generated, at
least on all of my amd64 boxes running on real hardware and in vmware.
When the first SIGCHLD occurs svc_exec leaves the loop and closes the pipe.
Subsequent SIGCHLDs during the close can lead to a race condition and create an
EBADF error in the pipe write (pipe is closed but the file handle is still !=
-1).
We avoid this by blocking SIGHCHLD during the pipe close.
2010-12-03 14:01:28 -06:00
Mike Frysinger
3036b44798
restore init.d pause option
2010-04-09 02:19:40 -04:00
Mike Frysinger
acc0edb040
restore old e* func output
...
Gentoo has always used the sytle:
* moo ... [ ok ]
Latest openrc now does:
* moo... [ok]
Realistically, 4 spaces out of 80 on reduced terminals doesn't make any
sort of realistic difference and it's been just fine for the last 10
years, so keep the default behavior.
2010-04-09 02:19:40 -04:00
Roy Marples
4d86d34635
Fix -s and -S.
2010-03-26 22:10:03 +00:00
Roy Marples
7271449a0c
Fix two leaks.
2010-03-17 20:37:47 +00:00
Mike Frysinger
ecf9ef49a7
random spelling fixes
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2010-01-08 22:02:51 +00:00
Roy Marples
dc3ccd8101
start-stop-daemon can now set process IO scheduling.
2009-12-14 08:47:48 +00:00
Roy Marples
509e34d425
Only allow one service to be provided by default.
...
Fixes Gentoo #293139 .
2009-11-14 08:37:05 +00:00
Roy Marples
0de1d18d41
Fix logic
2009-11-13 22:29:01 +00:00
Roy Marples
80d4ce3a11
Add a --warn option to just warn when reference file does not exist.
...
Fixes Gentoo #291894 .
2009-11-13 21:31:09 +00:00
Roy Marples
95ee39ab1c
Add support for Linux Containers, fixes #202 .
...
Patch by bug reporter.
2009-11-04 19:21:24 +00:00
Roy Marples
ac6808a73e
Regenerate version.h if necessary
2009-10-16 08:13:34 +01:00
William Hubbs
c96a015742
fix wait time for gentoo bug 288495
...
The wait time was in seconds. This patch converts it to milliseconds.
2009-10-15 20:25:01 +01:00
Roy Marples
a8f6a9b654
Add new utility and init script swclock that sets the system time based on
...
the mtime of a file. It saves the shutdown time to this file also.
This is handy for systems without a working RTC chip.
Based on an idea by Michael A. Smith <michael@smith-li.com>.
Fixes Gentoo #272073 .
2009-10-13 08:03:45 +01:00
Roy Marples
07f9be7b1c
Add pkg-config support, fixes #187 .
2009-10-08 00:20:43 +01:00
Roy Marples
42ca23b878
Don't quote opts
2009-09-21 19:05:47 +01:00
Roy Marples
3dc712e222
Allow init scripts to show their dependencies easier
2009-09-04 16:00:08 +01:00
Roy Marples
44585fea46
Add -P to start-stop-daemon to display a . for each second elapsed.
...
Fixes #197 .
2009-09-04 15:41:08 +01:00
Roy Marples
6e485bde39
Really fix --signal 0
2009-09-04 13:32:59 +01:00
Roy Marples
2ea1df634e
Fix signed error.
2009-09-04 13:24:26 +01:00
Roy Marples
7012630302
Allow any valid numeric signal and not just what we define.
2009-09-01 13:57:45 +01:00
Roy Marples
7fbb6ad427
Don't provide ourself, fixes #190
2009-07-20 19:42:15 +01:00
Roy Marples
b4104957b1
We should use -feature instead of nofeature.
...
This matches the ifconfig and Gentoo USE flag syntax and is hopefully
easier to read.
Fixes #178 .
2009-07-01 00:07:32 +01:00
Roy Marples
6abeec7430
Use rc_getline instead of assuming a fixed kernel cmdline length.
...
This is now requires as COMMAND_LINE_SIZE isn't exposed by kernel
headers anymore.
Fixes #177 .
2009-06-21 12:20:53 +01:00
Roy Marples
c3e9a7ec14
Warn about going inactive correctly.
2009-06-01 20:10:42 +01:00
Roy Marples
c0fd1b49e4
Move non compiled libraries from /lib/rc to /libexec/rc
...
OpenRC version is now stored as plaintext in /libexec/rc/version
Plugins (cursplash, splashutils) will have to be re-compiled to pickup
the new directories. State data needs to be moved from /lib/rc/init.d
to /libexec/rc/init.d as well.
2009-05-23 20:38:12 +01:00
Roy Marples
5294abe617
If already started or stopped, abort.
2009-05-17 12:29:46 +01:00
Roy Marples
b2eb9f8a83
Unset PAM environment variables if not set
2009-05-07 12:20:59 +01:00
Roy Marples
7c81f74b60
Fix compile on NetBSD
2009-05-05 16:39:59 +01:00
Roy Marples
43063ae7c2
Fix compile on NetBSD and FreeBSD
2009-05-05 10:24:21 +01:00
Roy Marples
6615eb4b68
Add runlevel stacking, #88
...
This implementation has the limitation that you cannot have a stacked
runlevel and service of the same name in a runlevel.
2009-05-02 12:26:45 +01:00
Roy Marples
e040bd77e9
Ignore test results
2009-05-02 12:18:34 +01:00
Roy Marples
658a220638
Add (c) to Copyright
2009-05-01 15:11:40 +01:00
Roy Marples
fb051bf81a
Add -i, --ifexists so that we can do this
...
rc-sercice -i foo -- restart
instead of this
rc-service -e foo && rc-service foo -- restart
2009-05-01 08:38:57 +01:00
Roy Marples
caf29a6480
Fix git versioning
2009-05-01 00:15:20 +01:00
Roy Marples
f689187966
Add -Z, --dry-run option to show which services we would start/stop
...
without actually doing so.
Fixes #151 .
2009-04-30 23:42:01 +01:00
Roy Marples
3d0e5175d8
Avoid more gcc warning about not checking return values ...
2009-04-30 19:56:43 +01:00
Roy Marples
21e45e895c
Brand with git version instead of svn
2009-04-30 19:16:31 +01:00
Juan RP
a1e40e9beb
Fix parens
2009-04-30 16:45:18 +01:00
Roy Marples
b70501ef45
Go back to git
2009-04-30 15:05:39 +01:00
Roy Marples
e0f0fc8046
Don't start services when their need dependency is broken
2009-04-28 08:29:02 +00:00
Roy Marples
94b3057571
Add the noshutdown keyword to special case the shutdown.
2009-04-27 12:04:33 +00:00
Roy Marples
338c93733d
Fix the nstop keyword.
2009-04-27 09:06:30 +00:00
Roy Marples
eaa32c75c9
Add the nostop keyword so that we don't stop the network init script by default.
2009-04-26 21:16:05 +00:00
Roy Marples
77c8f8abbb
Use /bin/bash or user shell in /etc/passwd if none set before /bin/sh.
2009-04-26 17:57:06 +00:00
Roy Marples
0feddbd815
Use kill for the pid check as it's fast.
2009-04-25 20:44:13 +00:00
Roy Marples
c07b384d82
Don't drop to sulogin by default, but make this configurable.
2009-04-24 11:49:55 +00:00
Roy Marples
bd211d534b
We should match the full variable name.
2009-04-24 11:45:48 +00:00
Roy Marples
b0ac71fe2a
Add missing show levels switch.
2009-04-24 10:23:49 +00:00
Roy Marples
9966a902ab
rc-status -c now lists services that have crashed.
...
It returns 0 if there are crashed services, otherwise 1.
This it easy to restart crashed services automatically.
More for #120 .
2009-04-24 10:17:53 +00:00
Roy Marples
5276b13926
Cast to int
2009-04-24 08:32:44 +00:00
Roy Marples
e7b35a8f15
Allow rc to start (optionally stop) crashed services, #120
2009-04-24 07:03:08 +00:00
Roy Marples
e643a7fdd5
Describe interval units
2009-04-24 06:37:29 +00:00
Roy Marples
ade85d4bd8
Improve style for KNF
2009-04-23 21:31:22 +00:00
Roy Marples
6953474655
Style
2009-04-23 20:53:24 +00:00
Roy Marples
7086df5664
Don't include hotplugged services in manual.
2009-04-23 20:27:40 +00:00
Roy Marples
7dc9c39503
Improve the service timeout code and reduce the timeout to 60 seconds.
...
Don't process any dependencies when changing runlevels and called
outside of RC otherwise we can deadlock.
2009-04-23 20:20:17 +00:00
Roy Marples
f326f688f6
Add the -i, --interpreted option.
...
This enables the code to include the daemons interpreter when matching
process name which fixes bug #164 .
Existing init scripts that rely on the old behaviour will need to be
fixed.
2009-04-22 10:45:01 +00:00
Roy Marples
ee53e6ad29
-w, --wait seconds
...
New option so you can set the number of seconds to wait for and
check the daemon is still running.
The old code that periodically polled wasn't that reliable - in this
case simpler == better.
Fixes #160
2009-04-19 18:20:49 +00:00
Roy Marples
3579663173
Don't leak the lock fd.
2009-04-18 19:54:04 +00:00
Roy Marples
657cb3a6eb
Fix compile on FreeBSD.
2009-04-18 00:57:17 +00:00
Roy Marples
c9e24a0494
Move status to runscript.sh so init scripts can override it, #159
...
Return 32 if crashed, #163
2009-04-18 00:09:03 +00:00
Roy Marples
ee54bb9372
Using fifos for locking can be error prone.
...
flocks are safer, as we only use tmpfs for our lock files.
I don't know how this works for inactive just yet though ...
2009-04-17 22:55:11 +00:00
Roy Marples
dea9e11a69
When logging, stdout isn't always a tty, which is the case for VPS
...
systems, Thanks to mwrobel - fixes #106 .
2009-04-02 23:55:19 +00:00
Roy Marples
077b2d3ba8
Report if service is not executable.
2009-02-28 14:12:19 +00:00
Roy Marples
907ca8a89f
Set errno when service does not exist better.
2009-02-28 14:12:03 +00:00
Roy Marples
f38ef00939
Fix unit test.
2009-02-23 10:43:24 +00:00
Roy Marples
749938d439
Style.
2009-02-23 09:35:57 +00:00
Roy Marples
6cc68e21cf
Fix return value for tests.
2009-02-12 10:43:30 +00:00
Roy Marples
069590d97f
Fix unmask option, thanks to douglas@openplans.org, #146
2009-02-10 23:11:17 +00:00
Roy Marples
3fc17f5966
Store the file skewed against.
2009-02-10 15:25:28 +00:00
Roy Marples
415fe87d8c
Clean up some compiler warnings.
2009-01-29 13:29:04 +00:00
Roy Marples
417a817d25
noinit makes more sense than noinitd
2009-01-18 20:02:50 +00:00
Roy Marples
30a7a3a9bf
Fix locale with svnversion, #140 thanks to Matthias Schwarzott.
2009-01-14 14:32:56 +00:00
Roy Marples
5208a1de29
yes should be YES
2009-01-13 11:04:37 +00:00
Roy Marples
abcc4c5c72
Don't allow SYSVINIT parameters through anymore.
...
RC_REBOOT is now yes when rebooting.
Document the special reboot runlevel.
2009-01-13 11:02:00 +00:00
Roy Marples
fcf1cce549
rc_newer/older_than only report file if time_t is a pointer, so it
...
should take precedence in the argument list.
2009-01-13 09:11:31 +00:00
Roy Marples
3d37005a3d
We now warn about clock skews
...
rc-update -u will force a regen of the dep tree
rc_newer_than and rc_olderthan now take another two parameters for newest/oldest file and mtime
2009-01-12 23:53:13 +00:00
Roy Marples
a52472c3c3
Fix ordering, #139 thanks to Matthias.
2009-01-12 10:24:47 +00:00
Roy Marples
f23822e082
Copyright
2009-01-12 10:24:00 +00:00
Roy Marples
8a9a2d5fe9
Use snprintf instead of strlcpy to save on size if not available.
2009-01-12 08:31:03 +00:00
Roy Marples
a33554ab18
Copyright
2009-01-11 17:17:04 +00:00
Roy Marples
baf0ce64f5
Ensure that $HOME and $USER are always set, #139
2009-01-11 17:09:13 +00:00
Roy Marples
26f70a5277
Style
2009-01-10 12:18:00 +00:00
Roy Marples
a063035b37
Make _SVNVER_SH more readable.
2009-01-02 22:51:47 +00:00
Roy Marples
213cef1739
Fix version for releases.
2009-01-02 16:48:42 +00:00
Roy Marples
386ee57432
Fix compile, #136
2009-01-02 15:11:15 +00:00
Roy Marples
f4b8366942
Parse retry schedule correctly, #129 . Thanks to vaeth.
2008-12-28 14:05:33 +00:00
Roy Marples
7ad40abf64
Our error messages don't have full stops at the end
2008-12-23 10:42:25 +00:00
Roy Marples
7e12abe035
Typo.
2008-12-23 10:41:33 +00:00
Roy Marples
4dba5b1ff1
Disallow hotplug to run during sysinit, but allow elsewhere. Fixes #131 .
2008-12-23 10:40:27 +00:00
Roy Marples
53e2bec385
We should match on the correct args for stopping daemons when pidfiles
...
are not being used.
2008-12-23 10:15:41 +00:00
Roy Marples
803dbbf0c8
Allow rc_runlevel/softlevel to set runlevel from kernel commandline.
2008-12-21 01:15:02 +00:00
Roy Marples
9e5e60f257
Store interactive mode after sysinit, #128 thanks to Matthias Schwarzott.
2008-12-13 22:20:21 +00:00
Roy Marples
6bf0289f33
Warn about stopping sysinit services, thanks to Matthias Schwarzott. Fixes #126 .
2008-12-11 14:50:58 +00:00
Roy Marples
dc712a109e
runlevel override works correctly again.
2008-12-04 17:30:26 +00:00
Roy Marples
1acbfcf5ca
Report invalid runlevels.
2008-12-04 17:17:09 +00:00
Roy Marples
f8210050e5
If we're building from subversion, brand the binary as such.
2008-12-04 13:12:46 +00:00
Roy Marples
38e6c9ba5c
make ignore now configures the sv:ignore property.
2008-12-04 12:38:23 +00:00
Roy Marples
2c98c5326a
Punt .gitignore files.
2008-12-04 12:12:09 +00:00
Roy Marples
57f90a42ba
Include hotplugged services in our start list.
2008-12-01 08:46:50 +00:00
Roy Marples
bde35d03ed
Actally show hotplugged services.
2008-12-01 08:46:25 +00:00
Roy Marples
8b76e1d2e0
Ignore interupts when waiting for processes to finish. Also, style fixes.
2008-11-28 10:48:01 +00:00
Roy Marples
b859710cc8
Style.
2008-11-28 10:47:17 +00:00
Roy Marples
e84f71596e
Not needed.
2008-11-27 21:14:52 +00:00
Roy Marples
23e73957a0
Switch from select to poll and improve the no prefixing of eend calls.
2008-11-27 21:14:43 +00:00
Roy Marples
2537a07e10
Switch from select to poll and improve the no prefixing of eend calls.
2008-11-27 21:05:39 +00:00
Roy Marples
5403e70313
Save more screen space by removing the space befor the * for einfo and friends. Also remove the leading space before ... for ebegin.
2008-11-26 10:46:33 +00:00
Roy Marples
fe12134a5b
Don't warn about waiting for services marked as notimeout, Gentoo #247306 .
2008-11-23 18:40:43 +00:00
Roy Marples
fe509db660
Save a needless malloc when re-creating PATH.
2008-11-12 10:55:42 +00:00
Roy Marples
937b1b2abf
Don't set user info unless stated.
2008-11-11 19:47:30 +00:00
Roy Marples
eafbed0366
Fix stopping with a faulty pidfile.
2008-11-10 20:57:03 +00:00
Roy Marples
2cf24fe793
Ignore after dependencies for shutdown when not in the runlevel.
2008-11-04 09:32:21 +00:00
Roy Marples
33d4fba5be
We start off in sysinit correctly.
2008-11-04 00:21:30 +00:00
Roy Marples
32e17af92f
No need for NULL here.
2008-11-03 23:13:36 +00:00
Roy Marples
77d56f5489
Avoid depends not in the runlevel for sysinit and shutdown.
2008-11-03 23:13:12 +00:00
Roy Marples
8a76c27325
Fix sending signals, #121 .
2008-11-03 21:06:45 +00:00
Roy Marples
7467440a29
Fix fstabinfo for mounting /dev/shm, Gentoo #245367 .
2008-11-03 18:00:55 +00:00
Roy Marples
1e5a6f40e5
We shouldn't run halt.sh anymore.
2008-11-03 16:11:29 +00:00
Roy Marples
0af7d5bc20
Add a new shutdown runlevel, Gentoo #224537 .
...
Split halt.sh into halt, killprocs, romount and savecache services.
The reboot runlevel is removed but mapped to shutdown.
The halt script should be moved to the sysvinit package.
2008-11-03 15:31:01 +00:00
Roy Marples
895c4f4149
Plug a leak and expand exec also.
2008-10-30 17:57:58 +00:00
Roy Marples
20380d3144
Allow ~ and ~user to expand for chdir and chroot.
2008-10-30 17:40:48 +00:00
Roy Marples
e1341e372b
Fix --name when stopping, Gentoo #243088 .
2008-10-30 16:26:05 +00:00
Roy Marples
1c73f2967c
We no longer hotplug by default.
2008-10-30 15:03:12 +00:00
Roy Marples
2ff0838abb
We should show hotplugged services, needed services and manually started services in rc-status.
2008-10-30 14:59:14 +00:00
Roy Marples
53ddd6ca96
Properly set PAM enviornment variables after opening session.
...
Without this change, modules like pam_mktemp or pam_env and similar
will be unable to change users' environments, like they are supposed
to.
2008-10-29 21:35:45 +00:00
Roy Marples
aa991a3c99
Style.
2008-10-27 18:38:56 +00:00
Roy Marples
0d98d56188
Remove sysvinit specific code.
...
The runlevels shutdown, reboot, sysinit and single should be called by
init(8) and shutdown(8) and not manually.
sysvinit users will have to add sulogin to their inittab to secure the
console.
2008-10-27 18:01:03 +00:00
Roy Marples
0a39145a5e
Include sysinit services even in single user.
2008-10-16 17:04:44 +00:00
Roy Marples
da94fad3f5
Re-evaluate sys after running initsh.
2008-10-10 14:53:50 +00:00
Roy Marples
50b8aba8d9
Remove coldplug and just have hotplug which is a list of allowed/disallowed services. Makes things much easier.
2008-10-10 09:08:59 +00:00
Roy Marples
d6da8e8c48
sysinit is now a real runlevel that handles things like udev, dmesg and
...
mounting various bits in /dev and /sys.
init.sh JUST mounts /lib/rc/init.d (and /proc for Linux systems)
To make development of this easier we now return an empty RC_STRINGLIST
instead of a NULL for empty things.
If you don't have a udev init script installed, don't reboot your box OR
roll back to an older OpenRC version.
2008-10-10 08:37:21 +00:00
Roy Marples
c4e673edbc
Add a better, but incomplete tgoto implementation to make gcc happy.
2008-10-08 21:07:04 +00:00
Roy Marples
8c8751fa60
Clean up warnings regarding printf.
2008-10-08 15:56:47 +00:00
Roy Marples
d117b2d644
Fix tests, #Gentoo 240350.
2008-10-07 12:14:53 +00:00
Roy Marples
cb44b0a46c
#ifdef atexit cleanups calling free as the OS should do this for us, but valgrind debuggers need it.
2008-10-06 15:02:32 +00:00
Roy Marples
09a1a5ecd4
Fix a segfault when profile.env does not exist.
2008-10-03 17:50:10 +00:00
Roy Marples
41c1e170d6
Add an env var so plugins know when leaving single means the end, or start the default level.
2008-10-01 08:46:53 +00:00
Roy Marples
f53197818b
Correcly call the right runlevel for plugins when shutting down.
2008-10-01 06:10:34 +00:00
Roy Marples
bb41d2cc80
Use flock to lock PREFIX_LOCK so that multiple processes can cleanly write to the same tty.
2008-09-27 18:50:21 +00:00
Roy Marples
4291b9140e
Warn when waiting for a service every few seconds.
2008-09-27 17:17:15 +00:00
Roy Marples
28d7fb9430
When stopping services, check the newlevel if given otherwise the current runlevel. Fixes #100 .
2008-09-27 16:56:03 +00:00
Roy Marples
c3e192a834
Stop ssd from waiting by default - most daemons are good now.
2008-09-26 23:58:57 +00:00
Roy Marples
13d88731b7
We don't check exec when starting, so don't when testing for crashed.
2008-09-22 20:07:14 +00:00
Roy Marples
ffc79a50c2
Style
2008-09-22 19:49:16 +00:00
Roy Marples
53693367df
Our match arguments could be different from the exec arguments, as only the kernel should set script arguments.
2008-09-22 12:14:47 +00:00
Roy Marples
554d2fea19
Allow interpreted daemons to detect interperter options.
2008-09-22 10:45:01 +00:00
Roy Marples
6b3d8cf598
Fix stopping wpa_supplicant incorrectly, #107
2008-09-19 11:24:21 +00:00
Roy Marples
e368a4b4f8
Add missing profile bits to env, #72 .
2008-09-18 19:46:10 +00:00
Roy Marples
354fb96ee9
Use the new rc_stringlist_find function.
2008-09-18 15:36:22 +00:00
Roy Marples
312d6f3e57
Work with NULL lists.
2008-09-18 15:32:57 +00:00
Roy Marples
39ea0cb84d
Use the new rc_stringlist_find function.
2008-09-18 15:28:20 +00:00
Roy Marples
17bf78a539
Use the new rc_stringlist_find function.
2008-09-18 15:20:57 +00:00
Roy Marples
072328ff60
rc_nostop now lists services we should not stop on shutdown.
2008-09-18 15:13:53 +00:00
Roy Marples
e0dfa472d1
Add new functions, rc_stringlist_find and rc_stringlist_split.
2008-09-18 15:12:43 +00:00
Roy Marples
80a17eb596
Clean up some compile warnings.
2008-09-18 13:09:51 +00:00
Roy Marples
39304745d4
Allow interpreted daemons to use s-s-d a little easier.
2008-09-17 16:56:23 +00:00
Roy Marples
fabee4dc2d
Actually set the umask.
2008-08-20 10:19:03 +00:00
Roy Marples
1ab1e9328a
Add -k,--umask option, Gentoo #232455 .
2008-08-20 10:02:11 +00:00
Roy Marples
15678263d5
Add new OpenVZ detection code
2008-08-19 06:36:43 +00:00
Roy Marples
cea206014d
Attempt to make s-s-d simpler by not enforcing the need for a full path and maybe working better with interpreted scripts.
2008-07-27 11:30:49 +00:00
Roy Marples
a566493eb8
Ignore core files
2008-07-09 14:04:40 +00:00
Roy Marples
53401cd35f
STAILQ -> TAILQ
2008-07-08 10:48:21 +00:00
Roy Marples
7a6112d3b0
Punt STAILQ and just use TAILQ so we're a bit more portable.
2008-07-07 14:16:46 +00:00
Roy Marples
157db50df7
Fix is_older_than a little better, and make is_newer_than correct.
2008-07-03 13:30:17 +00:00
Roy Marples
a88a177f99
Add older_than function to complement newer_than function. Also make the userland instance reversed to be compatable with current baselayout, which truely does suck.
2008-07-03 13:11:47 +00:00
Roy Marples
28a65393ca
More unit fixes.
2008-07-03 13:09:10 +00:00
Roy Marples
aa57dd1ff6
More unit fixes.
2008-07-03 12:33:42 +00:00
Roy Marples
e0968a1c2e
Fix test.
2008-07-03 12:20:32 +00:00
Roy Marples
2f5d2855ba
Add an is_older_than unit test, thanks to zzam
2008-07-03 12:07:46 +00:00
Roy Marples
db9bf18587
Fix compile with pcc.
2008-07-02 23:20:04 +00:00
Roy Marples
feac5ea1d5
Ignore ewaitfile.
2008-06-30 13:36:59 +00:00
Roy Marples
64dbae7f61
If filtering fstab, only match additional mounts asked for.
2008-06-30 13:33:42 +00:00
Roy Marples
11acce3c7d
Use CPPFLAGS so we work with -combine in CFLAGS.
2008-06-19 23:12:00 +00:00
Roy Marples
4f2bb5ceaf
open should use 3 args when using O_CREAT.
2008-06-17 15:14:33 +00:00
Roy Marples
bf8f0da921
fuzzy dependency ordering should be started, starting, stopped whilst checking runlevel, bootlevel, any at each stage.
2008-06-10 15:19:46 +00:00
Roy Marples
9b1cb4e246
When we have dependant scheduled services, don't error if a need is stopped.
2008-06-10 15:04:29 +00:00
Roy Marples
2adc99a8f5
No need to include this.
2008-06-05 12:26:53 +00:00
Roy Marples
fc747f9894
Remove the macro ;)
2008-06-05 12:19:49 +00:00
Roy Marples
76063daee5
Update style to more BSDish and replace the big macro with a function.
2008-06-05 12:17:41 +00:00
Roy Marples
dc891b0647
Remove broken before dependencies, Gentoo #224171 .
2008-06-05 10:14:11 +00:00
Roy Marples
3525e602d6
Use addu instead of another loop.
2008-06-04 19:07:09 +00:00
Roy Marples
79ebd89d19
Only add a backreference if it doesn't already exist.
2008-06-04 19:00:46 +00:00
Roy Marples
ba8008fb05
Include time headers for ewaitfile.
2008-06-04 14:09:25 +00:00
Roy Marples
e6aed12328
No need to check type twice like this.
2008-06-04 12:47:06 +00:00
Roy Marples
83ade5b701
Style.
2008-06-04 12:44:45 +00:00
Roy Marples
587051ec67
Add the ewaitfile function so init scripts can wait until sockts are created, Gentoo #175783 .
2008-06-03 11:57:15 +00:00
Roy Marples
aaaa0b50d8
Be quiet when checking at start.
2008-05-27 16:48:47 +00:00
Roy Marples
ca6f289c80
When stopping with a pidfile, only read the pid once incase it vanishes but the process still hangs around.
2008-05-27 16:42:28 +00:00
Roy Marples
1df3ab05b5
realloc -> xrealloc
2008-05-19 13:41:16 +00:00
Roy Marples
775df18a70
Fix a potential segfault, thanks to Fernando J. Pereda.
2008-05-19 13:16:53 +00:00
Roy Marples
b7e598ad91
Install symlinks correctly, thanks to zlin.
2008-05-13 00:03:10 +00:00
Roy Marples
5c114d9430
When testing services to stop, we should trace it. More for #79 .
2008-05-12 23:45:17 +00:00
Roy Marples
f13ea77491
The real fix for the last commit is to uncomment some code - d'oh.
2008-05-12 23:33:40 +00:00
Roy Marples
a89171ee9b
When stopping, stop services that need our provide as well, #79 .
2008-05-12 23:17:45 +00:00
Roy Marples
6d5d655b52
Style.
2008-05-12 23:00:05 +00:00
Roy Marples
d667da8e5c
Check we have a deptree before using it, Gentoo #220579
2008-05-12 13:20:35 +00:00
Roy Marples
9894669742
Fix help text, #75 .
2008-05-12 08:34:42 +00:00
Roy Marples
b732df31ef
Don't report fstab passno of 0 when using greater or less than, #76 .
2008-05-12 08:32:19 +00:00
Roy Marples
3663cf1e2a
Only launch single user when RUNLEVEL == S, #74 .
2008-05-10 10:04:34 +00:00
Roy Marples
a854fe6d61
Simplify the wait code.
2008-05-07 09:47:07 +00:00
Roy Marples
619b0b4f37
Fix the EINTR check for waitpid, Gentoo #219929 .
2008-05-06 21:53:21 +00:00
Roy Marples
5ae702339e
We don't need to handle SIGWINCH in sysinit, so this should fix loading a framebuffer module in init.sh (Gentoo #219929 . Ideally someone should tell me why this is happening and if there is a better fix.
2008-05-06 16:21:16 +00:00
Roy Marples
5188fd2592
Wups, test compiles before commiting :)
2008-04-30 16:33:54 +00:00
Roy Marples
5b800030f1
Remove redundant checking of /proc/pid/exe
2008-04-30 16:26:05 +00:00
Roy Marples
208443fa0e
Save a few bytes and make it easier to read.
2008-04-30 15:26:29 +00:00
Roy Marples
a818eebf7b
No need to init this.
2008-04-30 12:26:38 +00:00
Roy Marples
10910876d1
Make the function a little smaller.
2008-04-30 10:55:42 +00:00
Roy Marples
35b4978152
Style
2008-04-30 10:31:06 +00:00
Roy Marples
e273b4e08e
Fix another leak.
2008-04-29 11:08:02 +00:00
Roy Marples
50cff8ebc8
Tweak the last commit and fix a valgrind error.
2008-04-29 10:49:50 +00:00
Roy Marples
5ba6f0a628
We need to ensure that the init script started is correct, translating symlinks. This has a new rule - multiplexed services must exist in the same dir as the master sript. So we need to ensuret that net.lo(0) is the real script and not a symlink itself. This fixes Gentoo #219526 .
2008-04-29 10:25:45 +00:00
Roy Marples
53902cefb8
Add rc_program function which uses fork and signal masking to try and resolve the waitpid issue, Gentoo #219179 .
2008-04-28 16:04:16 +00:00
Roy Marples
e499e58310
Don't re-start or re-stop failed services if runlevel is changing.
2008-04-27 21:04:37 +00:00
Roy Marples
3c2b93fc9c
Check we have a list before running depends.
2008-04-26 14:59:07 +00:00
Roy Marples
b5d829789f
Check we have a list before running depends.
2008-04-26 14:57:39 +00:00
Roy Marples
54d7aa39dd
If we don't have permission to inspect the pidfile, don't report crashed. Gentoo #218028 .
2008-04-21 10:56:28 +00:00
Roy Marples
dc5d63aa97
Add RC_TMPDIR so that there's a writeable location during boot.
2008-04-21 10:29:29 +00:00
Roy Marples
d83ae59cca
Add help for mountargs, #63
2008-04-19 17:19:59 +00:00
Roy Marples
f0aacec02e
Cast to unsigned char for ctype calls.
2008-04-17 10:19:58 +00:00
Roy Marples
57e1dd7389
Fix rc-status some more.
2008-04-17 00:25:08 +00:00
Roy Marples
425abe40c5
Only report unassigned services when there are any, Gentoo #218005 .
2008-04-16 19:47:19 +00:00
Roy Marples
29369c44c1
Add help text for rc-service --resole.
2008-04-15 16:16:59 +00:00
Roy Marples
99d5046a56
Don't assume that we have a list returned.
2008-04-10 08:49:05 +00:00
Roy Marples
0e38dcc4d2
By default, rc-status now shows the statuses of the services in the current runlevel and any unassigned non stopped services, #52 .
2008-04-09 22:56:32 +00:00
Roy Marples
8759735711
Give an error when running zap as a generic user.
2008-04-08 22:57:42 +00:00
Roy Marples
e82435c2f4
rc_runlevel is now the preferred kernel commandline option for choosing default runlevel.
2008-04-08 15:59:56 +00:00
Roy Marples
71dd280656
Fix rc-service --help output.
2008-04-07 11:48:32 +00:00
Roy Marples
dcdfdb442f
Some systems are only detectable after /proc is mounted, so re-test if unknown.
2008-04-06 20:06:07 +00:00
Roy Marples
143239e143
Increase pidstr size to 10 chars.
2008-04-06 13:24:10 +00:00
Roy Marples
5d38d4d6e9
p could be null here.
2008-04-06 13:21:42 +00:00
Roy Marples
c18c4fc4cc
Check list existance before iterating, Gentoo #216091 .
2008-04-04 16:31:56 +00:00
Roy Marples
e995404e3b
Add XEN support to NetBSD.
2008-03-28 16:10:31 +00:00
Roy Marples
caa4704ce6
Merge branch 'master' of git@git.overlays.gentoo.org:proj/openrc
2008-03-28 16:05:11 +00:00
Roy Marples
17d28fde42
Support XEN on NetBSD
2008-03-28 16:04:48 +00:00
Roy Marples
b418f2e471
Allow our headers to be included by C++ programs easily.
2008-03-28 11:06:47 +00:00
Roy Marples
ee4e861796
Put some dir locations in rc.h so that 3rd party apps can become awware of them.
2008-03-28 10:46:12 +00:00
Roy Marples
11e33e81c8
Remove rc_service_start/stop from librc as they block and unmask signals. The application may not wish this behaviour and should fork/exec the service itself.
2008-03-28 08:42:05 +00:00
Roy Marples
15d34d0a16
Add license blurb to a few files and append my email to my name.
2008-03-26 17:53:37 +00:00
Roy Marples
cee3ccc4c1
Fix a segfault if rc.conf does not exist, Gentoo #214887
2008-03-26 15:10:26 +00:00
Roy Marples
1b40379a79
We should sort using LC_ALL=C to avoid locale issues.
2008-03-26 08:43:05 +00:00
Roy Marples
be1f9b0a93
Add --exists and --resolve to rc-service.
2008-03-26 08:08:47 +00:00
Roy Marples
3f37d4771b
If we have coldplugged services, but no start_services, we need to create a new list for start_services.
2008-03-26 05:08:38 +00:00
Roy Marples
5866d829bb
Try and fix more prefix stuff.
2008-03-25 18:33:45 +00:00
Roy Marples
068c90c82b
Fix exclusive removal.
2008-03-25 18:20:23 +00:00
Roy Marples
0347f01345
Fix segfault when no coldplugged services, thanks to Daijo.
2008-03-24 13:30:24 +00:00
Roy Marples
5a80daaf43
Fix coldplug disabling.
2008-03-24 13:09:42 +00:00
Roy Marples
821166fbfd
Fix debug support to work without gmake and bundle -ggdb in properly.
2008-03-24 11:43:03 +00:00
Roy Marples
79719b5386
Fix adding services to the boot runlevel, #43
2008-03-24 10:13:49 +00:00
Mike Frysinger
486d517674
setup a bit of a test framework
2008-03-24 07:17:05 +00:00
Mike Frysinger
1c9c2f9fcf
fixup testing
2008-03-24 06:30:21 +00:00
Mike Frysinger
7b08276fa8
add missing rc_stringlist_new/rc_sys hidden defs
2008-03-24 06:24:46 +00:00
Mike Frysinger
58caa0864f
ignore generated files
2008-03-24 06:18:51 +00:00
Mike Frysinger
9ed5d28d15
add check/test rules
2008-03-24 06:10:40 +00:00
Roy Marples
a1b9768243
Fix returning a service descriptions.
2008-03-23 22:58:25 +00:00
Roy Marples
06635dedbc
We don't change service here.
2008-03-23 22:57:56 +00:00
Roy Marples
2715981ff9
Revert commit 48fc097e39ec9b3edd9a8929fe9faf8f302451ec and add a comment about making it a runtime config option if it needs to change.
2008-03-23 20:04:18 +00:00
Roy Marples
ce644e1735
Report mounts in reverse order, Gentoo #214150 .
2008-03-23 19:51:41 +00:00
Mike Frysinger
ec4721dd7f
fix spacing in the trailing [ msg ]
2008-03-23 12:49:40 +00:00
Mike Frysinger
bd34df6361
add support for automatic gdb launching when RC_DEBUG is defined to 1 to ease bug reporting / information gathering
2008-03-22 23:02:30 +00:00
Mike Frysinger
5dcdfcdf7a
add local rpaths if in the git tree
2008-03-22 23:00:32 +00:00
Roy Marples
a4f9eb699b
Fix some crashers in a prefix with few services.
2008-03-21 20:02:10 +00:00
Roy Marples
f7f3b6ae09
euid 0 should always be able to find pids too.
2008-03-21 17:41:01 +00:00
Roy Marples
85a6addd23
Only test crashed services if we can see pid 1.
2008-03-21 13:04:29 +00:00
Roy Marples
fe90a548b5
ksoftlevel -> krunlevel
2008-03-21 10:34:09 +00:00
Roy Marples
494fb0a5f6
Add --list to rc-service to list all available services.
2008-03-21 09:10:59 +00:00
Roy Marples
e505e6ea41
We should only free the buffer when done reading the dir.
2008-03-21 08:31:04 +00:00
Roy Marples
ec2d39d024
Just warn about the incorrect service. Let the right service be more explanitory about missing options.
2008-03-19 22:26:45 +00:00
Roy Marples
3b888b385a
gitignore
2008-03-19 22:17:10 +00:00
Roy Marples
eea30772d4
Fix last commit.
2008-03-19 22:11:22 +00:00
Roy Marples
d948e65d60
Give a better error message when no service specified.
2008-03-19 20:04:48 +00:00
Roy Marples
97abd91577
Report wrong service correctly.
2008-03-19 20:01:48 +00:00
Roy Marples
5f091395c7
Typo.
2008-03-19 19:59:50 +00:00
Roy Marples
6159a32f39
SVCNAME -> RC_SVCNAME, but export SVCNAME still for compat.
2008-03-19 19:57:24 +00:00
Roy Marples
d9ec62b22a
Add rc-service and update all softlevel refs to runlevel.
2008-03-19 17:11:50 +00:00
Roy Marples
64853c4916
Rejig the build system a little so we have per ok defs per system. Probably easier in the long run.
2008-03-19 15:22:20 +00:00
Roy Marples
f69013adbe
Fix define name
2008-03-19 15:15:09 +00:00
Roy Marples
1443fee901
Fix errors when reporting who we are scheduled by.
2008-03-19 12:26:47 +00:00
Roy Marples
cdd3881c1b
Return scheduled services correctly.
2008-03-19 12:26:09 +00:00
Roy Marples
773d50dabb
Get going_down and parallel the right away round.
2008-03-18 23:06:02 +00:00
Roy Marples
51c825ceee
Make rc_getline private and save it's buffer so it's sort of like getline from glibc.
2008-03-17 21:27:37 +00:00
Roy Marples
b9eb450696
Fix some tests on FreeBSD.
2008-03-17 17:57:07 +00:00
Roy Marples
c74cfabe2e
init some vars.
2008-03-17 16:42:31 +00:00
Roy Marples
5d77c0db6b
This should be a fixed buffer.
2008-03-17 14:42:10 +00:00
Roy Marples
b2f7606b23
We should check for NULL here.
2008-03-17 14:31:44 +00:00
Roy Marples
4c14666423
Punt the rc_strcatpaths function and use snprintf instead to save on expensive malloc calls.
2008-03-17 13:25:56 +00:00
Roy Marples
50a7697bf2
rc_find_pids now returns RC_PIDLIST instead of a NULL terminated array.
2008-03-17 09:59:52 +00:00
Roy Marples
40930d7d0a
Use correct TAILQ_CONCAT macro when not defined.
2008-03-16 17:27:13 +00:00
Roy Marples
1fd1472dde
Add new stringlist files.
2008-03-16 17:01:35 +00:00
Roy Marples
cb9da6a262
Remove null terminated char ** lists in favour of RC_STRINGLIST, using TAILQ from queue(3). Refactor code style around the BSD KNF.
2008-03-16 17:00:56 +00:00
Roy Marples
40e12f6ba0
RC_SERVICE now points to the service file, so daemons can recall us directly.
2008-03-11 15:00:16 +00:00
Roy Marples
6f68c44a77
mount may not be in /sbin
2008-03-11 13:51:06 +00:00
Roy Marples
b7c0d8b43c
Remove debug LDFLAGS
2008-03-11 13:45:58 +00:00
Roy Marples
52a3cc162b
Add a --mount command to fstabinfo so it can mount specific mount points, as mount can get confused with binded mounts, bug #36 .
2008-03-11 13:39:20 +00:00
Roy Marples
0fa512c2b5
Coldplug net devices on the BSD's as found by getifaddrs.
2008-03-11 11:03:34 +00:00
Roy Marples
4742e1ec69
d_type is not portable across filesystems.
2008-03-08 13:06:29 +00:00
Roy Marples
2f22f9dfeb
Test access instead of euid.
2008-03-06 11:39:05 +00:00
Roy Marples
39dd08c539
Test access instead of euid.
2008-03-06 11:34:38 +00:00
Roy Marples
19bad914bc
Show version similar to gcc.
2008-03-05 17:31:19 +00:00
Roy Marples
a689b66023
Add tunable SYSCONFDIR
2008-03-05 12:27:11 +00:00
Roy Marples
7aa231de2e
Style.
2008-03-05 10:03:36 +00:00
Roy Marples
c5d174af17
When stopping localmount, set LC_ALL=C so bash doesn't lock /usr.
2008-03-04 22:52:48 +00:00
Roy Marples
4ae5aebe81
Inform plugins when we exit if on signal.
2008-03-04 20:41:25 +00:00
Roy Marples
6baff6cd1d
Don't store empty services.
2008-03-04 10:36:20 +00:00
Roy Marples
54afc10aa4
Sanitise the BSD defines a little.
2008-03-03 19:55:29 +00:00
Roy Marples
e55cb5dd5b
Fix compile on Linux.
2008-03-03 17:22:01 +00:00
Roy Marples
15cf41e713
Split VPS into VSERVER and OPENVZ
2008-03-03 17:19:56 +00:00
Roy Marples
f3e90dddbf
rc single and rc sysinit don't check sysvinit env vars in prefix.
2008-03-03 15:57:36 +00:00
Roy Marples
b614477948
Fix ignore files some more.
2008-03-03 13:31:25 +00:00
Roy Marples
7a8e9d4ddb
Add a gitignore make target.
2008-03-03 13:04:08 +00:00
Roy Marples
0aedc02860
Introduce LOCAL_PREFIX for a user maintained script location.
2008-03-03 10:33:42 +00:00
Roy Marples
5971d14afd
Ensure that normal users can use s-s-d on NetBSD.
2008-03-03 09:57:48 +00:00
Roy Marples
c67c283b2a
Fix prefix test.
2008-03-03 08:06:53 +00:00
Roy Marples
a12dbdc6c9
Don't check for root in prefix.
2008-03-02 21:13:21 +00:00
Roy Marples
7c092fbc79
If build in a prefix, define the system as prefix.
2008-03-02 10:40:08 +00:00
Roy Marples
2f3ffd053f
We should use shutdown to goto single user mode.
2008-03-01 10:38:47 +00:00
Roy Marples
baf217acc7
Fix unused var.
2008-03-01 09:27:29 +00:00
Roy Marples
fcf2778317
Don't leak fd's.
2008-02-28 21:47:45 +00:00
Roy Marples
391d8de622
close fd doesn't seem good enough - whereas fcntl does the job.
2008-02-28 21:26:53 +00:00
Roy Marples
f092045650
Support the use of PREFIX and PKG_PREFIX.
2008-02-28 11:08:49 +00:00
Roy Marples
aabf3976db
Fix help for rc-update.
2008-02-27 21:19:14 +00:00
Roy Marples
bf2cebf2d8
With --quiet, we should quiet the daemon we're starting too.
2008-02-25 10:51:05 +00:00
Roy Marples
d1f7f0a304
Force the specification of a pidfile or process name if daemon is a script. Alternatively, document the use of starting the script interpreter and passing the daemon as an option.
2008-02-24 23:09:15 +00:00
Roy Marples
8b4b958678
Now that s-s-d accepts >1 argument for stopping a daemon on match we need to store all arguments used incase a service started the same daemon more than once with different paramters.
2008-02-23 00:26:11 +00:00
Roy Marples
ad780077d2
Welcome to 2008.
2008-02-22 12:07:34 +00:00
Roy Marples
a9fcbf3e30
More PCC fixes.
2008-02-22 11:44:10 +00:00
Roy Marples
5bb09b6587
ewarn now goes to stderr to match portage behaviour.
2008-02-21 10:08:35 +00:00
Roy Marples
405cea1f19
Support the PCC compiler.
2008-02-20 18:06:01 +00:00
Roy Marples
d3d22914fc
Fix -o
2008-02-20 15:48:09 +00:00
Roy Marples
5e523ff33e
Move logfile without a visible error, bug #28
2008-02-20 14:30:23 +00:00
Roy Marples
95a7985ea3
Simply our code - only set env vars when needed.
2008-02-20 14:04:30 +00:00
Roy Marples
2456a265ee
Allow rc-depend to order as if runlevel was starting or stopping.
2008-02-20 10:52:57 +00:00
Roy Marples
7dec6f4025
Don't warn about removed services through use of the nosys keyword.
2008-02-19 22:04:24 +00:00
Roy Marples
f35f788187
Fix verbose without --exec.
2008-02-19 21:45:27 +00:00
Roy Marples
9e39a934b8
Fix an off-by-one error.
2008-02-19 21:45:01 +00:00
Roy Marples
d7129163ce
Fix compile warning, and free removed depinfo's
2008-02-19 19:43:31 +00:00
Roy Marples
42dd9965cc
Default to using C99 standard.
2008-02-19 16:49:28 +00:00
Roy Marples
916a4463ce
Fix some warnings.
2008-02-19 16:05:42 +00:00
Roy Marples
79d40707db
Fix compile on Linux.
2008-02-19 15:51:59 +00:00
Roy Marples
e1e36b2872
keywords -> keyword
2008-02-19 14:36:22 +00:00
Roy Marples
0364bb2c84
Add the nojail keyword which excludes services marked as such from the dependency tree when in a jail, #bug 22
2008-02-19 14:15:53 +00:00
Roy Marples
f95e0b2c3e
We should remove stale pidfiles and service daemon info if we didn't find anything to stop, bug #25 .
2008-02-19 10:18:26 +00:00
Roy Marples
eedf63906d
Fix compile on FreeBSD.
2008-02-18 16:26:49 +00:00
Roy Marples
b0442b3193
We need to check for contents of argv too.
2008-02-18 16:01:04 +00:00
Roy Marples
d904acf448
Fix a signed error.
2008-02-18 13:37:58 +00:00
Roy Marples
27f97f2106
We need to be able to locate pids by argv, instead of just argv0.
2008-02-17 15:12:00 +00:00
Roy Marples
9854f9e3ee
Use _PATH_DEVNULL on FreeBSD when using kvm_openfiles so we work in a jail, bug #21 .
2008-02-13 23:44:17 +00:00
Roy Marples
567f8e33f2
Just use the extern applet var.
2008-02-11 20:14:09 +00:00
Roy Marples
3198d81a1f
Remove unsed vars
2008-02-10 23:13:09 +00:00
Roy Marples
3620e04769
Fix an off by one error when parsing PATH
2008-02-09 18:16:53 +00:00
Roy Marples
09ff8eeecd
rc-status -r now shows the current runlevel name.
2008-02-08 21:11:44 +00:00
Roy Marples
04b1a62c4b
Only use hilite if stdout is a tty
2008-02-07 23:24:09 +00:00
Roy Marples
483a19a0e3
exiting to shell should block signals first, to avoid the child getting them. Also, sulogin seems to work without specifying the terminal now.
2008-02-04 22:19:40 +00:00
Roy Marples
b1771be2d1
eoutdent should set the correct env var.
2008-02-04 22:10:41 +00:00
Roy Marples
4c6a66c3e9
Just restore the old set.
2008-02-04 21:48:05 +00:00
Roy Marples
08a5bdbcb3
RC_DEP_START/STOP should only be used for ordering services, and not the actual dependencies ofthe services themselves. This allows coldplugged services to satisfy the net dependency for rc ordering them correctly but not for services that require net and strict is on.
2008-02-03 23:27:16 +00:00
Roy Marples
93e3101725
Allow non root users to use start-stop-daemon when linked with pam, Gentoo bug #207836 .
2008-02-03 23:02:02 +00:00
Roy Marples
5014968e83
Fix fork error message.
2008-02-02 22:17:44 +00:00
Roy Marples
7b27a12f6c
OK, we have to use fork with sigprocmask as not all systems provide a working and sane kernel call to bypass libc.
2008-02-02 14:22:37 +00:00
Roy Marples
8830b50636
Fix compile on systems that do not expose SYS_sigaction.
2008-02-02 13:00:22 +00:00
Roy Marples
110a083ad2
Fix compile against old lib.s
2008-02-02 13:00:01 +00:00
Roy Marples
534691a2a5
Fix compile on BSD.
2008-02-02 00:44:04 +00:00
Roy Marples
e2919519d7
Using syscall in a vfork is safe for sigaction and sigprogmask.
2008-02-02 00:38:06 +00:00
Roy Marples
ad04517623
Block signals to avoid fork /signal races.
2008-02-02 00:17:35 +00:00
Roy Marples
fef5d0af59
Constantise as much as possible so that it reduces COW usage.
2008-02-01 19:54:46 +00:00
Roy Marples
f12f3e0641
Factor out the str attribute in the ecolors array to its own array. This way ecolors can be marked const.
2008-02-01 15:09:59 +00:00
Roy Marples
f2ce40d90b
Use sigaction over signal.
2008-02-01 13:20:19 +00:00
Roy Marples
ec912fa717
Fix compile on BSD
2008-02-01 00:32:50 +00:00
Roy Marples
1e9be161b9
Fix up deps for new scripts.
2008-01-31 18:01:20 +00:00
Roy Marples
84ad9a40a6
Use the variable instead of type for sizeof.
2008-01-30 15:01:37 +00:00
Roy Marples
3506cb2dc7
Ensure that we use our default CFLAGS if none set.
2008-01-30 15:00:58 +00:00
Roy Marples
3f0381e3e6
Use the variable instead of type for sizeof.
2008-01-30 14:46:08 +00:00
Roy Marples
61e36be694
Add xzalloc function to reduce size.
2008-01-30 14:34:55 +00:00
Roy Marples
51a9c647b9
Allow !net to remove the net provision from dependencies.
2008-01-30 13:37:20 +00:00
Roy Marples
4bdfccc2c2
Fix adding net scripts to the boot runlevel.
2008-01-30 12:50:44 +00:00
Roy Marples
2be93c3e0e
Specify install modes for all our files.
2008-01-30 10:02:53 +00:00
Roy Marples
39d88dc809
Fix branding.
2008-01-29 14:55:35 +00:00
Roy Marples
9112bd58ca
Do our coldplug at the end of sysinit as there's no guarantee that the boot runlevel will be called before the default runlevel.
2008-01-29 13:52:54 +00:00
Roy Marples
d8240a1aea
If we don't have any branding, then add some uname info at startup.
2008-01-29 10:03:45 +00:00
Roy Marples
9ce3086bf5
Fix service_started_daemon, bug #11
2008-01-28 13:16:33 +00:00
Roy Marples
649a710552
Quiet some more lint warnings.
2008-01-22 11:07:39 +00:00
Roy Marples
b4bff9ce5e
Quiet some lint warnings.
2008-01-22 10:29:15 +00:00
Roy Marples
e5baa6ad37
Quiet some lint warnings.
2008-01-22 10:10:09 +00:00
Roy Marples
cbe5648158
Define our x* functions as unused rather than inline for a massive space saving.
2008-01-22 09:35:42 +00:00
Roy Marples
2007ed4b95
Prefer for (;;) over while (1)
2008-01-21 16:10:38 +00:00
Roy Marples
07728abbc1
Checking first char for null is more efficient than strlen.
2008-01-21 15:30:40 +00:00
Roy Marples
847ccac13c
Testing the first character for NULL is more efficient than checking a strlen of 0.
2008-01-21 15:20:05 +00:00
Roy Marples
28618c8174
should not produce a red star
2008-01-21 14:31:21 +00:00
Roy Marples
773c2b9ca6
We should never change the list passed to rc_config_value.
2008-01-18 14:01:48 +00:00
Roy Marples
87f785cc31
Style.
2008-01-18 13:30:12 +00:00
Roy Marples
b6be36e5ea
Don't enforce a C99 compiler.
2008-01-18 11:27:49 +00:00
Roy Marples
862e07c8fd
rc_coldplug=no really stops all coldplug events
2008-01-18 10:04:21 +00:00
Roy Marples
c6774d1c74
If adding to the boot runlevel, ensure that the realpath of the resolved service points to /etc/init.d/$service
2008-01-15 19:47:48 +00:00
Roy Marples
38f8eee495
We should not use options for rc-update, as add, delete and such are commands.
2008-01-15 09:50:14 +00:00
Roy Marples
3e0f49b846
rc_newer_than no longer tests if souce has data, making it a more logical function. As such, we add the existss function to check for existance and size when checking to see if the deptree needs an update.
2008-01-15 09:24:50 +00:00
Roy Marples
7fe30026b3
Fix rc changing runlevels after splitting out the applets.
2008-01-14 19:53:56 +00:00
Roy Marples
46294cba02
Fix shell_var as reported by lamusic.
2008-01-14 16:17:03 +00:00
Roy Marples
62d793f7ff
Fix is_older_than.
2008-01-14 14:41:02 +00:00
Roy Marples
e068757810
Put the applets into rc-applet.c so that rc.c is easier to manage.
2008-01-14 14:24:20 +00:00
Mike Frysinger
d810e597dc
partial revert of previous commit -- the rpath stuff was meant to be kept local only
2008-01-14 10:18:52 +00:00
Roy Marples
d695407114
Add support for is_newer_than and is_older_than. is_older_than currently doesn't work as expected, but is_newer_than works fine.
2008-01-14 08:12:37 +00:00
Mike Frysinger
e49e5b147c
tweak help since this works for dirs and files
2008-01-14 05:48:31 +00:00
Mike Frysinger
357d3ecf84
fix --mode parsing by checking the proper function parameter
2008-01-14 05:39:01 +00:00
Mike Frysinger
0b815cc67f
add missing "-d" option
2008-01-14 05:32:47 +00:00
Mike Frysinger
09b958b99d
add shortcuts for generating symlinks
2008-01-14 05:32:39 +00:00
Mike Frysinger
6aab712cb4
strip trailing newlines
2008-01-14 05:05:22 +00:00
Roy Marples
87e4e4410c
Remove rc_service_plugable function and make it private as it needs to read from our config file.
2008-01-13 17:47:23 +00:00
Roy Marples
7f9ea7c7c4
Fix PAM install
2008-01-13 10:21:22 +00:00
Roy Marples
5bf95bd3f3
Use MKTERMCAP and MKPAM so we don't use env vars TERMCAP or PAM inadvertently.
2008-01-12 20:38:57 +00:00
Roy Marples
9c5300d4ae
Many termcap db's don't have ch or RI even though they do work
2008-01-12 20:38:26 +00:00
Roy Marples
abde759d5b
Re-indent to a standard tw of 8.
2008-01-11 15:51:40 +00:00
Roy Marples
2d95c9a756
Loads of NetBSD tweaks here.
2008-01-10 23:22:46 +00:00
Roy Marples
4314784520
Allow for OS and SUBOS folders so we can introduce NetBSD scripts whilst keeping BSD for all BSD's.
2008-01-10 16:35:59 +00:00
Roy Marples
2643f2e605
Fix installing libs.
2008-01-10 08:29:41 +00:00
Roy Marples
5b30c5154d
install correctly on NetBSD.
2008-01-09 23:47:15 +00:00
Roy Marples
ddf25cbcb7
Compile without warnings on NetBSD
2008-01-09 23:22:04 +00:00
Roy Marples
06634f6309
Style updates.
2008-01-09 11:44:43 +00:00
Roy Marples
2e35d2a73c
Avoid valgrind errors with getline.
2008-01-07 19:12:58 +00:00
Roy Marples
81b8e5450e
Really fix off by one error.
2008-01-07 15:27:26 +00:00
Roy Marples
fa898af791
Fix an off by one error.
2008-01-07 14:59:17 +00:00
Roy Marples
d22fc0dd93
Allow depend creation again. This doesn't work on GNU make, but does on all others.
2008-01-07 14:20:13 +00:00
Roy Marples
43d0f3fc76
rc_getline keeps expanding it's malloced buffer until it has read a whole line or EOF. All functions which read into static buffers have been changed to use fhis function to avoid any potential overflows and to ensure we really do read a long long config line.
2008-01-07 12:29:30 +00:00
Roy Marples
74e0e58b89
Stop using CPPFLAGS
2008-01-07 09:39:44 +00:00
Roy Marples
789bd6ab09
Install the static archive in /usr/lib
2008-01-06 23:30:20 +00:00
Roy Marples
4a4a340967
Fix userland einfo when passed with no arguments
2008-01-06 23:00:26 +00:00
Roy Marples
26f5eeece1
Fix branding
2008-01-06 21:44:26 +00:00
Roy Marples
16a2c82bd1
We should check we resolved a service before stating it's existance.
2008-01-06 21:06:47 +00:00
Roy Marples
b1540cba5b
Use a dynamically expanding buffer for reading config files.
2008-01-06 19:52:43 +00:00
Roy Marples
8afb86a5de
Set include paths in Makefile instead of .c files
2008-01-06 13:47:39 +00:00
Roy Marples
62ef80e7f8
Add our version maps back
2008-01-06 11:38:37 +00:00
Roy Marples
2b54426bd3
librc needs kvm on bsd.
2008-01-06 00:50:19 +00:00
Roy Marples
75815abd6c
Fix installing pam files
2008-01-05 20:54:34 +00:00
Roy Marples
44d63fdec6
Fix installing links
2008-01-05 20:53:28 +00:00
Roy Marples
20b50e57b9
Add missing Makefile
2008-01-05 20:49:48 +00:00
Roy Marples
e6c9bdf2a3
Add the missing changes from the recent Makefile updates
2008-01-05 20:43:32 +00:00
Roy Marples
c92be49041
Move the env whitelists to an rc var and build in the system whitelist.
2008-01-05 20:43:08 +00:00
Roy Marples
ac21d75300
Add some .mk stubs to impersonate bsk .mk files to make writing our Makefiles easier. libeinfo, librc and rc now have their own seperate directories. More work is needed to tidy this up though.
2008-01-05 19:25:55 +00:00
Mike Frysinger
112fbde453
use implicit rules for many things rather than hardcoding our own
2008-01-04 15:57:31 +00:00
Roy Marples
f5fb796619
We use -W in the loop vars, no don't duplicate in the test.
2008-01-04 15:47:34 +00:00
Mike Frysinger
09cf3342d5
do not hardcode ar or ranlib
2008-01-04 15:36:56 +00:00
Roy Marples
3d163f4548
Remove support for static and pam combined - too problematic.
2008-01-04 15:19:04 +00:00
Roy Marples
aa1129a71d
More static building fixes.
2008-01-04 14:46:45 +00:00
Roy Marples
633297a6ca
Support static building against a non static PAM.
2008-01-04 14:01:24 +00:00
Roy Marples
c13471f91f
Fix detection of Xen dom0 vs domU can use the right variable in init scripts.
2008-01-04 12:39:06 +00:00
Roy Marples
d7961bef66
Add BIN_LDFLAGS so that we can build static bins without affecting our shared libraries.
2008-01-04 11:06:58 +00:00
Roy Marples
5ce37e1cef
Ensure that copyright is unique for rc, librc and libeinfo. Also, fix branding a little.
2008-01-03 17:23:42 +00:00
Roy Marples
f56929ea7d
Put branding in version.h
2008-01-03 17:05:29 +00:00
Roy Marples
3a1cc82a8d
Allow a BRANDING define to be used.
2008-01-03 13:02:03 +00:00
Roy Marples
b6228a987e
Allow building without std=c99 defined
2008-01-03 13:01:43 +00:00