Go to file
Robin H. Johnson 4ff71bd741 tmpfiles.d init.d scripts
Now that the tmpfiles.d code is more tested, actually call it from
init.d. It assumes that /run is already available when it runs.

Please note it runs TWICE.
- During sysinit, ideally just after /dev/shm is created, but before
  udev has started. After udev is also acceptable, but not ideal.
- During boot, ideally just after localmount has completed.

Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2012-09-26 15:42:37 -07:00
conf.d tmpfiles.d init.d scripts 2012-09-26 15:42:37 -07:00
doc Bug #427152: Port of VLAN code to sysfs/iproue2 from vconfig lost the ability to create different vlans with the same ID but different interfaces on a single system. Implement it now. 2012-07-20 10:20:19 -07:00
etc Bring Back prefix support 2012-07-26 10:54:48 -05:00
init.d tmpfiles.d init.d scripts 2012-09-26 15:42:37 -07:00
init.d.misc further clean up OS differences in makefiles 2011-10-20 14:32:37 -05:00
local.d change local to run programs 2011-01-20 12:50:29 -06:00
man small runscript man page cleanups 2012-09-25 12:09:45 -05:00
mk Fix UPREFIX for Gentoo Prefix installations 2012-08-31 16:50:49 -05:00
net oldnet/iproute2.sh: fix carrier detection 2012-09-07 14:29:56 -05:00
pkgconfig Fix for make-3.82 breakage. 2010-08-22 15:05:11 -05:00
runlevels tmpfiles.d init.d scripts 2012-09-26 15:42:37 -07:00
scripts on_ac_power: Fix AC adapter presence recognition 2011-11-17 11:55:44 -06:00
sh tmpfiles.d init.d scripts 2012-09-26 15:42:37 -07:00
src fix RC_SVCDIR on prefix systems 2012-09-20 16:04:48 -05:00
support Whitespace 2012-01-22 01:17:42 +01:00
sysctl.d sysctl.d: fix README 2012-02-10 09:17:22 -06:00
test test: You need to run "make" before "make check" will work. 2011-01-18 01:49:22 +00:00
.gitignore clean up gitignore files 2011-06-03 17:07:22 -04:00
FEATURE-REMOVAL-SCHEDULE drop rc_sys funcs from removal schedule 2011-05-16 18:00:18 -04:00
Makefile fix Makefile indentation 2012-09-23 11:11:40 -05:00
Makefile.inc Release openrc-0.10 2012-05-22 10:04:34 -05:00
README add MKPREFIX flag to build system 2012-08-31 10:40:47 -05:00
README.newnet Revert "Deprecate the network and staticroute scripts" 2012-07-08 19:51:36 -05:00
STYLE Add commit message information to style guide 2011-07-13 15:33:04 -05:00
TODO Add a potential future problem I can see with metric calculation and interfaces that change often. 2012-03-02 19:51:09 +00:00

OpenRC README


Installation
------------
make install
Yup, that simple. Works with GNU make.

You may wish to tweak the installation with the below arguments
PROGLDFLAGS=-static
LIBNAME=lib64
DESTDIR=/tmp/openrc-image
MKNET=oldnet
MKPAM=pam
MKPREFIX=yes
MKPKGCONFIG=no
MKSELINUX=yes
MKSTATICLIBS=no
MKTERMCAP=ncurses
MKTERMCAP=termcap
PKG_PREFIX=/usr/pkg
LOCAL_PREFIX=/usr/local
PREFIX=/usr/local

We don't support building a static OpenRC with PAM.
You may need to use PROGLDFLAGS=-Wl,-Bstatic on glibc instead of just -static.
If you debug memory under valgrind, add -DDEBUG_MEMORY to your CPPFLAGS
so that all malloc memory should be freed at exit.
If you are building OpenRC for a Gentoo Prefix installation, add
MKPREFIX=yes.

You can also brand OpenRC if you so wish like so
BRANDING=\"Gentoo/$(uname -s)\"

PKG_PREFIX should be set to where packages install to by default.
LOCAL_PREFIX should be set when to where user maintained packages are.
Only set LOCAL_PREFIX if different from PKG_PREFIX.
PREFIX should be set when OpenRC is not installed to /.

If any of the following files exist then we do not overwrite them
/etc/devd.conf
/etc/rc
/etc/rc.shutdown
/etc/conf.d/*

rc and rc.shutdown are the hooks from the BSD init into OpenRC.
devd.conf is modified from FreeBSD to call /etc/rc.devd which is a generic
hook into OpenRC.
inittab is the same, but for SysVInit as used by most Linux distributions.
This can be found in the support folder.
Obviously, if you're installing this onto a system that does not use OpenRC
by default then you may wish to backup the above listed files, remove them
and then install so that the OS hooks into OpenRC.

init.d.misc is not installed by default as the scripts will need
tweaking on a per distro basis. They are also non essential to the operation
of the system.


Reporting Bugs
--------------
Since Gentoo Linux is hosting OpenRC development, Bugs should go to
the Gentoo Bugzilla:
	http://bugs.gentoo.org/
They should be filed under the "Gentoo Hosted Projects" product and
the "openrc" component.


History - by Roy Marples
------------------------
I became a Gentoo/Linux developer in 2004 and wrote the modular network
scripts for the Gentoo baselayout package. baselayout is a collection of
bash scripts to bring up your computer and its services.
Then towards the end of 2005 I found myself as the primary maintainer
for baselayout.

At the start of 2007, baselayout-2 is announced to the world, re-writing the
core of baselayout in C and allowing POSIX sh init scripts instead of
forcing the use of bash. By Mid 2007 I have re-written everything, including
init scripts, and alpha and pre baselayout-2 snapshots where put into Gentoo.
Towards the end of 2007 I retired as a Gentoo developer for reasons I won't
go into here. baselayout-2 was still in the pre stage, and aside from the
fbsd users, it was masked everywhere. However, I also desired to keep the
baselayout-2 project alive, but outside of Gentoo and into other projects
such as FreeBSD.

As such, the Gentoo Council have allowed the creation of OpenRC under the
2 clause BSD license, managed by me as an external project.