diff options
author | Christian Heim <phreak@gentoo.org> | 2005-12-06 12:28:25 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2005-12-06 12:28:25 +0000 |
commit | f62636483b16222c394fa17c635d74017cf215ba (patch) | |
tree | 22039adb2bfc850dd02b1a2508f5f0c975b56f91 /ChangeLog.vserver | |
parent | fix openvz /proc handling; cleanup (diff) | |
download | baselayout-vserver-f62636483b16222c394fa17c635d74017cf215ba.tar.gz baselayout-vserver-f62636483b16222c394fa17c635d74017cf215ba.tar.bz2 baselayout-vserver-f62636483b16222c394fa17c635d74017cf215ba.zip |
Importing latest baselayout/trunk changes. Merging revision 1773.
svn path=/baselayout-vserver/trunk/; revision=160
Diffstat (limited to 'ChangeLog.vserver')
-rw-r--r-- | ChangeLog.vserver | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/ChangeLog.vserver b/ChangeLog.vserver index 8a43657..a93785b 100644 --- a/ChangeLog.vserver +++ b/ChangeLog.vserver @@ -1,6 +1,56 @@ # ChangeLog for Gentoo System Intialization ("rc") scripts # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPLv2 + 06 Dec 2005; Christian Heim <phreak@gentoo.org>: + Importing latest baselayout/trunk changes. Merging revision 1773. + + ChangeLog | 8 + ChangeLog.vserver | 50 + net-scripts/conf.d/net.example | 5 + net-scripts/net.modules.d/dhclient | 10 + net-scripts/net.modules.d/dhcpcd | 18 + net-scripts/net.modules.d/helpers.d/dhcp | 11 + net-scripts/net.modules.d/helpers.d/dhcpcd-wrapper | 4 + net-scripts/net.modules.d/pump | 9 + net-scripts/net.modules.d/udhcpc | 8 + src/core/Makefile.am | 4 + src/core/configure.ac | 55 + src/core/librcscripts/Makefile.am | 31 + src/core/librcscripts/api/debug.h | 136 + + src/core/librcscripts/api/depend.h | 76 + src/core/librcscripts/api/dynbuf.h | 63 + src/core/librcscripts/api/list.h | 446 +++++ + src/core/librcscripts/api/misc.h | 106 + + src/core/librcscripts/api/parse.h | 84 + + src/core/librcscripts/api/rctypes.h | 43 + src/core/librcscripts/api/runlevels.h | 44 + src/core/librcscripts/api/scripts.h | 43 + src/core/librcscripts/api/simple-regex.h | 87 + + src/core/librcscripts/api/str_list.h | 212 ++ + src/core/librcscripts/debug.c | 297 +++ + src/core/librcscripts/debug.h | 85 - + src/core/librcscripts/depend.c | 973 ++++++------ + src/core/librcscripts/depend.h | 75 + src/core/librcscripts/dynbuf.c | 332 ++++ + src/core/librcscripts/list.h | 446 ----- + src/core/librcscripts/misc.c | 916 +++++------ + src/core/librcscripts/misc.h | 282 --- + src/core/librcscripts/parse.c | 1439 ++++++++---------- + src/core/librcscripts/parse.h | 100 - + src/core/librcscripts/rcscripts.h | 26 + src/core/librcscripts/runlevels.c | 218 ++ + src/core/librcscripts/scripts.c | 256 +++ + src/core/librcscripts/simple-regex.c | 1232 +++++++-------- + src/core/librcscripts/simple-regex.h | 86 - + src/core/src/depscan.c | 433 ++--- + src/core/src/runscript.c | 381 ++-- + src/core/tests/Makefile.am | 25 + src/core/tests/test-dynbuf.c | 139 + + src/core/tests/test-mmap.c | 46 + src/core/tests/test-regex.c | 97 - + src/core/tests/test-runlevels.c | 70 + 45 files changed, 5687 insertions(+), 3820 deletions(-) + 02 Dec 2005; Christian Heim <phreak@gentoo.org>: Import the latest baselayout changes. Merging revision 1658. |