Compare commits
	
		
			1 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					1267025fb7 | 
							
								
								
									
										16
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										16
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -1,16 +0,0 @@
 | 
			
		||||
*.bz2
 | 
			
		||||
 | 
			
		||||
*.diff
 | 
			
		||||
*.patch
 | 
			
		||||
*.orig
 | 
			
		||||
*.rej
 | 
			
		||||
 | 
			
		||||
core
 | 
			
		||||
.gdb_history
 | 
			
		||||
.gdbinit
 | 
			
		||||
 | 
			
		||||
.depend
 | 
			
		||||
*.a
 | 
			
		||||
*.o
 | 
			
		||||
*.So
 | 
			
		||||
lib*.so
 | 
			
		||||
@@ -1,72 +0,0 @@
 | 
			
		||||
The following is a list of files and features that are going to be removed in
 | 
			
		||||
the source tree.  Every entry should contain what exactly is going away, why it
 | 
			
		||||
is happening, and who is going to be doing the work.  When the feature is
 | 
			
		||||
removed, it should also be removed from this file.
 | 
			
		||||
 | 
			
		||||
---------------------------
 | 
			
		||||
 | 
			
		||||
What: Service pause action
 | 
			
		||||
 | 
			
		||||
When: 1.0
 | 
			
		||||
 | 
			
		||||
Why: ...
 | 
			
		||||
 | 
			
		||||
Who:
 | 
			
		||||
 | 
			
		||||
---------------------------
 | 
			
		||||
 | 
			
		||||
What: start-stop-daemon options --startas, --chuid , --oknodo
 | 
			
		||||
 | 
			
		||||
When: 1.0
 | 
			
		||||
 | 
			
		||||
Why: Obsolete or replaced by other options.
 | 
			
		||||
	 --startas => use --name or --exec
 | 
			
		||||
	 --chuid => use --user
 | 
			
		||||
	 --oknodo => ignore return code instead
 | 
			
		||||
 | 
			
		||||
Who:
 | 
			
		||||
 | 
			
		||||
---------------------------
 | 
			
		||||
 | 
			
		||||
What: runscript and rc symbolic links
 | 
			
		||||
 | 
			
		||||
When: 1.0
 | 
			
		||||
 | 
			
		||||
Why: Deprecated in favor of openrc-run and openrc due to naming
 | 
			
		||||
	 conflicts with other software.
 | 
			
		||||
 | 
			
		||||
Who:
 | 
			
		||||
 | 
			
		||||
---------------------------
 | 
			
		||||
 | 
			
		||||
What: support for the opts variable in service scripts
 | 
			
		||||
 | 
			
		||||
When: 1.0
 | 
			
		||||
 | 
			
		||||
Why: Depprecated in favor of extra_commands, extra_started_commands
 | 
			
		||||
	 and extra_stopped_commands.
 | 
			
		||||
 | 
			
		||||
Who:
 | 
			
		||||
 | 
			
		||||
---------------------------
 | 
			
		||||
 | 
			
		||||
What: support for local_start and local_stop
 | 
			
		||||
 | 
			
		||||
When: 1.0
 | 
			
		||||
 | 
			
		||||
Why: Depprecated in favor of executable scripts in @SYSCONFDIR@/local.d
 | 
			
		||||
 | 
			
		||||
Who:
 | 
			
		||||
 | 
			
		||||
---------------------------
 | 
			
		||||
 | 
			
		||||
What: the mtab service script
 | 
			
		||||
 | 
			
		||||
When: make warnings more visible in 1.0, remove in 2.0
 | 
			
		||||
 | 
			
		||||
Why: /etc/mtab should be a symbolic link to /proc/self/mounts on modern
 | 
			
		||||
	 Linux systems
 | 
			
		||||
 | 
			
		||||
Who:
 | 
			
		||||
 | 
			
		||||
---------------------------
 | 
			
		||||
							
								
								
									
										34
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										34
									
								
								Makefile
									
									
									
									
									
								
							@@ -1,34 +0,0 @@
 | 
			
		||||
# OpenRC Makefile
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
include Makefile.inc
 | 
			
		||||
 | 
			
		||||
SUBDIR=		conf.d etc init.d local.d man scripts sh src sysctl.d
 | 
			
		||||
 | 
			
		||||
# Build pkgconfig or not
 | 
			
		||||
MKPKGCONFIG?=	yes
 | 
			
		||||
ifeq (${MKPKGCONFIG},yes)
 | 
			
		||||
SUBDIR+=	pkgconfig
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
# We need to ensure that runlevels is done last
 | 
			
		||||
SUBDIR+=	runlevels
 | 
			
		||||
 | 
			
		||||
INSTALLAFTER=	_installafter
 | 
			
		||||
 | 
			
		||||
MK= 		mk
 | 
			
		||||
include ${MK}/sys.mk
 | 
			
		||||
include ${MK}/os.mk
 | 
			
		||||
include ${MK}/subdir.mk
 | 
			
		||||
include ${MK}/dist.mk
 | 
			
		||||
include ${MK}/git.mk
 | 
			
		||||
 | 
			
		||||
_installafter:
 | 
			
		||||
ifeq (${MKPREFIX},yes)
 | 
			
		||||
	${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
 | 
			
		||||
else ifneq (${OS},Linux)
 | 
			
		||||
	${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
 | 
			
		||||
endif
 | 
			
		||||
	${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/tmp
 | 
			
		||||
	${ECHO} "${VERSION}${GITVER}" > ${DESTDIR}/${LIBEXECDIR}/version
 | 
			
		||||
@@ -1,3 +0,0 @@
 | 
			
		||||
NAME=		openrc
 | 
			
		||||
VERSION=	0.14
 | 
			
		||||
PKG=		${NAME}-${VERSION}
 | 
			
		||||
							
								
								
									
										44
									
								
								NEWS
									
									
									
									
									
								
							
							
						
						
									
										44
									
								
								NEWS
									
									
									
									
									
								
							@@ -1,44 +0,0 @@
 | 
			
		||||
OpenRC NEWS
 | 
			
		||||
 | 
			
		||||
This file will contain a list of notable changes for each release.
 | 
			
		||||
 | 
			
		||||
OpenRC-0.13.2
 | 
			
		||||
=============
 | 
			
		||||
 | 
			
		||||
A chroot variable has been added to the service script variables.
 | 
			
		||||
This fixes the support for running a service in a chroot.
 | 
			
		||||
This is documented in man 8 openrc-run.
 | 
			
		||||
 | 
			
		||||
The netmount service now mounts nfs file systems.
 | 
			
		||||
This change was made to correct a fix for an earlier bug.
 | 
			
		||||
 | 
			
		||||
OpenRC-0.13
 | 
			
		||||
===========
 | 
			
		||||
 | 
			
		||||
/sbin/rc was renamed to /sbin/openrc and /sbin/runscript was renamed to
 | 
			
		||||
/sbin/openrc-run due to naming conflicts with other software.
 | 
			
		||||
 | 
			
		||||
Backward compatible symbolic links are currently in place so your
 | 
			
		||||
system will keep working if you are using the old names; however, it is
 | 
			
		||||
strongly advised that you migrate to the new names because the symbolic
 | 
			
		||||
links will be removed in the future.
 | 
			
		||||
Warnings have been added to assist with this migration; however, due to the
 | 
			
		||||
level of noise they produce, they only appear in verbose mode in this release.
 | 
			
		||||
 | 
			
		||||
The devfs script now handles the initial mounting and setup of the
 | 
			
		||||
/dev directory. If /dev has already been mounted by the kernel or an
 | 
			
		||||
initramfs, devfs will remount /dev with the correct mount options
 | 
			
		||||
instead of mounting a second /dev over the existing mount point.
 | 
			
		||||
 | 
			
		||||
It attempts to mount /dev from fstab first if an entry exists there. If
 | 
			
		||||
it doesn't it attempts to mount devtmpfs if it is configured in the
 | 
			
		||||
kernel. If not, it attempts to mount tmpfs.
 | 
			
		||||
If none of these is available, an error message is displayed and static
 | 
			
		||||
/dev is assumed.
 | 
			
		||||
 | 
			
		||||
OpenRC-0.12
 | 
			
		||||
===========
 | 
			
		||||
 | 
			
		||||
The net.* scripts, originally from Gentoo Linux, have
 | 
			
		||||
been removed. If you need these scripts, look for a package called
 | 
			
		||||
netifrc, which is maintained by them.
 | 
			
		||||
							
								
								
									
										66
									
								
								README
									
									
									
									
									
								
							
							
						
						
									
										66
									
								
								README
									
									
									
									
									
								
							@@ -1,66 +0,0 @@
 | 
			
		||||
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=no
 | 
			
		||||
MKPAM=pam
 | 
			
		||||
MKPREFIX=yes
 | 
			
		||||
MKPKGCONFIG=no
 | 
			
		||||
MKSELINUX=yes
 | 
			
		||||
MKSTATICLIBS=no
 | 
			
		||||
MKTERMCAP=ncurses
 | 
			
		||||
MKTERMCAP=termcap
 | 
			
		||||
MKTOOLS=yes
 | 
			
		||||
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.
 | 
			
		||||
@@ -1,31 +0,0 @@
 | 
			
		||||
Using Busybox as your Default Shell
 | 
			
		||||
-----------------------------------
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
If you have/bin/sh linked to busybox, you need to be aware of several
 | 
			
		||||
incompatibilities between busybox's applets and the standalone
 | 
			
		||||
counterparts. Since it is possible to configure busybox to not include
 | 
			
		||||
these applets or to prefer the standalone counterparts, OpenRC does not
 | 
			
		||||
attempt to support the busybox applets.
 | 
			
		||||
 | 
			
		||||
For now, it is recommended that you disable the following busybox
 | 
			
		||||
configuration settings for best results with OpenRC.
 | 
			
		||||
 | 
			
		||||
CONFIG_START_STOP_DAEMON -- The start-stop-daemon applet is not compatible with
 | 
			
		||||
start-stop-daemon in OpenRC.
 | 
			
		||||
 | 
			
		||||
CONFIG_MOUNT -- The mount applet does not support the -O [no]_netdev options to
 | 
			
		||||
skip over or include network file systems when the -a option is present.
 | 
			
		||||
 | 
			
		||||
CONFIG_UMOUNT -- The umount applet does not support the -O option along with -a.
 | 
			
		||||
 | 
			
		||||
CONFIG_SWAPONOFF -- The swapon applet does not support the -e option
 | 
			
		||||
or recognize the nofail option in fstab.
 | 
			
		||||
 | 
			
		||||
CONFIG_SETFONT -- The setfont applet does not support the -u option from kbd.
 | 
			
		||||
 | 
			
		||||
CONFIG_IP -- The ip applet  doesn't support the "scope" modifier for
 | 
			
		||||
"ip route add" and "ip address add".
 | 
			
		||||
 | 
			
		||||
There is work to get most of these supported by busybox, so this file
 | 
			
		||||
will be updated as things change.
 | 
			
		||||
@@ -1,55 +0,0 @@
 | 
			
		||||
This history of OpenRC was written by Daniel Robbins, Roy Marples, William
 | 
			
		||||
Hubbs and others.
 | 
			
		||||
 | 
			
		||||
The Gentoo modular init scripts were developed by Daniel Robbins for Gentoo
 | 
			
		||||
Linux 1.0_rc6 during most of 2001 and released in September 2001. After their
 | 
			
		||||
development, the dependency-based init script system was maintained by a
 | 
			
		||||
number of senior developers, starting with Azarah (Martin Schlemmer), with
 | 
			
		||||
migration to the new init system assisted by Woodchip (Donnie Davies) who
 | 
			
		||||
converted all ebuild init scripts to work with the new system. As Grant
 | 
			
		||||
Goodyear notes: 
 | 
			
		||||
 | 
			
		||||
"My recollection is that one of woodchip's more impressive early feats
 | 
			
		||||
was the complete replacement of all of the init scripts in Portage
 | 
			
		||||
for Gentoo Linux 1.0_rc6. Through 1.0_rc5 Gentoo had used fairly
 | 
			
		||||
standard rc scripts modified from Stampede Linux, but for 1.0_rc6 Daniel
 | 
			
		||||
Robbins (drobbins) and Martin Schlemmer (azarah) had created a new
 | 
			
		||||
dependency-based init script system that is still used today. Within a
 | 
			
		||||
span of days Donny rewrote every single init script in the Portage tree
 | 
			
		||||
and committed new masked packages to await the release of 1.0_rc6. Thanks to
 | 
			
		||||
woodchip (and drobbins and azarah, of course) the
 | 
			
		||||
transition to the new init scripts was nearly painless." [1] 
 | 
			
		||||
 | 
			
		||||
Roy Marples became a Gentoo/Linux developer in 2004 and wrote the modular
 | 
			
		||||
network scripts for the Gentoo baselayout package. Towards the end of 2005,
 | 
			
		||||
he became the primary maintainer for baselayout and the init scripts. 
 | 
			
		||||
 | 
			
		||||
At the start of 2007, He announced the ongoing development of
 | 
			
		||||
baselayout-2, containing a rewritten core coded in C and allowing POSIX sh
 | 
			
		||||
init scripts instead of forcing the use of bash. By mid 2007, He had
 | 
			
		||||
re-implemented the Gentoo init script design created by Daniel Robbins,
 | 
			
		||||
using an entirely new code base. Alpha and pre-release baselayout-2
 | 
			
		||||
snapshots were added to Gentoo's Portage tree as an optional component.
 | 
			
		||||
 | 
			
		||||
Toward the end of 2007, Roy retired as a Gentoo developer.
 | 
			
		||||
Baselayout-2 was still in the pre stage, and aside from the gentoo-fbsd
 | 
			
		||||
users, it was masked. However, He desired to keep the baselayout-2
 | 
			
		||||
project moving forward as an independent project. The Gentoo Council
 | 
			
		||||
permitted Him to release OpenRC under the 2-clause BSD license,
 | 
			
		||||
managed by him as an external project. 
 | 
			
		||||
 | 
			
		||||
Around mid-2010, Roy decided to no longer maintain OpenRC. At this
 | 
			
		||||
point, he transferred development back to Gentoo.
 | 
			
		||||
 | 
			
		||||
William Hubbs, and several other Gentoo developers,  started working on
 | 
			
		||||
OpenRC around this point and brought OpenRC-0.8.x to Gentoo Linux's stable
 | 
			
		||||
tree in 2011.
 | 
			
		||||
 | 
			
		||||
In 2013 the OpenRC team became independent from Gentoo again and moved primary
 | 
			
		||||
development to github.
 | 
			
		||||
 | 
			
		||||
Daniel Robbins continues to maintain an independent, forked
 | 
			
		||||
version of OpenRC for Funtoo Linux, which includes a Funtoo-specific network
 | 
			
		||||
configuration system. 
 | 
			
		||||
 | 
			
		||||
[1] http://www.gentoo.org/news/en/gwn/20040426-newsletter.xml
 | 
			
		||||
@@ -1,36 +0,0 @@
 | 
			
		||||
OpenRC Network Ideals
 | 
			
		||||
---------------------
 | 
			
		||||
 | 
			
		||||
The new style networking for OpenRC is very simplistic - provide a basic means
 | 
			
		||||
of configuring static interface address and routes whilst allowing the
 | 
			
		||||
possibility to run any command at any point.
 | 
			
		||||
 | 
			
		||||
In a nutshell, init.d/network is a wrapper around ifconfig(8) and
 | 
			
		||||
init.d/staticroute is wrapper around route(8).
 | 
			
		||||
 | 
			
		||||
In the Perfect World (TM) ifconfig should be able to configure everything
 | 
			
		||||
about the interface easily * . The BSD family almost get this right and Linux
 | 
			
		||||
epically fails.
 | 
			
		||||
 | 
			
		||||
* Only static configuration, including link setup.
 | 
			
		||||
For dynamic, static, IPv4LL, arping and per ssid IPv4 setup dhcpcd-5.x
 | 
			
		||||
provides your needs.
 | 
			
		||||
 | 
			
		||||
It fails because there are many tools to do the same job and often have
 | 
			
		||||
vastly different syntax where they could be similar. In other words, there
 | 
			
		||||
is no coherence.
 | 
			
		||||
 | 
			
		||||
OpenRC-0.4.x and older (inc Gentoo baselayout-1) had a collection of scripts
 | 
			
		||||
for each tool and allowed a script per interface. Over the years, this design
 | 
			
		||||
has proven very hard to maintain as each user has their own idea of how
 | 
			
		||||
things should work. Also, there were (and still are) race conditions.
 | 
			
		||||
 | 
			
		||||
So where do we go from here?
 | 
			
		||||
Well, it's possible to use the new network scripts using the tools
 | 
			
		||||
currently available. It's just harder as you have to know them and their
 | 
			
		||||
documentation can be lacking at times.
 | 
			
		||||
The correct end goal is a BSD style ifconfig tool.
 | 
			
		||||
I've started work on it, but the project has stalled somewhat.
 | 
			
		||||
It's display only right now and the source is not yet publicly available.
 | 
			
		||||
If you have the skills and share the vision then contact me privately and
 | 
			
		||||
we'll take it from there.
 | 
			
		||||
							
								
								
									
										85
									
								
								STYLE
									
									
									
									
									
								
							
							
						
						
									
										85
									
								
								STYLE
									
									
									
									
									
								
							@@ -1,85 +0,0 @@
 | 
			
		||||
This is the openrc style manual.  It governs the coding style of all code
 | 
			
		||||
in this repository.  Follow it.  Contact openrc@gentoo.org for any questions
 | 
			
		||||
or fixes you might notice.
 | 
			
		||||
 | 
			
		||||
##########
 | 
			
		||||
# C CODE #
 | 
			
		||||
##########
 | 
			
		||||
 | 
			
		||||
The BSD Kernel Normal Form (KNF) style is used:
 | 
			
		||||
	http://en.wikipedia.org/wiki/Indent_style#BSD_KNF_style
 | 
			
		||||
Basically, it's like K&R/LKML, but wrapped lines that are indented use 4 spaces.
 | 
			
		||||
 | 
			
		||||
Highlights:
 | 
			
		||||
	- no trailing whitespace
 | 
			
		||||
	- indented code use tabs (not line wrapped)
 | 
			
		||||
	- cuddle the braces (except for functions)
 | 
			
		||||
	- space after native statements and before paren (for/if/while/...)
 | 
			
		||||
	- no space between function and paren
 | 
			
		||||
	- pointer asterisk cuddles the variable, not the type
 | 
			
		||||
 | 
			
		||||
void foo(int c)
 | 
			
		||||
{
 | 
			
		||||
	int ret = 0;
 | 
			
		||||
 | 
			
		||||
	if (c > 1000)
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
	while (c--) {
 | 
			
		||||
		bar(c);
 | 
			
		||||
		ret++;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return ret;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
##################
 | 
			
		||||
# COMMIT MESSAGES #
 | 
			
		||||
##################
 | 
			
		||||
 | 
			
		||||
The following is an example of a correctly formatted git commit message
 | 
			
		||||
for this repository. Most of this information came from this blog post
 | 
			
		||||
[1], so I would like to thank the author.
 | 
			
		||||
 | 
			
		||||
### cut here ###
 | 
			
		||||
Capitalized, short (50 chars or less) summary
 | 
			
		||||
 | 
			
		||||
More detailed explanatory text, if necessary.  Wrap it to about 72
 | 
			
		||||
characters or so.  In some contexts, the first line is treated as the
 | 
			
		||||
subject of an email and the rest of the text as the body.  The blank
 | 
			
		||||
line separating the summary from the body is critical (unless you omit
 | 
			
		||||
the body entirely); tools like rebase can get confused if you run the
 | 
			
		||||
two together.
 | 
			
		||||
 | 
			
		||||
Write your commit message in the imperative: "Fix bug" and not "Fixed
 | 
			
		||||
bug."  This convention matches up with commit messages generated by
 | 
			
		||||
commands like git merge and git revert.
 | 
			
		||||
 | 
			
		||||
Further paragraphs come after blank lines.
 | 
			
		||||
 | 
			
		||||
- Bullet points are okay, too
 | 
			
		||||
 | 
			
		||||
- Typically a hyphen or asterisk is used for the bullet, preceded by a
 | 
			
		||||
  single space, with blank lines in between, but conventions vary here
 | 
			
		||||
 | 
			
		||||
- Use a hanging indent
 | 
			
		||||
 | 
			
		||||
Reported-by: User Name <email>
 | 
			
		||||
X-[Distro]-Bug: BugID
 | 
			
		||||
X-[Distro]-Bug-URL: URL for the bug (on the distribution's web site typically)
 | 
			
		||||
### cut here ###
 | 
			
		||||
 | 
			
		||||
If you did not write the code and the patch does not include authorship
 | 
			
		||||
information in a format git can use, please use the --author option of the
 | 
			
		||||
git commit command to make the authorship correct.
 | 
			
		||||
 | 
			
		||||
The Reported-by tag is required if the person who reported the bug is
 | 
			
		||||
different from the author and committer.
 | 
			
		||||
 | 
			
		||||
  The X-[Distro]-Bug/Bug-URL tags are required if this commit is related
 | 
			
		||||
  to a bug reported to us by a specific distribution   of linux or a
 | 
			
		||||
  *BSD. Also, [Distro] should be replaced with the name of the
 | 
			
		||||
  distribution, e.g. X-Gentoo-Bug.
 | 
			
		||||
 | 
			
		||||
[1] http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										21
									
								
								TODO
									
									
									
									
									
								
							
							
						
						
									
										21
									
								
								TODO
									
									
									
									
									
								
							@@ -1,21 +0,0 @@
 | 
			
		||||
- ensure all forks block, restore and unblock signals. needs review
 | 
			
		||||
 | 
			
		||||
- add support somehow for optional translations
 | 
			
		||||
 | 
			
		||||
- oldnet[bridging]: Review setting of bridge configuration on dynamic interface add
 | 
			
		||||
 | 
			
		||||
- Document rc-depend binary.
 | 
			
		||||
 | 
			
		||||
- _ifindex is not a reliable means of calculating metrics:
 | 
			
		||||
	_ifindex is used for calculating metrics for new devices but has a major
 | 
			
		||||
	problem: Since it's only the nth entry in /proc/net/dev
 | 
			
		||||
	And devices may be removed from that file, and reordered, you won't always
 | 
			
		||||
	get the same result.
 | 
			
		||||
	If you do:
 | 
			
		||||
	- add eth0 - _ifindex (eth0=0)
 | 
			
		||||
	- add vlan1 - _ifindex (eth0=0,vlan1=1)
 | 
			
		||||
	- add vlan2 - _ifindex (eth0=0,vlan1=1,vlan2=2)
 | 
			
		||||
	- rem vlan1 - _ifindex (eth0=0,vlan2=1)
 | 
			
		||||
	- add vlan3 - _ifindex (eth0=0,vlan2=1,vlan3=2)
 | 
			
		||||
	Now your routing table has entries for both vlan2 and vlan3 with a metric of 2.
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										2
									
								
								conf.d/.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								conf.d/.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -1,2 +0,0 @@
 | 
			
		||||
network
 | 
			
		||||
staticroute
 | 
			
		||||
@@ -1,28 +0,0 @@
 | 
			
		||||
include ../mk/net.mk
 | 
			
		||||
 | 
			
		||||
DIR=	${CONFDIR}
 | 
			
		||||
CONF=	bootmisc fsck hostname localmount netmount urandom tmpfiles \
 | 
			
		||||
		${CONF-${OS}}
 | 
			
		||||
 | 
			
		||||
ifeq (${MKNET},yes)
 | 
			
		||||
CONF+= network staticroute
 | 
			
		||||
TARGETS+=	network staticroute
 | 
			
		||||
CLEANFILES+=	network staticroute
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
MK=	../mk
 | 
			
		||||
include ${MK}/os.mk
 | 
			
		||||
 | 
			
		||||
CONF-FreeBSD=	ipfw moused powerd rarpd savecore syscons
 | 
			
		||||
 | 
			
		||||
CONF-Linux=	consolefont devfs dmesg hwclock keymaps killprocs modules
 | 
			
		||||
 | 
			
		||||
CONF-NetBSD=	moused rarpd savecore
 | 
			
		||||
 | 
			
		||||
include ${MK}/scripts.mk
 | 
			
		||||
 | 
			
		||||
network: network.in network${SFX}
 | 
			
		||||
	cat $^ > $@
 | 
			
		||||
 | 
			
		||||
staticroute: staticroute${SFX}
 | 
			
		||||
	cp $@${SFX} $@
 | 
			
		||||
@@ -1,10 +0,0 @@
 | 
			
		||||
# Set CLOCK to "UTC" if your system clock is set to UTC (also known as
 | 
			
		||||
# Greenwich Mean Time).  If your clock is set to the local time, then
 | 
			
		||||
# set CLOCK to "local".  Note that if you dual boot with Windows, then
 | 
			
		||||
# you should set it to "local".
 | 
			
		||||
clock="UTC"
 | 
			
		||||
 | 
			
		||||
# If you want to set the Hardware Clock to the current System Time
 | 
			
		||||
# during shutdown, then say "YES" here.
 | 
			
		||||
# You normally don't need to do this if you run a ntp daemon.
 | 
			
		||||
clock_systohc="NO"
 | 
			
		||||
@@ -1,10 +0,0 @@
 | 
			
		||||
# List of /tmp directories we should clean up
 | 
			
		||||
clean_tmp_dirs="/tmp"
 | 
			
		||||
 | 
			
		||||
# Should we wipe the tmp paths completely or just selectively remove known
 | 
			
		||||
# locks / files / etc... ?
 | 
			
		||||
wipe_tmp="YES"
 | 
			
		||||
 | 
			
		||||
# Write the initial dmesg log into /var/log/dmesg after boot
 | 
			
		||||
# This may be useful if you need the kernel boot log afterwards
 | 
			
		||||
log_dmesg="YES"
 | 
			
		||||
@@ -1,18 +0,0 @@
 | 
			
		||||
# The consolefont service is not activated by default. If you need to
 | 
			
		||||
# use it, you should run "rc-update add consolefont boot" as root.
 | 
			
		||||
#
 | 
			
		||||
# consolefont specifies the default font that you'd like Linux to use on the
 | 
			
		||||
# console.  You can find a good selection of fonts in /usr/share/consolefonts;
 | 
			
		||||
# you shouldn't specify the trailing ".psf.gz", just the font name below.
 | 
			
		||||
# To use the default console font, comment out the CONSOLEFONT setting below.
 | 
			
		||||
consolefont="default8x16"
 | 
			
		||||
 | 
			
		||||
# consoletranslation is the charset map file to use.  Leave commented to use
 | 
			
		||||
# the default one.  Have a look in /usr/share/consoletrans for a selection of
 | 
			
		||||
# map files you can use.
 | 
			
		||||
#consoletranslation="8859-1_to_uni"
 | 
			
		||||
 | 
			
		||||
# unicodemap is the unicode map file to use. Leave commented to use the
 | 
			
		||||
# default one. Have a look in /usr/share/unimaps for a selection of map files
 | 
			
		||||
# you can use.
 | 
			
		||||
#unicodemap="iso01"
 | 
			
		||||
@@ -1,8 +0,0 @@
 | 
			
		||||
# OpenRC will attempt each of the following in succession to mount /dev.
 | 
			
		||||
#
 | 
			
		||||
# 1. If there is an entry for /dev in fstab, it will be used.
 | 
			
		||||
# 2. If devtmpfs is defined in the kernel, it will be used.
 | 
			
		||||
# 3. If tmpfs is defined in the kernel, it will be used.
 | 
			
		||||
#
 | 
			
		||||
# Set this to yes if you do not want OpenRC to attempt to mount /dev.
 | 
			
		||||
# skip_mount_dev="NO"
 | 
			
		||||
@@ -1,3 +0,0 @@
 | 
			
		||||
# Sets the level at which logging of messages is done to the
 | 
			
		||||
# console.  See dmesg(1) for more info.
 | 
			
		||||
dmesg_level="1"
 | 
			
		||||
							
								
								
									
										34
									
								
								conf.d/fsck
									
									
									
									
									
								
							
							
						
						
									
										34
									
								
								conf.d/fsck
									
									
									
									
									
								
							@@ -1,34 +0,0 @@
 | 
			
		||||
# Pass any arguments to fsck.
 | 
			
		||||
# By default we preen.
 | 
			
		||||
# Linux systems also force -C0 and -T.
 | 
			
		||||
# If fsck_args is not specified then Linux systems also use -A
 | 
			
		||||
# (and -R if / is rw)
 | 
			
		||||
#fsck_args="-p"
 | 
			
		||||
 | 
			
		||||
# We can also specify the passno in /etc/fstab to check
 | 
			
		||||
# If you multiplex fsck (ie ln -s fsck /etc/init.d/fsck.late) then you can
 | 
			
		||||
# do an fsck outside of the normal scope, say for /home.
 | 
			
		||||
# Here are some exampes:-
 | 
			
		||||
#fsck_passno="=1 =2"
 | 
			
		||||
#fsck_passno=">1"
 | 
			
		||||
#fsck_passno="<2"
 | 
			
		||||
 | 
			
		||||
# If passno is not enough granularity, you can also specify mountpoints to
 | 
			
		||||
# check. This should NOT be used for the default non-multiplexed fsck, or your
 | 
			
		||||
# system might not be checked. Additionally, it is mutually exclusive with
 | 
			
		||||
# the fsck_passno setting.
 | 
			
		||||
#fsck_mnt=""
 | 
			
		||||
#fsck_mnt="/home"
 | 
			
		||||
 | 
			
		||||
# Most modern fs's don't require a full fsck on boot, but for those that do
 | 
			
		||||
# it may be advisable to skip this when running on battery.
 | 
			
		||||
# WARNING: Do not turn this off if you have any JFS partitions.
 | 
			
		||||
fsck_on_battery="YES"
 | 
			
		||||
 | 
			
		||||
# fsck_shutdown causes fsck to trigger during shutdown as well as startup.
 | 
			
		||||
# The end result of this is that if any periodic non-root filesystem checks are
 | 
			
		||||
# scheduled, under normal circumstances the actual check will happen during
 | 
			
		||||
# shutdown rather than at next boot.
 | 
			
		||||
# This is useful when periodic filesystem checks are causing undesirable
 | 
			
		||||
# delays at startup, but such delays at shutdown are acceptable.
 | 
			
		||||
fsck_shutdown="NO"
 | 
			
		||||
@@ -1,2 +0,0 @@
 | 
			
		||||
# Set to the hostname of this machine
 | 
			
		||||
hostname="localhost"
 | 
			
		||||
@@ -1,20 +0,0 @@
 | 
			
		||||
# Set CLOCK to "UTC" if your Hardware Clock is set to UTC (also known as
 | 
			
		||||
# Greenwich Mean Time).  If that clock is set to the local time, then
 | 
			
		||||
# set CLOCK to "local".  Note that if you dual boot with Windows, then
 | 
			
		||||
# you should set it to "local".
 | 
			
		||||
clock="UTC"
 | 
			
		||||
 | 
			
		||||
# If you want the hwclock script to set the system time (software clock)
 | 
			
		||||
# to match the current hardware clock during bootup, leave this
 | 
			
		||||
# commented out.
 | 
			
		||||
# However, you can set this to "NO" if you are running a modern kernel
 | 
			
		||||
# and using NTP to synchronize your system clock.
 | 
			
		||||
#clock_hctosys="YES"
 | 
			
		||||
 | 
			
		||||
# If you do not want to set the hardware clock to the current system
 | 
			
		||||
# time (software clock) during shutdown, set this to no.
 | 
			
		||||
#clock_systohc="YES"
 | 
			
		||||
 | 
			
		||||
# If you wish to pass any other arguments to hwclock during bootup,
 | 
			
		||||
# you may do so here. Alpha users may wish to use --arc or --srm here.
 | 
			
		||||
clock_args=""
 | 
			
		||||
							
								
								
									
										14
									
								
								conf.d/ipfw
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								conf.d/ipfw
									
									
									
									
									
								
							@@ -1,14 +0,0 @@
 | 
			
		||||
# ipfw provides a stateful firewall.
 | 
			
		||||
# This means we allow everything out, and if we have a connection we allow it
 | 
			
		||||
# back in. This is very flexable and quite secure.
 | 
			
		||||
 | 
			
		||||
# For ease of use, we allow auth and ssh ports through as well.
 | 
			
		||||
# To override the list of allowed ports
 | 
			
		||||
#ipfw_ports_in="auth ssh"
 | 
			
		||||
 | 
			
		||||
# You may want to enable logging of denied connections
 | 
			
		||||
#ipfw_log_deny="YES"
 | 
			
		||||
 | 
			
		||||
# This ports not logged
 | 
			
		||||
#ipfw_ports_nolog="135-139,445 1026,1027 1433,1434"
 | 
			
		||||
 | 
			
		||||
@@ -1,23 +0,0 @@
 | 
			
		||||
# Use keymap to specify the default console keymap.  There is a complete tree
 | 
			
		||||
# of keymaps in /usr/share/keymaps to choose from.
 | 
			
		||||
keymap="us"
 | 
			
		||||
 | 
			
		||||
# Should we first load the 'windowkeys' console keymap?  Most x86 users will
 | 
			
		||||
# say "yes" here.  Note that non-x86 users should leave it as "no".
 | 
			
		||||
# Loading this keymap will enable VT switching (like ALT+Left/Right)
 | 
			
		||||
# using the special windows keys on the linux console.
 | 
			
		||||
windowkeys="NO"
 | 
			
		||||
 | 
			
		||||
# The maps to load for extended keyboards.  Most users will leave this as is.
 | 
			
		||||
extended_keymaps=""
 | 
			
		||||
#extended_keymaps="backspace keypad euro2"
 | 
			
		||||
 | 
			
		||||
# Tell dumpkeys(1) to interpret character action codes to be
 | 
			
		||||
# from the specified character set.
 | 
			
		||||
# This only matters if you set unicode="yes" in /etc/rc.conf.
 | 
			
		||||
# For a list of valid sets, run `dumpkeys --help`
 | 
			
		||||
dumpkeys_charset=""
 | 
			
		||||
 | 
			
		||||
# Some fonts map AltGr-E to the currency symbol instead of the Euro.
 | 
			
		||||
# To fix this, set to "yes"
 | 
			
		||||
fix_euro="NO"
 | 
			
		||||
@@ -1,3 +0,0 @@
 | 
			
		||||
# If you wish to pass any options to killall5 during shutdown,
 | 
			
		||||
# you should do so here.
 | 
			
		||||
killall5_opts=""
 | 
			
		||||
@@ -1,3 +0,0 @@
 | 
			
		||||
# Stop the unmounting of certain points.
 | 
			
		||||
# This could be useful for some NFS related work.
 | 
			
		||||
#no_umounts="/dir1:/var/dir2"
 | 
			
		||||
@@ -1,23 +0,0 @@
 | 
			
		||||
# You can define a list modules for a specific kernel version,
 | 
			
		||||
# a released kernel version, a main kernel version or just a list.
 | 
			
		||||
# The most specific versioned variable will take precedence.
 | 
			
		||||
#modules_2_6_23_gentoo_r5="ieee1394 ohci1394"
 | 
			
		||||
#modules_2_6_23="tun ieee1394"
 | 
			
		||||
#modules_2_6="tun"
 | 
			
		||||
#modules_2="ipv6"
 | 
			
		||||
#modules="ohci1394"
 | 
			
		||||
 | 
			
		||||
# You can give modules a different name when they load - the new name
 | 
			
		||||
# will also be used to pick arguments below.
 | 
			
		||||
#modules="dummy:dummy1"
 | 
			
		||||
 | 
			
		||||
# Give the modules some arguments if needed, per version if necessary.
 | 
			
		||||
# Again, the most specific versioned variable will take precedence.
 | 
			
		||||
#module_ieee1394_args="debug"
 | 
			
		||||
#module_ieee1394_args_2_6_23_gentoo_r5="debug2"
 | 
			
		||||
#module_ieee1394_args_2_6_23="debug3"
 | 
			
		||||
#module_ieee1394_args_2_6="debug4"
 | 
			
		||||
#module_ieee1394_args_2="debug5"
 | 
			
		||||
 | 
			
		||||
# You should consult your kernel documentation and configuration
 | 
			
		||||
# for a list of modules and their options.
 | 
			
		||||
@@ -1,16 +0,0 @@
 | 
			
		||||
# See the moused man page for available settings.
 | 
			
		||||
 | 
			
		||||
# Set to your mouse device psm[0-9] for PS/2 ports, ums[0-9] for USB ports
 | 
			
		||||
# Leave blank to try to autodetect it
 | 
			
		||||
#moused_device="/dev/psm0"
 | 
			
		||||
 | 
			
		||||
# Any additional arguments required for a specific port
 | 
			
		||||
#moused_args_psm0=""
 | 
			
		||||
# or for all mice
 | 
			
		||||
#moused_args=""
 | 
			
		||||
 | 
			
		||||
# You can also multiplex the init script for each device like so
 | 
			
		||||
#   ln -s moused /etc/init.d/moused.ums0
 | 
			
		||||
# This enables you to have a config file per mouse (forces moused_device
 | 
			
		||||
# to ums0 in this case) and control each mouse.
 | 
			
		||||
# devd can also start and stop these mice, which laptop users will find handy.
 | 
			
		||||
@@ -1,40 +0,0 @@
 | 
			
		||||
# You will need to set the dependencies in the netmount script to match
 | 
			
		||||
# the network configuration tools you are using. This should be done in
 | 
			
		||||
# this file by following the examples below, and not by changing the
 | 
			
		||||
# service script itself.
 | 
			
		||||
#
 | 
			
		||||
# Each of these examples is meant to be used separately. So, for
 | 
			
		||||
# example, do not set rc_need to something like "net.eth0 dhcpcd".
 | 
			
		||||
#
 | 
			
		||||
# If you are using newnet and configuring your interfaces with static
 | 
			
		||||
# addresses with the network script, you  should use this setting.
 | 
			
		||||
#
 | 
			
		||||
#rc_need="network"
 | 
			
		||||
#
 | 
			
		||||
# If you are using oldnet, you must list the specific net.* services you
 | 
			
		||||
# need.
 | 
			
		||||
#
 | 
			
		||||
# This example assumes all of your netmounts can be reached on
 | 
			
		||||
# eth0.
 | 
			
		||||
#
 | 
			
		||||
#rc_need="net.eth0"
 | 
			
		||||
#
 | 
			
		||||
# This example assumes some of your netmounts are on eth1 and some
 | 
			
		||||
# are on eth2.
 | 
			
		||||
#
 | 
			
		||||
#rc_need="net.eth1 net.eth2"
 | 
			
		||||
#
 | 
			
		||||
# If you are using a dynamic network management tool like
 | 
			
		||||
# networkmanager, dhcpcd in standalone mode, wicd, badvpn-ncd, etc, to
 | 
			
		||||
# manage the network interfaces with the routes to your netmounts, you
 | 
			
		||||
# should list that tool.
 | 
			
		||||
#
 | 
			
		||||
#rc_need="networkmanager"
 | 
			
		||||
#rc_need="dhcpcd"
 | 
			
		||||
#rc_need="wicd"
 | 
			
		||||
#
 | 
			
		||||
# The default setting is designed to be backward compatible with our
 | 
			
		||||
# current setup, but you are highly discouraged from using this. In
 | 
			
		||||
# other words, please change it to be more suited to your system.
 | 
			
		||||
#
 | 
			
		||||
rc_need="net"
 | 
			
		||||
@@ -1,4 +0,0 @@
 | 
			
		||||
 | 
			
		||||
# You can assign a default route
 | 
			
		||||
#defaultroute="192.168.0.1"
 | 
			
		||||
#defaultroute6="2001:a:b:c"
 | 
			
		||||
@@ -1,4 +0,0 @@
 | 
			
		||||
 | 
			
		||||
# You can assign a default route
 | 
			
		||||
#defaultroute="192.168.0.1"
 | 
			
		||||
#defaultroute6="2001:a:b:c"
 | 
			
		||||
@@ -1,4 +0,0 @@
 | 
			
		||||
 | 
			
		||||
# You can assign a default route
 | 
			
		||||
#defaultroute="gw 192.168.0.1"
 | 
			
		||||
#defaultroute6="gw 2001:a:b:c"
 | 
			
		||||
@@ -1,43 +0,0 @@
 | 
			
		||||
 | 
			
		||||
# You can assign a default route
 | 
			
		||||
#defaultroute="gw 192.168.0.1"
 | 
			
		||||
#defaultroute6="gw 2001:a:b:c"
 | 
			
		||||
 | 
			
		||||
# ifconfig under Linux is not that powerful and doesn't easily handle
 | 
			
		||||
# multiple addresses
 | 
			
		||||
# On the other hand, ip (iproute2) is quite powerful and is also supported
 | 
			
		||||
#ip_eth0="192.168.0.10/24; 192.168.10.10/24"
 | 
			
		||||
 | 
			
		||||
# You can also use ip to add the default route.
 | 
			
		||||
#defaultiproute="via 192.168.0.1"
 | 
			
		||||
#defaultiproute6="via 2001:a:b:c"
 | 
			
		||||
 | 
			
		||||
# ip doesn't handle MTU like ifconfig, but we can do it like so
 | 
			
		||||
#ifup_eth0="ip link set \$int mtu 1500"
 | 
			
		||||
 | 
			
		||||
# Create a bonded interface
 | 
			
		||||
#interfaces="bond0"
 | 
			
		||||
#ifup_bond0="modprobe bonding; ifconfig \$int up; ifenslave \$int bge0"
 | 
			
		||||
#ifconfig_bond0="192.168.0.10 netmask 255.255.255.0"
 | 
			
		||||
#ifdown_bond0="rmmod bonding"
 | 
			
		||||
 | 
			
		||||
# Create tap interface and a bridge interface.
 | 
			
		||||
# We add the tap to the bridge.
 | 
			
		||||
# An external program, like dhcpcd, will configure the IP on the bridge
 | 
			
		||||
#interfaces="tun0 br0"
 | 
			
		||||
#ifup_tun0="tunctl -t \$int"
 | 
			
		||||
#ifdown_tun0="tunctl -d \$int"
 | 
			
		||||
#ifup_br0="brctl addbr \$int; brctl add \$int eth1; brtctl add \$int eth2"
 | 
			
		||||
#ifdown_br0="ifconfig \$int down; btctl delbr \$int"
 | 
			
		||||
 | 
			
		||||
# Create VLAN
 | 
			
		||||
#interfaces="eth0_2 eth0_3 eth0_4"
 | 
			
		||||
#ifup_eth0="vconfig add \$int 2; vconfig add \$int 3; vconfig add \$int 4"
 | 
			
		||||
#ifconfig_eth0_2="192.168.2.10 netmask 255.255.255.0"
 | 
			
		||||
#ifconfig_eth0_3="192.168.3.10 netmask 255.255.255.0"
 | 
			
		||||
#ifconfig_eth0_4="192.168.4.10 netmask 255.255.255.0"
 | 
			
		||||
#ifdown_eth0="vconfig rem \$int.2; vconfig rem \$int.3; vconfig rem \$int.4"
 | 
			
		||||
 | 
			
		||||
# Normally you would use wpa_supplicant to configure wireless, but you can
 | 
			
		||||
# use iwconfig also
 | 
			
		||||
#ifup_wlan0="iwconfig \$int key s:secretkey enc open essid foobar"
 | 
			
		||||
@@ -1,28 +0,0 @@
 | 
			
		||||
# Assign static IP addresses and run custom scripts per interface.
 | 
			
		||||
# Seperate commands with ;
 | 
			
		||||
# Prefix with ! to run a shell script.
 | 
			
		||||
# Use \$int to represent the interface
 | 
			
		||||
#ifconfig_eth0="192.168.0.10 netmask 255.255.255.0"
 | 
			
		||||
 | 
			
		||||
# You also have ifup_eth0 and ifdown_eth0 to run other commands when
 | 
			
		||||
# eth0 is started and stopped.
 | 
			
		||||
# You should note that we don't stop the network at system shutdown by default.
 | 
			
		||||
# If you really need this, then set keep_network=NO
 | 
			
		||||
 | 
			
		||||
# Lastly, the interfaces variable pulls in virtual interfaces that cannot
 | 
			
		||||
# be automatically detected.
 | 
			
		||||
#interfaces="br0 bond0 vlan0"
 | 
			
		||||
 | 
			
		||||
# You can also use files instead of variables here if you like:
 | 
			
		||||
# /etc/ifconfig.eth0 is equivalent to ifconfig_eth0
 | 
			
		||||
# /etc/ip.eth0 is equivalent to ifconfig_eth0
 | 
			
		||||
# /etc/ifup.eth0 is equivalent to ifup_eth0
 | 
			
		||||
# /etc/ifdown.eth0 is equivalent to ifdown_eth0
 | 
			
		||||
# Any files found will automatically be put into the interfaces variable.
 | 
			
		||||
# You don't need to escape variables in files, so use $int instead of \$int.
 | 
			
		||||
 | 
			
		||||
# If you require DHCP, you should install dhcpcd and it to the boot or
 | 
			
		||||
# default runlevel.
 | 
			
		||||
 | 
			
		||||
# NIS users can set the domain name here
 | 
			
		||||
#domainname="foobar"
 | 
			
		||||
@@ -1,7 +0,0 @@
 | 
			
		||||
# Mode allowed: maximum, minimum, adaptive
 | 
			
		||||
# Default unless specified is adaptive
 | 
			
		||||
powerd_ac_mode="maximum"
 | 
			
		||||
#powerd_battery_mode="minimum"
 | 
			
		||||
 | 
			
		||||
# Addiditonal arguments for powerd - see the man page for details
 | 
			
		||||
powerd_args=""
 | 
			
		||||
@@ -1,3 +0,0 @@
 | 
			
		||||
# To start rarpd only for a given interface, set the
 | 
			
		||||
# following variable. Otherwise we listen on all interfaces.
 | 
			
		||||
#rarpd_interface="rl0"
 | 
			
		||||
@@ -1,25 +0,0 @@
 | 
			
		||||
# Unless you're a kernel developer or driver writer then this won't
 | 
			
		||||
# be of any interest to you at all.
 | 
			
		||||
# The following options allow to configure the kernel's core dump
 | 
			
		||||
# facilities.
 | 
			
		||||
 | 
			
		||||
# The dump_device variable is used to specify which device will be
 | 
			
		||||
# used by the kernel to write the dump down. This has to be a swap
 | 
			
		||||
# partition, and has to be at least big enough to contain the whole
 | 
			
		||||
# physical memory (see hw.physmem sysctl(8) variable).
 | 
			
		||||
# When the variable is commented out, no core dump will be enabled for
 | 
			
		||||
# the kernel.
 | 
			
		||||
#dump_device=/dev/ad0s1b
 | 
			
		||||
 | 
			
		||||
# The dump_dir variable is used to tell savecore(8) utility where
 | 
			
		||||
# to save the kernel core dump once it's restored from the dump
 | 
			
		||||
# device. If unset, /var/crash will be used, as the default of
 | 
			
		||||
# FreeBSD.
 | 
			
		||||
#dump_dir=/var/crash
 | 
			
		||||
 | 
			
		||||
# The dump_compress variable decide whether to compress with
 | 
			
		||||
# gzip(1) the dump or leave it of its original size (the size of the
 | 
			
		||||
# physical memory present on the system). If set to yes, the -z option
 | 
			
		||||
# will be passed to savecore(8) that will proceed on compressing the
 | 
			
		||||
# dump.
 | 
			
		||||
#dump_compress=NO
 | 
			
		||||
@@ -1,6 +0,0 @@
 | 
			
		||||
# Separate multiple routes using ; or new lines.
 | 
			
		||||
# /etc/route.conf(5) takes precedence over this configuration.
 | 
			
		||||
 | 
			
		||||
# Example static routes. See route(8) for syntax.
 | 
			
		||||
#staticroute="net 192.168.0.0 -netmask 255.255.255.0 10.73.1.1
 | 
			
		||||
#net 192.168.1.0 -netmask 255.255.255.0 10.73.1.1"
 | 
			
		||||
@@ -1,5 +0,0 @@
 | 
			
		||||
# Separate multiple routes using ; or new lines.
 | 
			
		||||
 | 
			
		||||
# Example static routes. See route(8) for syntax.
 | 
			
		||||
#staticroute="net 192.168.0.0 10.73.1.1 netmask 255.255.255.0
 | 
			
		||||
#net 192.168.1.0 10.73.1.1 netmask 255.255.255.0"
 | 
			
		||||
@@ -1,7 +0,0 @@
 | 
			
		||||
# Separate multiple routes using ; or new lines.
 | 
			
		||||
# /etc/route.conf(5) takes precedence over this configuration.
 | 
			
		||||
 | 
			
		||||
# Example static routes. See route(8) for syntax.
 | 
			
		||||
# FIXME: "net ..." not supported
 | 
			
		||||
#staticroute="net 192.168.0.0 -netmask 255.255.255.0 --address 10.73.1.1
 | 
			
		||||
#net 192.168.1.0 -netmask 255.255.255.0 --address 10.73.1.1"
 | 
			
		||||
@@ -1,8 +0,0 @@
 | 
			
		||||
# Separate multiple routes using ; or new lines.
 | 
			
		||||
 | 
			
		||||
# Example static routes. See route(8) for syntax.
 | 
			
		||||
#staticroute="net 192.168.0.0 netmask 255.255.255.0 gw 10.73.1.1
 | 
			
		||||
#net 192.168.1.0 netmask 255.255.255.0 gw 10.73.1.1"
 | 
			
		||||
 | 
			
		||||
# Example static routes using iproute2. See ip(8) for syntax.
 | 
			
		||||
#staticiproute="192.168.0.0/24 via 10.73.1.1; 192.168.1.0/24 via 10.73.1.1"
 | 
			
		||||
@@ -1,19 +0,0 @@
 | 
			
		||||
# Example syscons config file. This is the place to set things like keymap, etc.
 | 
			
		||||
 | 
			
		||||
# Set the video mode - you should check the vidcontrol man page for valid modes
 | 
			
		||||
# NOTE:- This will blank the screen after this command is run
 | 
			
		||||
# NOTE:- You can get more modes if you load the vesa kernel module, but this
 | 
			
		||||
# may require the SC_PIXEL_MODE kernel option
 | 
			
		||||
#allscreen_flags="VGA_80x30"
 | 
			
		||||
 | 
			
		||||
# Set the keymap to "uk.iso".
 | 
			
		||||
#keymap="uk.iso"
 | 
			
		||||
 | 
			
		||||
# Set the keyboard rate to 250ms delay, and 34 repeat rate.
 | 
			
		||||
#keyrate="250.34"
 | 
			
		||||
 | 
			
		||||
# Change the behaviour of F-unction keys (see kbdcontrol(1)).
 | 
			
		||||
#keychange="10 'ssh myhost'"
 | 
			
		||||
 | 
			
		||||
# See vidcontrol(1) -t
 | 
			
		||||
#blanktime="off"
 | 
			
		||||
@@ -1,3 +0,0 @@
 | 
			
		||||
# Extra options for tmpfiles.sh
 | 
			
		||||
#tmpfiles_opts="--verbose"
 | 
			
		||||
tmpfiles_opts=""
 | 
			
		||||
@@ -1,5 +0,0 @@
 | 
			
		||||
# Sometimes you want to have urandom start before "localmount"
 | 
			
		||||
# (say for crypt swap), so you will need to customize this
 | 
			
		||||
# behavior.  If you have /var on a separate partition, then
 | 
			
		||||
# make sure this path lives on your root device somewhere.
 | 
			
		||||
urandom_seed="/var/lib/misc/random-seed"
 | 
			
		||||
							
								
								
									
										3
									
								
								etc/.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								etc/.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -1,3 +0,0 @@
 | 
			
		||||
rc.conf
 | 
			
		||||
rc
 | 
			
		||||
rc.shutdown
 | 
			
		||||
							
								
								
									
										28
									
								
								etc/Makefile
									
									
									
									
									
								
							
							
						
						
									
										28
									
								
								etc/Makefile
									
									
									
									
									
								
							@@ -1,28 +0,0 @@
 | 
			
		||||
DIR=	${SYSCONFDIR}
 | 
			
		||||
SRCS=	rc.conf.in rc.in rc.shutdown.in
 | 
			
		||||
BIN=	${BIN-${OS}}
 | 
			
		||||
CONF=	rc.conf ${BIN-${OS}}
 | 
			
		||||
 | 
			
		||||
CLEANFILES+=	rc.conf
 | 
			
		||||
 | 
			
		||||
MK=	../mk
 | 
			
		||||
include ${MK}/os.mk
 | 
			
		||||
 | 
			
		||||
SED_EXTRA-FreeBSD=	-e 's:@TERM@:cons25:g'
 | 
			
		||||
BIN-FreeBSD=		rc rc.shutdown rc.devd
 | 
			
		||||
CONF-FreeBSD=		devd.conf
 | 
			
		||||
 | 
			
		||||
SED_EXTRA-Linux=	-e 's:@TERM@:wsvt25:g'
 | 
			
		||||
BIN-Linux=
 | 
			
		||||
CONF-Linux=
 | 
			
		||||
 | 
			
		||||
SED_EXTRA-NetBSD=	-e 's:@TERM@:wsvt25:g'
 | 
			
		||||
BIN-NetBSD=		rc rc.shutdown
 | 
			
		||||
CONF-NetBSD=
 | 
			
		||||
 | 
			
		||||
SED_EXTRA=	${SED_EXTRA-${OS}}
 | 
			
		||||
 | 
			
		||||
include ${MK}/scripts.mk
 | 
			
		||||
 | 
			
		||||
rc.conf: rc.conf.in rc.conf.${OS}
 | 
			
		||||
	${SED} ${SED_REPLACE} ${SED_EXTRA} $^ > $@
 | 
			
		||||
							
								
								
									
										315
									
								
								etc/devd.conf
									
									
									
									
									
								
							
							
						
						
									
										315
									
								
								etc/devd.conf
									
									
									
									
									
								
							@@ -1,315 +0,0 @@
 | 
			
		||||
# $FreeBSD: src/etc/devd.conf,v 1.38 2007/06/21 22:50:36 njl Exp $
 | 
			
		||||
#
 | 
			
		||||
# Refer to devd.conf(5) and devd(8) man pages for the details on how to
 | 
			
		||||
# run and configure devd.
 | 
			
		||||
#
 | 
			
		||||
 | 
			
		||||
# NB: All regular expressions have an implicit ^$ around them.
 | 
			
		||||
# NB: device-name is shorthand for 'match device-name'
 | 
			
		||||
 | 
			
		||||
options {
 | 
			
		||||
	# Each directory directive adds a directory the list of directories
 | 
			
		||||
	# that we scan for files.  Files are read-in in the order that they
 | 
			
		||||
	# are returned from readdir(3).  The rule-sets are combined to
 | 
			
		||||
	# create a DFA that's used to match events to actions.
 | 
			
		||||
	directory "/etc/devd";
 | 
			
		||||
	directory "/usr/local/etc/devd";
 | 
			
		||||
	pid-file "/var/run/devd.pid";
 | 
			
		||||
 | 
			
		||||
	# Setup some shorthand for regex that we use later in the file.
 | 
			
		||||
	#XXX Yes, these are gross -- imp
 | 
			
		||||
	set scsi-controller-regex
 | 
			
		||||
		"(aac|adv|adw|aha|ahb|ahc|ahd|aic|amd|amr|asr|bt|ciss|ct|dpt|\
 | 
			
		||||
		esp|ida|iir|ips|isp|mlx|mly|mpt|ncr|ncv|nsp|stg|sym|trm|wds)\
 | 
			
		||||
		[0-9]+";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# Note that the attach/detach with the highest value wins, so that one can
 | 
			
		||||
# override these general rules.
 | 
			
		||||
 | 
			
		||||
#
 | 
			
		||||
# Configure the interface on attach.  Due to a historical accident, this
 | 
			
		||||
# script is called pccard_ether.
 | 
			
		||||
#
 | 
			
		||||
notify 0 {
 | 
			
		||||
	match "system"		"IFNET";
 | 
			
		||||
	match "type"		"ATTACH";
 | 
			
		||||
	action "/etc/rc.devd net.$subsystem start";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
notify 0 {
 | 
			
		||||
	match "system"		"IFNET";
 | 
			
		||||
	match "type"		"DETACH";
 | 
			
		||||
	action "/etc/rc.devd net.$subsystem stop";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#
 | 
			
		||||
# Try to configure the interface when the network comes up and deconfigure
 | 
			
		||||
# when it goes down
 | 
			
		||||
#
 | 
			
		||||
notify 0 {
 | 
			
		||||
	match "system"		"IFNET";
 | 
			
		||||
	match "type"		"LINK_UP";
 | 
			
		||||
	media-type		"ethernet";
 | 
			
		||||
	action "/etc/rc.devd net.$subsystem start";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
notify 0 {
 | 
			
		||||
	match "system"		"IFNET";
 | 
			
		||||
	match "type"		"LINK_DOWN";
 | 
			
		||||
	media-type		"ethernet";
 | 
			
		||||
	action "/etc/rc.devd net.$subsystem stop";
 | 
			
		||||
};
 | 
			
		||||
#
 | 
			
		||||
# Like Ethernet devices, but separate because
 | 
			
		||||
# they have a different media type.  We may want
 | 
			
		||||
# to exploit this later.
 | 
			
		||||
#
 | 
			
		||||
detach 0 {
 | 
			
		||||
	media-type "802.11";
 | 
			
		||||
	action "/etc/rc.devd net.$device-name stop";
 | 
			
		||||
};
 | 
			
		||||
attach 0 {
 | 
			
		||||
	media-type "802.11";
 | 
			
		||||
	action "/etc/rc.devd net.$device-name start";
 | 
			
		||||
};
 | 
			
		||||
notify 0 {
 | 
			
		||||
	match "system"		"IFNET";
 | 
			
		||||
	match "type"		"LINK_UP";
 | 
			
		||||
	media-type		"802.11";
 | 
			
		||||
	action "/etc/rc.devd net.$subsystem start";
 | 
			
		||||
};
 | 
			
		||||
notify 0 {
 | 
			
		||||
	match "system"		"IFNET";
 | 
			
		||||
	match "type"		"LINK_DOWN";
 | 
			
		||||
	media-type		"802.11";
 | 
			
		||||
	action "/etc/rc.devd net.$subsystem stop";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# An entry like this might be in a different file, but is included here
 | 
			
		||||
# as an example of how to override things.  Normally 'ed50' would match
 | 
			
		||||
# the above attach/detach stuff, but the value of 100 makes it
 | 
			
		||||
# hard wired to 1.2.3.4.
 | 
			
		||||
attach 100 {
 | 
			
		||||
	device-name "ed50";
 | 
			
		||||
	action "ifconfig $device-name inet 1.2.3.4 netmask 0xffff0000";
 | 
			
		||||
};
 | 
			
		||||
detach 100 {
 | 
			
		||||
	device-name "ed50";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# When a USB Bluetooth dongle appears activate it
 | 
			
		||||
attach 100 {
 | 
			
		||||
	device-name "ubt[0-9]+";
 | 
			
		||||
	action "/etc/rc.d/bluetooth start $device-name";
 | 
			
		||||
};
 | 
			
		||||
detach 100 {
 | 
			
		||||
	device-name "ubt[0-9]+";
 | 
			
		||||
	action "/etc/rc.d/bluetooth stop $device-name";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# When a USB keyboard arrives, attach it as the console keyboard.
 | 
			
		||||
attach 100 {
 | 
			
		||||
	device-name "ukbd0";
 | 
			
		||||
	action "/etc/rc.d/syscons setkeyboard /dev/ukbd0";
 | 
			
		||||
};
 | 
			
		||||
detach 100 {
 | 
			
		||||
	device-name "ukbd0";
 | 
			
		||||
	action "/etc/rc.d/syscons setkeyboard /dev/kbd0";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# The entry below starts moused when a mouse is plugged in. Moused
 | 
			
		||||
# stops automatically (actually it bombs :) when the device disappears.
 | 
			
		||||
attach 100 {
 | 
			
		||||
	device-name "ums[0-9]+";
 | 
			
		||||
	action "/etc/rc.devd moused.$device-name start";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# Firmware download into the ActiveWire board. After the firmware download is
 | 
			
		||||
# done the device detaches and reappears as something new and shiny
 | 
			
		||||
# automatically.
 | 
			
		||||
attach 100 {
 | 
			
		||||
	match "vendor"	"0x0854";
 | 
			
		||||
	match "product"	"0x0100";
 | 
			
		||||
	match "release"	"0x0000";
 | 
			
		||||
	action "/usr/local/bin/ezdownload -f /usr/local/share/usb/firmware/0854.0100.0_01.hex $device-name";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# Firmware download for Entrega Serial DB25 adapter.
 | 
			
		||||
attach 100 {
 | 
			
		||||
	match "vendor"	"0x1645";
 | 
			
		||||
	match "product"	"0x8001";
 | 
			
		||||
	match "release"	"0x0101";
 | 
			
		||||
	action "if ! kldstat -n usio > /dev/null 2>&1 ; then kldload usio; fi /usr/sbin/ezdownload -v -f /usr/share/usb/firmware/1645.8001.0101 /dev/$device-name";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# This entry starts the ColdSync tool in daemon mode. Make sure you have an up
 | 
			
		||||
# to date /usr/local/etc/palms. We override the 'listen' settings for port and
 | 
			
		||||
# type in /usr/local/etc/coldsync.conf.
 | 
			
		||||
attach 100 {
 | 
			
		||||
	device-name "ugen[0-9]+";
 | 
			
		||||
	match "vendor" "0x082d";
 | 
			
		||||
	match "product" "0x0100";
 | 
			
		||||
	match "release" "0x0100";
 | 
			
		||||
	action "/usr/local/bin/coldsync -md -p /dev/$device-name -t usb";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#
 | 
			
		||||
# Rescan scsi device-names on attach, but not detach.  However, it is
 | 
			
		||||
# disabled by default due to reports of problems.
 | 
			
		||||
#
 | 
			
		||||
attach 0 {
 | 
			
		||||
	device-name "$scsi-controller-regex";
 | 
			
		||||
//	action "camcontrol rescan all";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# Don't even try to second guess what to do about drivers that don't
 | 
			
		||||
# match here.  Instead, pass it off to syslog.  Commented out for the
 | 
			
		||||
# moment, as the pnpinfo variable isn't set in devd yet.  Individual
 | 
			
		||||
# variables within the bus supplied pnpinfo are set.
 | 
			
		||||
nomatch 0 {
 | 
			
		||||
#	action "logger Unknown device: $pnpinfo $location $bus";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# Various logging of unknown devices.
 | 
			
		||||
nomatch 10 {
 | 
			
		||||
	match "bus" "uhub[0-9]+";
 | 
			
		||||
	action "logger Unknown USB device: vendor $vendor product $product \
 | 
			
		||||
		bus $bus";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# Some PC-CARDs don't offer numerical manufacturer/product IDs, just
 | 
			
		||||
# show the CIS info there.
 | 
			
		||||
nomatch 20 {
 | 
			
		||||
	match "bus" "pccard[0-9]+";
 | 
			
		||||
	match "manufacturer" "0xffffffff";
 | 
			
		||||
	match "product" "0xffffffff";
 | 
			
		||||
	action "logger Unknown PCCARD device: CISproduct $cisproduct \
 | 
			
		||||
		CIS-vendor $cisvendor bus $bus";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
nomatch 10 {
 | 
			
		||||
	match "bus" "pccard[0-9]+";
 | 
			
		||||
	action "logger Unknown PCCARD device: manufacturer $manufacturer \
 | 
			
		||||
		product $product CISproduct $cisproduct CIS-vendor \
 | 
			
		||||
		$cisvendor bus $bus";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
nomatch 10 {
 | 
			
		||||
	match "bus" "cardbus[0-9]+";
 | 
			
		||||
	action "logger Unknown Cardbus device: device $device class $class \
 | 
			
		||||
		vendor $vendor bus $bus";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# Switch power profiles when the AC line state changes.
 | 
			
		||||
notify 10 {
 | 
			
		||||
	match "system"		"ACPI";
 | 
			
		||||
	match "subsystem"	"ACAD";
 | 
			
		||||
	action "/etc/rc.d/power_profile $notify";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# Notify all users before beginning emergency shutdown when we get
 | 
			
		||||
# a _CRT or _HOT thermal event and we're going to power down the system
 | 
			
		||||
# very soon.
 | 
			
		||||
notify 10 {
 | 
			
		||||
	match "system"		"ACPI";
 | 
			
		||||
	match "subsystem"	"Thermal";
 | 
			
		||||
	match "notify"		"0xcc";
 | 
			
		||||
	action "logger -p kern.emerg 'WARNING: system temperature too high, shutting down soon!'";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# Sample ZFS problem reports handling.
 | 
			
		||||
notify 10 {
 | 
			
		||||
	match "system"		"ZFS";
 | 
			
		||||
	match "type"		"zpool";
 | 
			
		||||
	action "logger -p kern.err 'ZFS: failed to load zpool $pool'";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
notify 10 {
 | 
			
		||||
	match "system"		"ZFS";
 | 
			
		||||
	match "type"		"vdev";
 | 
			
		||||
	action "logger -p kern.err 'ZFS: vdev failure, zpool=$pool type=$type'";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
notify 10 {
 | 
			
		||||
	match "system"		"ZFS";
 | 
			
		||||
	match "type"		"data";
 | 
			
		||||
	action "logger -p kern.warn 'ZFS: zpool I/O failure, zpool=$pool error=$zio_err'";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
notify 10 {
 | 
			
		||||
	match "system"		"ZFS";
 | 
			
		||||
	match "type"		"io";
 | 
			
		||||
	action "logger -p kern.warn 'ZFS: vdev I/O failure, zpool=$pool path=$vdev_path offset=$zio_offset size=$zio_size error=$zio_err'";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
notify 10 {
 | 
			
		||||
	match "system"		"ZFS";
 | 
			
		||||
	match "type"		"checksum";
 | 
			
		||||
	action "logger -p kern.warn 'ZFS: checksum mismatch, zpool=$pool path=$vdev_path offset=$zio_offset size=$zio_size'";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# User requested suspend, so perform preparation steps and then execute
 | 
			
		||||
# the actual suspend process.
 | 
			
		||||
notify 10 {
 | 
			
		||||
	match "system"		"ACPI";
 | 
			
		||||
	match "subsystem"	"Suspend";
 | 
			
		||||
	action "/etc/rc.suspend acpi $notify";
 | 
			
		||||
};
 | 
			
		||||
notify 10 {
 | 
			
		||||
	match "system"		"ACPI";
 | 
			
		||||
	match "subsystem"	"Resume";
 | 
			
		||||
	action "/etc/rc.resume acpi $notify";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/* EXAMPLES TO END OF FILE
 | 
			
		||||
 | 
			
		||||
# The following might be an example of something that a vendor might
 | 
			
		||||
# install if you were to add their device.  This might reside in
 | 
			
		||||
# /usr/local/etc/devd/deqna.conf.  A deqna is, in this hypothetical
 | 
			
		||||
# example, a pccard ethernet-like device.  Students of history may
 | 
			
		||||
# know other devices by this name, and will get the in-jokes in this
 | 
			
		||||
# entry.
 | 
			
		||||
nomatch 10 {
 | 
			
		||||
	match "bus" "pccard[0-9]+";
 | 
			
		||||
	match "manufacturer" "0x1234";
 | 
			
		||||
	match "product" "0x2323";
 | 
			
		||||
	action "kldload if_deqna";
 | 
			
		||||
};
 | 
			
		||||
attach 10 {
 | 
			
		||||
	device-name "deqna[0-9]+";
 | 
			
		||||
	action "/etc/pccard_ether $device-name start";
 | 
			
		||||
};
 | 
			
		||||
detach 10 {
 | 
			
		||||
	device-name "deqna[0-9]+";
 | 
			
		||||
	action "/etc/pccard_ether $device-name stop";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
# Examples of notify hooks.  A notify is a generic way for a kernel
 | 
			
		||||
# subsystem to send event notification to userland.
 | 
			
		||||
#
 | 
			
		||||
# Here are some examples of ACPI notify handlers.  ACPI subsystems that
 | 
			
		||||
# generate notifies include the AC adapter, power/sleep buttons,
 | 
			
		||||
# control method batteries, lid switch, and thermal zones.
 | 
			
		||||
#
 | 
			
		||||
# Information returned is not always the same as the ACPI notify
 | 
			
		||||
# events.  See the ACPI specification for more information about
 | 
			
		||||
# notifies.  Here is the information returned for each subsystem:
 | 
			
		||||
#
 | 
			
		||||
# ACAD:		AC line state (0 is offline, 1 is online)
 | 
			
		||||
# Button:	Button pressed (0 for power, 1 for sleep)
 | 
			
		||||
# CMBAT:	ACPI battery events
 | 
			
		||||
# Lid:		Lid state (0 is closed, 1 is open)
 | 
			
		||||
# Suspend, Resume: Suspend and resume notification
 | 
			
		||||
# Thermal:	ACPI thermal zone events
 | 
			
		||||
#
 | 
			
		||||
# This example calls a script when the AC state changes, passing the
 | 
			
		||||
# notify value as the first argument.  If the state is 0x00, it might
 | 
			
		||||
# call some sysctls to implement economy mode.  If 0x01, it might set
 | 
			
		||||
# the mode to performance.
 | 
			
		||||
notify 10 {
 | 
			
		||||
	match "system"		"ACPI";
 | 
			
		||||
	match "subsystem"	"ACAD";
 | 
			
		||||
	action			"/etc/acpi_ac $notify";
 | 
			
		||||
};
 | 
			
		||||
*/
 | 
			
		||||
@@ -1,13 +0,0 @@
 | 
			
		||||
##############################################################################
 | 
			
		||||
# DragonFly BSD SPECIFIC OPTIONS
 | 
			
		||||
 | 
			
		||||
# This is the subsystem type. Valid options on DragonFly BSD:
 | 
			
		||||
# ""        - nothing special
 | 
			
		||||
# "jail"    - DragonFly BSD jails
 | 
			
		||||
# "prefix"  - Prefix
 | 
			
		||||
# If this is commented out, automatic detection will be used.
 | 
			
		||||
#
 | 
			
		||||
# This should be set to the value representing the environment this file is
 | 
			
		||||
# PRESENTLY in, not the virtualization the environment is capable of.
 | 
			
		||||
#rc_sys=""
 | 
			
		||||
 | 
			
		||||
@@ -1,13 +0,0 @@
 | 
			
		||||
##############################################################################
 | 
			
		||||
# FreeBSD SPECIFIC OPTIONS
 | 
			
		||||
 | 
			
		||||
# This is the subsystem type. Valid options on FreeBSD:
 | 
			
		||||
# ""        - nothing special
 | 
			
		||||
# "jail"    - FreeBSD jails
 | 
			
		||||
# "prefix"  - Prefix
 | 
			
		||||
# If this is commented out, automatic detection will be used.
 | 
			
		||||
#
 | 
			
		||||
# This should be set to the value representing the environment this file is
 | 
			
		||||
# PRESENTLY in, not the virtualization the environment is capable of.
 | 
			
		||||
#rc_sys=""
 | 
			
		||||
 | 
			
		||||
@@ -1,14 +0,0 @@
 | 
			
		||||
##############################################################################
 | 
			
		||||
# GNU/Hurd SPECIFIC OPTIONS
 | 
			
		||||
 | 
			
		||||
# This is the subsystem type. Valid options on GNU/Hurd:
 | 
			
		||||
# ""        - nothing special
 | 
			
		||||
# "subhurd" - Hurd subhurds (to be checked)
 | 
			
		||||
# If this is commented out, automatic detection will be used.
 | 
			
		||||
#
 | 
			
		||||
# This should be set to the value representing the environment this file is
 | 
			
		||||
# PRESENTLY in, not the virtualization the environment is capable of.
 | 
			
		||||
#rc_sys=""
 | 
			
		||||
# This is the number of tty's used in most of the rc-scripts (like
 | 
			
		||||
# consolefont, numlock, etc ...)
 | 
			
		||||
#rc_tty_number=6?
 | 
			
		||||
@@ -1,11 +0,0 @@
 | 
			
		||||
##############################################################################
 | 
			
		||||
# GNU/kFreeBSD SPECIFIC OPTIONS
 | 
			
		||||
 | 
			
		||||
# This is the subsystem type. Valid options on GNU/kFreeBSD:
 | 
			
		||||
# ""        - nothing special
 | 
			
		||||
# "jail"    - FreeBSD jails (not yet implemented)
 | 
			
		||||
# If this is commented out, automatic detection will be used.
 | 
			
		||||
#
 | 
			
		||||
# This should be set to the value representing the environment this file is
 | 
			
		||||
# PRESENTLY in, not the virtualization the environment is capable of.
 | 
			
		||||
#rc_sys=""
 | 
			
		||||
@@ -1,78 +0,0 @@
 | 
			
		||||
##############################################################################
 | 
			
		||||
# LINUX SPECIFIC OPTIONS
 | 
			
		||||
 | 
			
		||||
# This is the subsystem type. Valid options on Linux:
 | 
			
		||||
# ""        - nothing special
 | 
			
		||||
# "lxc"     - Linux Containers
 | 
			
		||||
# "openvz"  - Linux OpenVZ
 | 
			
		||||
# "prefix"  - Prefix
 | 
			
		||||
# "uml"     - Usermode Linux
 | 
			
		||||
# "vserver" - Linux vserver
 | 
			
		||||
# "xen0"    - Xen0 Domain
 | 
			
		||||
# "xenU"    - XenU Domain
 | 
			
		||||
# If this is commented out, automatic detection will be used.
 | 
			
		||||
#
 | 
			
		||||
# This should be set to the value representing the environment this file is
 | 
			
		||||
# PRESENTLY in, not the virtualization the environment is capable of.
 | 
			
		||||
#rc_sys=""
 | 
			
		||||
 | 
			
		||||
# This is the number of tty's used in most of the rc-scripts (like
 | 
			
		||||
# consolefont, numlock, etc ...)
 | 
			
		||||
rc_tty_number=12
 | 
			
		||||
 | 
			
		||||
##############################################################################
 | 
			
		||||
# CGROUPS RESOURCE MANAGEMENT
 | 
			
		||||
 | 
			
		||||
# If you have cgroups turned on in your kernel, this switch controls
 | 
			
		||||
# whether or not a group for each controller is mounted under
 | 
			
		||||
# /sys/fs/cgroup.
 | 
			
		||||
# None of the other options in this section work if this is set to "NO".
 | 
			
		||||
#rc_controller_cgroups="YES"
 | 
			
		||||
 | 
			
		||||
# The following settings allow you to set up values for the cgroup
 | 
			
		||||
# controllers for your services.
 | 
			
		||||
# They can be set in this file;, however, if you do this, the settings
 | 
			
		||||
# will apply to all of your services.
 | 
			
		||||
# If you want different settings for each service, place the settings in
 | 
			
		||||
# /etc/conf.d/foo for service foo.
 | 
			
		||||
# The format is to specify the names of the settings followed by their
 | 
			
		||||
# values. Each variable can hold multiple settings.
 | 
			
		||||
# For example, you would use this to set the cpu.shares setting in the
 | 
			
		||||
# cpu controller to 512 for your service.
 | 
			
		||||
# rc_cgroup_cpu="
 | 
			
		||||
# cpu.shares 512
 | 
			
		||||
# "
 | 
			
		||||
#
 | 
			
		||||
#For more information about the adjustments that can be made with
 | 
			
		||||
#cgroups, see Documentation/cgroups/* in the linux kernel source tree.
 | 
			
		||||
 | 
			
		||||
# Set the blkio controller settings for this service.
 | 
			
		||||
#rc_cgroup_blkio=""
 | 
			
		||||
 | 
			
		||||
# Set the cpu controller settings for this service.
 | 
			
		||||
#rc_cgroup_cpu=""
 | 
			
		||||
 | 
			
		||||
# Add this service to the cpuacct controller (any value means yes).
 | 
			
		||||
#rc_cgroup_cpuacct=""
 | 
			
		||||
 | 
			
		||||
# Set the cpuset controller settings for this service.
 | 
			
		||||
#rc_cgroup_cpuset=""
 | 
			
		||||
 | 
			
		||||
# Set the devices controller settings for this service.
 | 
			
		||||
#rc_cgroup_devices=""
 | 
			
		||||
 | 
			
		||||
# Set the memory controller settings for this service.
 | 
			
		||||
#rc_cgroup_memory=""
 | 
			
		||||
 | 
			
		||||
# Set the net_prio controller settings for this service.
 | 
			
		||||
#rc_cgroup_net_prio=""
 | 
			
		||||
 | 
			
		||||
# Set this to YES if yu want all of the processes in a service's cgroup
 | 
			
		||||
# killed when the service is stopped or restarted.
 | 
			
		||||
# This should not be set globally because it kills all of the service's
 | 
			
		||||
# child processes, and most of the time this is undesirable. Please set
 | 
			
		||||
# it in /etc/conf.d/<service>.
 | 
			
		||||
# To perform this cleanup manually for a stopped service, you can
 | 
			
		||||
# execute cgroup_cleanup with /etc/init.d/<service> cgroup_cleanup or
 | 
			
		||||
# rc-service <service> cgroup_cleanup.
 | 
			
		||||
# rc_cgroup_cleanup="NO"
 | 
			
		||||
@@ -1,14 +0,0 @@
 | 
			
		||||
##############################################################################
 | 
			
		||||
# NetBSD SPECIFIC OPTIONS
 | 
			
		||||
 | 
			
		||||
# This is the subsystem type. Valid options on NetBSD:
 | 
			
		||||
# ""        - nothing special
 | 
			
		||||
# "prefix"  - Prefix
 | 
			
		||||
# "xen0"    - Xen0 Domain
 | 
			
		||||
# "xenU"    - XenU Domain
 | 
			
		||||
# If this is commented out, automatic detection will be used.
 | 
			
		||||
#
 | 
			
		||||
# This should be set to the value representing the environment this file is
 | 
			
		||||
# PRESENTLY in, not the virtualization the environment is capable of.
 | 
			
		||||
#rc_sys=""
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										145
									
								
								etc/rc.conf.in
									
									
									
									
									
								
							
							
						
						
									
										145
									
								
								etc/rc.conf.in
									
									
									
									
									
								
							@@ -1,145 +0,0 @@
 | 
			
		||||
# Global OpenRC configuration settings
 | 
			
		||||
 | 
			
		||||
# Set to "YES" if you want the rc system to try and start services
 | 
			
		||||
# in parallel for a slight speed improvement. When running in parallel we
 | 
			
		||||
# prefix the service output with its name as the output will get
 | 
			
		||||
# jumbled up.
 | 
			
		||||
# WARNING: whilst we have improved parallel, it can still potentially lock
 | 
			
		||||
# the boot process. Don't file bugs about this unless you can supply
 | 
			
		||||
# patches that fix it without breaking other things!
 | 
			
		||||
#rc_parallel="NO"
 | 
			
		||||
 | 
			
		||||
# Set rc_interactive to "YES" and you'll be able to press the I key during
 | 
			
		||||
# boot so you can choose to start specific services. Set to "NO" to disable
 | 
			
		||||
# this feature. This feature is automatically disabled if rc_parallel is
 | 
			
		||||
# set to YES.
 | 
			
		||||
#rc_interactive="YES"
 | 
			
		||||
 | 
			
		||||
# If we need to drop to a shell, you can specify it here.
 | 
			
		||||
# If not specified we use $SHELL, otherwise the one specified in /etc/passwd,
 | 
			
		||||
# otherwise /bin/sh
 | 
			
		||||
# Linux users could specify /sbin/sulogin
 | 
			
		||||
#rc_shell=/bin/sh
 | 
			
		||||
 | 
			
		||||
# Do we allow any started service in the runlevel to satisfy the dependency
 | 
			
		||||
# or do we want all of them regardless of state? For example, if net.eth0
 | 
			
		||||
# and net.eth1 are in the default runlevel then with rc_depend_strict="NO"
 | 
			
		||||
# both will be started, but services that depend on 'net' will work if either
 | 
			
		||||
# one comes up. With rc_depend_strict="YES" we would require them both to
 | 
			
		||||
# come up.
 | 
			
		||||
#rc_depend_strict="YES"
 | 
			
		||||
 | 
			
		||||
# rc_hotplug is a list of services that we allow to be hotplugged.
 | 
			
		||||
# By default we do not allow hotplugging.
 | 
			
		||||
# A hotplugged service is one started by a dynamic dev manager when a matching
 | 
			
		||||
# hardware device is found.
 | 
			
		||||
# This service is intrinsically included in the boot runlevel.
 | 
			
		||||
# To disable services, prefix with a !
 | 
			
		||||
# Example - rc_hotplug="net.wlan !net.*"
 | 
			
		||||
# This allows net.wlan and any service not matching net.* to be plugged.
 | 
			
		||||
# Example - rc_hotplug="*"
 | 
			
		||||
# This allows all services to be hotplugged
 | 
			
		||||
#rc_hotplug="*"
 | 
			
		||||
 | 
			
		||||
# rc_logger launches a logging daemon to log the entire rc process to
 | 
			
		||||
# /var/log/rc.log
 | 
			
		||||
# NOTE: Linux systems require the devfs service to be started before
 | 
			
		||||
# logging can take place and as such cannot log the sysinit runlevel.
 | 
			
		||||
#rc_logger="YES"
 | 
			
		||||
 | 
			
		||||
# Through rc_log_path you can specify a custom log file.
 | 
			
		||||
# The default value is: /var/log/rc.log
 | 
			
		||||
#rc_log_path="/var/log/rc.log"
 | 
			
		||||
 | 
			
		||||
# If you want verbose output for OpenRC, set this to yes. If you want
 | 
			
		||||
# verbose output for service foo only, set it to yes in /etc/conf.d/foo.
 | 
			
		||||
#rc_verbose=no
 | 
			
		||||
 | 
			
		||||
# By default we filter the environment for our running scripts. To allow other
 | 
			
		||||
# variables through, add them here. Use a * to allow all variables through.
 | 
			
		||||
#rc_env_allow="VAR1 VAR2"
 | 
			
		||||
 | 
			
		||||
# By default we assume that all daemons will start correctly.
 | 
			
		||||
# However, some do not - a classic example is that they fork and return 0 AND
 | 
			
		||||
# then child barfs on a configuration error. Or the daemon has a bug and the
 | 
			
		||||
# child crashes. You can set the number of milliseconds start-stop-daemon
 | 
			
		||||
# waits to check that the daemon is still running after starting here.
 | 
			
		||||
# The default is 0 - no checking.
 | 
			
		||||
#rc_start_wait=100
 | 
			
		||||
 | 
			
		||||
# rc_nostop is a list of services which will not stop when changing runlevels.
 | 
			
		||||
# This still allows the service itself to be stopped when called directly.
 | 
			
		||||
#rc_nostop=""
 | 
			
		||||
 | 
			
		||||
# rc will attempt to start crashed services by default.
 | 
			
		||||
# However, it will not stop them by default as that could bring down other
 | 
			
		||||
# critical services.
 | 
			
		||||
#rc_crashed_stop=NO
 | 
			
		||||
#rc_crashed_start=YES
 | 
			
		||||
 | 
			
		||||
# Set rc_nocolor to yes if you do not want colors displayed in OpenRC
 | 
			
		||||
# output.
 | 
			
		||||
#rc_nocolor=NO
 | 
			
		||||
 | 
			
		||||
##############################################################################
 | 
			
		||||
# MISC CONFIGURATION VARIABLES
 | 
			
		||||
# There variables are shared between many init scripts
 | 
			
		||||
 | 
			
		||||
# Set unicode to YES to turn on unicode support for keyboards and screens.
 | 
			
		||||
#unicode="NO"
 | 
			
		||||
 | 
			
		||||
# This is how long fuser should wait for a remote server to respond. The
 | 
			
		||||
# default is 60 seconds, but  it can be adjusted here.
 | 
			
		||||
#rc_fuser_timeout=60
 | 
			
		||||
 | 
			
		||||
# Below is the default list of network fstypes.
 | 
			
		||||
#
 | 
			
		||||
# afs ceph cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre ncpfs
 | 
			
		||||
# nfs nfs4 ocfs2 shfs smbfs
 | 
			
		||||
#
 | 
			
		||||
# If you would like to add to this list, you can do so by adding your
 | 
			
		||||
# own fstypes to the following variable.
 | 
			
		||||
#extra_net_fs_list=""
 | 
			
		||||
 | 
			
		||||
##############################################################################
 | 
			
		||||
# SERVICE CONFIGURATION VARIABLES
 | 
			
		||||
# These variables are documented here, but should be configured in
 | 
			
		||||
# /etc/conf.d/foo for service foo and NOT enabled here unless you
 | 
			
		||||
# really want them to work on a global basis.
 | 
			
		||||
# If your service has characters in its name which are not legal in
 | 
			
		||||
# shell variable names and you configure the variables for it in this
 | 
			
		||||
# file, those characters should be replaced with underscores in the
 | 
			
		||||
# variable names as shown below.
 | 
			
		||||
 | 
			
		||||
# Some daemons are started and stopped via start-stop-daemon.
 | 
			
		||||
# We can set some things on a per service basis, like the nicelevel.
 | 
			
		||||
#SSD_NICELEVEL="-19"
 | 
			
		||||
 | 
			
		||||
# Pass ulimit parameters
 | 
			
		||||
#rc_ulimit="-u 30"
 | 
			
		||||
 | 
			
		||||
# It's possible to define extra dependencies for services like so
 | 
			
		||||
#rc_config="/etc/foo"
 | 
			
		||||
#rc_need="openvpn"
 | 
			
		||||
#rc_use="net.eth0"
 | 
			
		||||
#rc_after="clock"
 | 
			
		||||
#rc_before="local"
 | 
			
		||||
#rc_provide="!net"
 | 
			
		||||
 | 
			
		||||
# You can also enable the above commands here for each service. Below is an
 | 
			
		||||
# example for service foo.
 | 
			
		||||
#rc_foo_config="/etc/foo"
 | 
			
		||||
#rc_foo_need="openvpn"
 | 
			
		||||
#rc_foo_after="clock"
 | 
			
		||||
 | 
			
		||||
# Below is an example for service foo-bar. Note that the '-' is illegal
 | 
			
		||||
# in a shell variable name, so we convert it to an underscore.
 | 
			
		||||
# example for service foo-bar.
 | 
			
		||||
#rc_foo_bar_config="/etc/foo-bar"
 | 
			
		||||
#rc_foo_bar_need="openvpn"
 | 
			
		||||
#rc_foo_bar_after="clock"
 | 
			
		||||
 | 
			
		||||
# You can also remove dependencies.
 | 
			
		||||
# This is mainly used for saying which servies do NOT provide net.
 | 
			
		||||
#rc_net_tap0_provide="!net"
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										32
									
								
								etc/rc.devd
									
									
									
									
									
								
							
							
						
						
									
										32
									
								
								etc/rc.devd
									
									
									
									
									
								
							@@ -1,32 +0,0 @@
 | 
			
		||||
#!/bin/sh
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
# Inform RC that we are in the background and hotplugged
 | 
			
		||||
IN_BACKGROUND=yes
 | 
			
		||||
IN_HOTPLUG=yes
 | 
			
		||||
export IN_BACKGROUND IN_HOTPLUG
 | 
			
		||||
 | 
			
		||||
getmedia() {
 | 
			
		||||
	ifconfig "$1" | while read line; do
 | 
			
		||||
		case "${line}" in
 | 
			
		||||
			media:" "*) echo "${line}"; return;;
 | 
			
		||||
		esac
 | 
			
		||||
	done
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Try and create an init script for network interfaces
 | 
			
		||||
if [ ! -e /etc/init.d/"$1" -a ! -e /usr/local/init.d/"$1" ]; then
 | 
			
		||||
	base=${1%%.*}
 | 
			
		||||
	if [ "${base}" = "net" ]; then
 | 
			
		||||
		# We only create links for pyhsical interfaces
 | 
			
		||||
		[ -n "$(getmedia ${1#*.})" ] || exit 1
 | 
			
		||||
		base="net.lo0"
 | 
			
		||||
	fi
 | 
			
		||||
	if [ -e /etc/init.d/"${base}" -a "${base}" != "$1" ]; then
 | 
			
		||||
		ln -s "${base}" /etc/init.d/"$1"
 | 
			
		||||
	fi
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# Run the init script
 | 
			
		||||
exec /etc/init.d/"$1" "$2"
 | 
			
		||||
							
								
								
									
										19
									
								
								etc/rc.in
									
									
									
									
									
								
							
							
						
						
									
										19
									
								
								etc/rc.in
									
									
									
									
									
								
							@@ -1,19 +0,0 @@
 | 
			
		||||
#!@SHELL@
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
# If $TERM is not set then assume default of @TERM@
 | 
			
		||||
# This gives us a nice colour boot :)
 | 
			
		||||
[ -z "$TERM" -o "$TERM" = "dumb" ] && TERM="@TERM@" && export TERM
 | 
			
		||||
 | 
			
		||||
# Handle interrupts
 | 
			
		||||
trap : SIGINT
 | 
			
		||||
trap "echo 'Boot interrupted'; exit 1" SIGQUIT
 | 
			
		||||
 | 
			
		||||
/sbin/rc sysinit || exit 1
 | 
			
		||||
/sbin/rc boot || exit 1
 | 
			
		||||
/sbin/rc default
 | 
			
		||||
 | 
			
		||||
# We don't actually care if rc default worked or not, we should exit 0
 | 
			
		||||
# to allow logins
 | 
			
		||||
exit 0
 | 
			
		||||
@@ -1,17 +0,0 @@
 | 
			
		||||
#!@SHELL@
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
# Handle interrupts
 | 
			
		||||
trap : SIGINT SIGQUIT
 | 
			
		||||
 | 
			
		||||
# Try and use stuff in /lib over anywhere else so we can shutdown
 | 
			
		||||
# local mounts correctly.
 | 
			
		||||
LD_LIBRARY_PATH="/lib${LD_LIBRARY_PATH:+:}${LDLIBRARY_PATH}" ; export LD_LIBRARY_PATH
 | 
			
		||||
 | 
			
		||||
# If $TERM is not set then assume default of @TERM@
 | 
			
		||||
# This gives us a nice colour boot :)
 | 
			
		||||
[ -z "$TERM" -o "$TERM" = "dumb" ] && TERM="@TERM@" && export TERM
 | 
			
		||||
 | 
			
		||||
action=${1:-shutdown}
 | 
			
		||||
exec /sbin/rc "${action}"
 | 
			
		||||
							
								
								
									
										4
									
								
								index.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								index.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,4 @@
 | 
			
		||||
<p>
 | 
			
		||||
This site is under construction. There will be much more information
 | 
			
		||||
posted here soon, so come back often.
 | 
			
		||||
</p>
 | 
			
		||||
							
								
								
									
										11
									
								
								init.d.misc/.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								init.d.misc/.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -1,11 +0,0 @@
 | 
			
		||||
avahi-dnsconfd
 | 
			
		||||
avahid
 | 
			
		||||
dhcpcd
 | 
			
		||||
dbus
 | 
			
		||||
hald
 | 
			
		||||
named
 | 
			
		||||
ntpd
 | 
			
		||||
openvpn
 | 
			
		||||
polkitd
 | 
			
		||||
sshd
 | 
			
		||||
wpa_supplicant
 | 
			
		||||
@@ -1,11 +0,0 @@
 | 
			
		||||
DIR=	${INITDIR}
 | 
			
		||||
SRCS=	avahi-dnsconfd.in avahid.in dhcpcd.in dbus.in \
 | 
			
		||||
	hald.in named.in ntpd.in \
 | 
			
		||||
	openvpn.in polkitd.in sshd.in wpa_supplicant.in
 | 
			
		||||
 | 
			
		||||
MK=	../mk
 | 
			
		||||
 | 
			
		||||
SED_EXTRA+= -e 's:@VARBASE@:/var:g'
 | 
			
		||||
 | 
			
		||||
include ${MK}/os.mk
 | 
			
		||||
include ${MK}/scripts.mk
 | 
			
		||||
@@ -1,15 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
command=@PKG_PREFIX@/sbin/avahi-dnsconfd
 | 
			
		||||
command_args="$avahi_dnsconfd_args -D"
 | 
			
		||||
pidfile=@VARBASE@/run/avahi-dnsconfd.pid
 | 
			
		||||
name="Avahi DNS Configuration Daemon"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	use dns
 | 
			
		||||
	need localmount dbus
 | 
			
		||||
	after bootmisc
 | 
			
		||||
}
 | 
			
		||||
@@ -1,15 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
command=@PKG_PREFIX@/sbin/avahi-daemon
 | 
			
		||||
command_args="$avahid_args -D"
 | 
			
		||||
pidfile=@VARBASE@/run/avahi-daemon/pid
 | 
			
		||||
name="Avahi Service Advertisement Daemon"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	use dns
 | 
			
		||||
	need localmount dbus
 | 
			
		||||
	after bootmisc
 | 
			
		||||
}
 | 
			
		||||
@@ -1,19 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
command=@PKG_PREFIX@/bin/dbus-daemon
 | 
			
		||||
pidfile=@VARBASE@/run/dbus/pid
 | 
			
		||||
command_args="${dbusd_args---system}"
 | 
			
		||||
name="Message Bus Daemon"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need localmount net
 | 
			
		||||
	after bootmisc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start_pre()
 | 
			
		||||
{
 | 
			
		||||
	mkdir -p $(dirname $pidfile)
 | 
			
		||||
}
 | 
			
		||||
@@ -1,27 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
command=/sbin/dhcpcd
 | 
			
		||||
pidfile=/var/run/dhcpcd.pid
 | 
			
		||||
command_args=-q
 | 
			
		||||
name="DHCP Client Daemon"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	provide net
 | 
			
		||||
	need localmount
 | 
			
		||||
	use logger
 | 
			
		||||
	after bootmisc modules
 | 
			
		||||
	before dns
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop_pre()
 | 
			
		||||
{
 | 
			
		||||
	# When shutting down, kill dhcpcd but preserve network
 | 
			
		||||
	# We do this as /var/run/dhcpcd could be cleaned out when we
 | 
			
		||||
	# return to multiuser.
 | 
			
		||||
	if yesno $RC_GOINGDOWN; then
 | 
			
		||||
		: ${stopsig:=SIGKILL}
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
@@ -1,24 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
command=@PKG_PREFIX@/sbin/dnsmasq
 | 
			
		||||
command_args=$dnsmasq_args
 | 
			
		||||
pidfile=@VARBASE@/run/dnsmasq.pid
 | 
			
		||||
required_files=/etc/dnsmasq.conf
 | 
			
		||||
 | 
			
		||||
extra_started_commands="reload"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	provide dns
 | 
			
		||||
	need localmount net
 | 
			
		||||
	after bootmisc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
reload()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Reloading $RC_SVCNAME"
 | 
			
		||||
	start-stop-daemon --signal SIGHUP --pidfile "$pidfile"
 | 
			
		||||
	eend $?
 | 
			
		||||
}
 | 
			
		||||
@@ -1,13 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
command=@PKG_PREFIX@/sbin/hald
 | 
			
		||||
pidfile=@VARBASE@/run/hald/hald.pid
 | 
			
		||||
command_args=$hald_args
 | 
			
		||||
name="Hardware Abstraction Layer Daemon"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need dbus
 | 
			
		||||
}
 | 
			
		||||
@@ -1,112 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
command=/usr/sbin/named
 | 
			
		||||
command_args=$named_args
 | 
			
		||||
pidfile=@VARBASE@/run/named.pid
 | 
			
		||||
name="Domain Name server"
 | 
			
		||||
extra_started_commands="reload"
 | 
			
		||||
 | 
			
		||||
namedb=/etc/namedb
 | 
			
		||||
uid=named
 | 
			
		||||
case "$RC_UNAME" in
 | 
			
		||||
	FreeBSD)
 | 
			
		||||
		uid=bind
 | 
			
		||||
		pidfile=@VARBASE@/run/named/pid
 | 
			
		||||
		;;
 | 
			
		||||
	Linux)
 | 
			
		||||
		uid=bind
 | 
			
		||||
		;;
 | 
			
		||||
esac
 | 
			
		||||
: ${named_uid:=${uid}}
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	provide dns
 | 
			
		||||
	need localmount
 | 
			
		||||
	after bootmisc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start_pre()
 | 
			
		||||
{
 | 
			
		||||
	if [ -n "$named_chroot" ]; then
 | 
			
		||||
		# Create (or update) the chroot directory structure
 | 
			
		||||
		if [ -r /etc/mtree/BIND.chroot.dist ]; then
 | 
			
		||||
			mtree -deU -f /etc/mtree/BIND.chroot.dist -p "$named_chroot"
 | 
			
		||||
		else
 | 
			
		||||
			ewarn "/etc/mtree/BIND.chroot.dist missing,"
 | 
			
		||||
			ewarn "chroot directory structure not updated"
 | 
			
		||||
		fi
 | 
			
		||||
 | 
			
		||||
		if [ ! -d "$named_chroot"/. ]; then
 | 
			
		||||
			eerror "chroot directory $named_chroot missing"
 | 
			
		||||
			exit 1
 | 
			
		||||
		fi
 | 
			
		||||
 | 
			
		||||
		# Create /etc/namedb symlink
 | 
			
		||||
		if [ ! -L "$namedb" ]; then
 | 
			
		||||
			if [ -d "$namedb" ]; then
 | 
			
		||||
				ewarn "named chroot: $namedb is a directory!"
 | 
			
		||||
			elif [ -e "$namedb" ]; then
 | 
			
		||||
				ewarn "named chroot: $namedb exists!"
 | 
			
		||||
			else
 | 
			
		||||
				ln -s "$named_chroot$namedb" "$namedb"
 | 
			
		||||
			fi
 | 
			
		||||
		else
 | 
			
		||||
			# Make sure it points to the right place.
 | 
			
		||||
			ln -shf "$named_chroot$namedb" "$namedb"
 | 
			
		||||
		fi
 | 
			
		||||
 | 
			
		||||
		case "$RC_UNAME" in
 | 
			
		||||
			*BSD|DragonFly)
 | 
			
		||||
				# Mount a devfs in the chroot directory if needed
 | 
			
		||||
				umount "$named_chroot"/dev 2>/dev/null
 | 
			
		||||
				mount -t devfs dev "$named_chroot"/dev
 | 
			
		||||
				devfs -m "$named_chroot"/dev \
 | 
			
		||||
					ruleset devfsrules_hide_all
 | 
			
		||||
				devfs -m "$named_chroot"/dev \
 | 
			
		||||
					rule apply path null unhide
 | 
			
		||||
				devfs -m "$named_chroot"/dev \
 | 
			
		||||
					rule apply path random unhide
 | 
			
		||||
				;;
 | 
			
		||||
		esac
 | 
			
		||||
 | 
			
		||||
		# Copy local timezone information if it is not up to date.
 | 
			
		||||
		if [ -r /etc/localtime ]; then
 | 
			
		||||
			cmp -s /etc/localtime "$named_chroot/etc/localtime" ||
 | 
			
		||||
			cp -p /etc/localtime "$named_chroot/etc/localtime"
 | 
			
		||||
		fi
 | 
			
		||||
 | 
			
		||||
		command_args="$command_args -t $named_chroot"
 | 
			
		||||
 | 
			
		||||
		ln -fs "$named_chroot$pidfile" "$pidfile"
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	if [ ! -s "$named_chroot$namedb/rndc.conf" ]; then
 | 
			
		||||
		local confgen="${command%/named}/rndc-confgen -a -b256 -u $named_uid \
 | 
			
		||||
			-c $named_chrootdir/etc/namedb/rndc.key"
 | 
			
		||||
		if [ -s "$named_chroot$namedb/rndc.key" ]; then
 | 
			
		||||
			local getuser="stat -f%Su"
 | 
			
		||||
			[ "$RC_UNAME" = Linux ] && getuser="stat -c%U"
 | 
			
		||||
			case $(${getuser} "$named_chroot$namedb"/rndc.key) in
 | 
			
		||||
				root|"$named_uid");;
 | 
			
		||||
				*) $confgen;;
 | 
			
		||||
			esac
 | 
			
		||||
		else
 | 
			
		||||
			$confgen
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
reload()
 | 
			
		||||
{
 | 
			
		||||
	rndc reload
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop_post()
 | 
			
		||||
{
 | 
			
		||||
	if [ -n "$named_chroot" -a -c "$named_chroot"/dev/null ]; then
 | 
			
		||||
		umount "$named_chroot"/dev 2>/dev/null || true
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
@@ -1,37 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
: ${ntpd_config:=/etc/ntp.conf}
 | 
			
		||||
: ${ntpd_drift:=/var/db/ntpd.drift}
 | 
			
		||||
 | 
			
		||||
command=/usr/sbin/ntpd
 | 
			
		||||
required_files=$ntpd_config
 | 
			
		||||
pidfile=/var/run/ntpd.pid
 | 
			
		||||
command_args="$ntpd_args -c $ntpd_config -f $ntpd_drift -p $pidfile"
 | 
			
		||||
name="Network Time Protocol Daemon"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	use dns
 | 
			
		||||
	need localmount
 | 
			
		||||
	after bootmisc ntp-client
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start_pre()
 | 
			
		||||
{
 | 
			
		||||
	if [ -n "$ntpd_chroot" ]; then
 | 
			
		||||
		case "$RC_UNAME" in
 | 
			
		||||
			*BSD|DragonFly)
 | 
			
		||||
				if [ ! -c "$ntpd_chroot/dev/clockctl" ]; then
 | 
			
		||||
					rm -f "$ntpd_chroot/dev/clockctl"
 | 
			
		||||
					(cd /dev; /bin/pax -rw -pe clockctl \
 | 
			
		||||
					 "$ntpd_chroot/dev")
 | 
			
		||||
				fi
 | 
			
		||||
				;;
 | 
			
		||||
		esac
 | 
			
		||||
		ln -fs "$ntpd_chroot$ntpd_drift" "$ntpd_drift"
 | 
			
		||||
 | 
			
		||||
		command_args="$command_args -u ntpd:ntpd -i $ntpd_chroot"
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
@@ -1,67 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
vpn=${RC_SVCNAME#*.}
 | 
			
		||||
name="OpenVPN"
 | 
			
		||||
[ "$vpn" != openvpn ] && name="$name ($vpn)"
 | 
			
		||||
command=@PKG_PREFIX@/sbin/openvpn
 | 
			
		||||
 | 
			
		||||
pidfile=@VARBASE@/run/"$RC_SVCNAME".pid
 | 
			
		||||
: ${openvpn_dir:=@PKG_PREFIX@/etc/openvpn}
 | 
			
		||||
: ${openvpn_config:=$openvpn_dir/$vpn.conf}
 | 
			
		||||
command_args="$openvpn_args --daemon --config $openvpn_config"
 | 
			
		||||
command_args="$command_args --writepid $pidfile"
 | 
			
		||||
required_dirs=$openvpn_dir
 | 
			
		||||
required_files=$openvpn_config
 | 
			
		||||
 | 
			
		||||
# If we're an openvpn client, then supply a nice default config
 | 
			
		||||
# You can find sample up/down scripts in the OpenRC support/openvpn dir
 | 
			
		||||
if yesno $openvpn_client; then
 | 
			
		||||
	: ${openvpn_up:=${openvpn_dir}/up.sh}
 | 
			
		||||
	: ${openvpn_down:=${openvpn_dir}/down.sh}
 | 
			
		||||
	command_args="$command_args --nobind --up-delay --up-restart --down-pre"
 | 
			
		||||
	command_args="$command_args --up $openvpn_up"
 | 
			
		||||
	command_args="$command_args --down $openvpn_down"
 | 
			
		||||
	required_files="$required_files $openvpn_up $openvpn_down"
 | 
			
		||||
 | 
			
		||||
	in_background_fake="start stop"
 | 
			
		||||
	start_inactive=YES
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need localmount net
 | 
			
		||||
	use dns
 | 
			
		||||
	after bootmisc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start_pre()
 | 
			
		||||
{
 | 
			
		||||
	# Linux has good dynamic tun/tap creation
 | 
			
		||||
	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
		if [ ! -e /dev/net/tun ]; then
 | 
			
		||||
			if ! modprobe tun; then
 | 
			
		||||
				eerror "TUN/TAP support is not available in this kernel"
 | 
			
		||||
				return 1
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
		if [ -h /dev/net/tun -a -c /dev/misc/net/tun ]; then
 | 
			
		||||
			ebegin "Detected broken /dev/net/tun symlink, fixing..."
 | 
			
		||||
			rm -f /dev/net/tun
 | 
			
		||||
			ln -s /dev/misc/net/tun /dev/net/tun
 | 
			
		||||
			eend $?
 | 
			
		||||
		fi
 | 
			
		||||
	else
 | 
			
		||||
		if command -v kldload >/dev/null 2>&1; then
 | 
			
		||||
			# Hammer the modules home by default
 | 
			
		||||
			sysctl -a | grep -q '\.tun\.' || kldload if_tun
 | 
			
		||||
			sysctl -a | grep -q '\.tap\.' || kldload if_tap
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	# If the config file does not specify the cd option, we do
 | 
			
		||||
	if ! grep -q "^[ \t]*cd[ \t].*" "$openvpn_config"; then
 | 
			
		||||
		command_args="$command_args --cd $openvpn_dir"
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
@@ -1,13 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
command=@PKG_PREFIX@/sbin/polkitd
 | 
			
		||||
pidfile=@VARBASE@/run/polkitd/polkitd.pid
 | 
			
		||||
command_args="$polkitd_args"
 | 
			
		||||
name="PolicyKit Daemon"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need dbus
 | 
			
		||||
}
 | 
			
		||||
@@ -1,35 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
command=/usr/sbin/sshd
 | 
			
		||||
command_args=$sshd_args
 | 
			
		||||
pidfile=@VARBASE@/run/sshd.pid
 | 
			
		||||
required_files=/etc/ssh/sshd_config
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	use logger dns
 | 
			
		||||
	need net
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start_pre()
 | 
			
		||||
{
 | 
			
		||||
	if [ ! -e /etc/ssh/ssh_host_key ]; then
 | 
			
		||||
		ebegin "Generating Hostkey"
 | 
			
		||||
		ssh-keygen -t rsa1 -b 1024 -f /etc/ssh/ssh_host_key -N ''
 | 
			
		||||
		eend $? || return 1
 | 
			
		||||
	fi
 | 
			
		||||
	if [ ! -e /etc/ssh/ssh_host_dsa_key ]; then
 | 
			
		||||
		ebegin "Generating DSA Hostkey"
 | 
			
		||||
		ssh-keygen -d -f /etc/ssh/ssh_host_dsa_key -N ''
 | 
			
		||||
		eend $? || return 1
 | 
			
		||||
	fi
 | 
			
		||||
	if [ ! -e /etc/ssh/ssh_host_rsa_key ]; then
 | 
			
		||||
		ebegin "Generating RSA Hostkey"
 | 
			
		||||
		ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''
 | 
			
		||||
		eend $? || return 1
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	$command -t
 | 
			
		||||
}
 | 
			
		||||
@@ -1,70 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
command=/usr/sbin/wpa_supplicant
 | 
			
		||||
: ${wpa_supplicant_conf:=/etc/wpa_supplicant.conf}
 | 
			
		||||
wpa_supplicant_if=${wpa_supplicant_if:+-i}$wpa_supplicant_if
 | 
			
		||||
command_args="$wpa_supplicant_args -B -c$wpa_supplicant_conf $wpa_supplicant_if"
 | 
			
		||||
name="WPA Supplicant Daemon"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need localmount
 | 
			
		||||
	use logger
 | 
			
		||||
	after bootmisc modules
 | 
			
		||||
	before dns dhcpcd net
 | 
			
		||||
	keyword -shutdown
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
find_wireless()
 | 
			
		||||
{
 | 
			
		||||
	local iface=
 | 
			
		||||
 | 
			
		||||
	case "$RC_UNAME" in
 | 
			
		||||
	Linux)
 | 
			
		||||
		for iface in /sys/class/net/*; do
 | 
			
		||||
			if [ -e "$iface"/wireless -o \
 | 
			
		||||
				-e "$iface"/phy80211 ]
 | 
			
		||||
			then
 | 
			
		||||
				echo "${iface##*/}"
 | 
			
		||||
				return 0
 | 
			
		||||
			fi
 | 
			
		||||
		done
 | 
			
		||||
		;;
 | 
			
		||||
	*)
 | 
			
		||||
		for iface in /dev/net/* $(ifconfig -l 2>/dev/null); do
 | 
			
		||||
			if ifconfig "${iface##*/}" 2>/dev/null | \
 | 
			
		||||
				grep -q "[ ]*ssid "
 | 
			
		||||
			then
 | 
			
		||||
				echo "${iface##*/}"
 | 
			
		||||
				return 0
 | 
			
		||||
			fi
 | 
			
		||||
		done
 | 
			
		||||
		;;
 | 
			
		||||
	esac
 | 
			
		||||
 | 
			
		||||
	return 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
append_wireless()
 | 
			
		||||
{
 | 
			
		||||
	local iface= i=
 | 
			
		||||
 | 
			
		||||
	iface=$(find_wireless)
 | 
			
		||||
	if [ -n "$iface" ]; then
 | 
			
		||||
		for i in $iface; do
 | 
			
		||||
			command_args="$command_args -i$i"
 | 
			
		||||
		done
 | 
			
		||||
	else
 | 
			
		||||
		eerror "Could not find a wireless interface"
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start_pre()
 | 
			
		||||
{
 | 
			
		||||
	case " $command_args" in
 | 
			
		||||
	*" -i"*) ;;
 | 
			
		||||
	*) append_wireless;;
 | 
			
		||||
	esac
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										45
									
								
								init.d/.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										45
									
								
								init.d/.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -1,45 +0,0 @@
 | 
			
		||||
bootmisc
 | 
			
		||||
fsck
 | 
			
		||||
hostname
 | 
			
		||||
local
 | 
			
		||||
localmount
 | 
			
		||||
loopback
 | 
			
		||||
moused
 | 
			
		||||
netmount
 | 
			
		||||
network
 | 
			
		||||
root
 | 
			
		||||
savecache
 | 
			
		||||
swap
 | 
			
		||||
swapfiles
 | 
			
		||||
sysctl
 | 
			
		||||
urandom
 | 
			
		||||
devfs
 | 
			
		||||
dmesg
 | 
			
		||||
hwclock
 | 
			
		||||
consolefont
 | 
			
		||||
keymaps
 | 
			
		||||
killprocs
 | 
			
		||||
modules
 | 
			
		||||
mount-ro
 | 
			
		||||
mtab
 | 
			
		||||
numlock
 | 
			
		||||
osclock
 | 
			
		||||
procfs
 | 
			
		||||
staticroute
 | 
			
		||||
sysfs
 | 
			
		||||
devdb
 | 
			
		||||
hostid
 | 
			
		||||
newsyslog
 | 
			
		||||
pf
 | 
			
		||||
rarpd
 | 
			
		||||
rc-enabled
 | 
			
		||||
rpcbind
 | 
			
		||||
savecore
 | 
			
		||||
swap-blk
 | 
			
		||||
swclock
 | 
			
		||||
syslogd
 | 
			
		||||
termencoding
 | 
			
		||||
ttys
 | 
			
		||||
wscons
 | 
			
		||||
tmpfiles.dev
 | 
			
		||||
tmpfiles.setup
 | 
			
		||||
@@ -1,39 +0,0 @@
 | 
			
		||||
include ../mk/net.mk
 | 
			
		||||
 | 
			
		||||
DIR=	${INITDIR}
 | 
			
		||||
SRCS=	bootmisc.in fsck.in hostname.in local.in localmount.in loopback.in \
 | 
			
		||||
	netmount.in osclock.in root.in savecache.in swap.in swapfiles.in \
 | 
			
		||||
	tmpfiles.setup.in swclock.in sysctl.in urandom.in ${SRCS-${OS}}
 | 
			
		||||
BIN=	${OBJS}
 | 
			
		||||
 | 
			
		||||
# Are we installing our network scripts?
 | 
			
		||||
ifeq (${MKNET},yes)
 | 
			
		||||
SRCS+= network.in staticroute.in
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
MK=	../mk
 | 
			
		||||
include ${MK}/os.mk
 | 
			
		||||
 | 
			
		||||
# Generic BSD scripts
 | 
			
		||||
SRCS-FreeBSD=	hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \
 | 
			
		||||
		rpcbind.in savecore.in syslogd.in
 | 
			
		||||
# These are FreeBSD specific
 | 
			
		||||
SRCS-FreeBSD+=	adjkerntz.in devd.in dumpon.in encswap.in ipfw.in \
 | 
			
		||||
		mixer.in nscd.in powerd.in syscons.in
 | 
			
		||||
 | 
			
		||||
SRCS-Linux=	devfs.in dmesg.in hwclock.in consolefont.in keymaps.in \
 | 
			
		||||
		killprocs.in modules.in mount-ro.in mtab.in numlock.in \
 | 
			
		||||
		procfs.in sysfs.in termencoding.in tmpfiles.dev.in
 | 
			
		||||
 | 
			
		||||
# Generic BSD scripts
 | 
			
		||||
SRCS-NetBSD=	hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \
 | 
			
		||||
		rpcbind.in savecore.in syslogd.in
 | 
			
		||||
# These are NetBSD specific
 | 
			
		||||
SRCS-NetBSD+=	devdb.in swap-blk.in ttys.in wscons.in
 | 
			
		||||
 | 
			
		||||
%.in: %${SFX}
 | 
			
		||||
	sed ${SED_REPLACE} ${SED_EXTRA} $< > $@
 | 
			
		||||
 | 
			
		||||
include ${MK}/scripts.mk
 | 
			
		||||
 | 
			
		||||
_installafter_: realinstall
 | 
			
		||||
@@ -1,62 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
extra_commands="save"
 | 
			
		||||
 | 
			
		||||
description="Sets the local clock to UTC or Local Time."
 | 
			
		||||
description_save="Saves the current time in the BIOS."
 | 
			
		||||
 | 
			
		||||
: ${clock:=${CLOCK:-UTC}}
 | 
			
		||||
if [ "$clock" = "UTC" ]; then
 | 
			
		||||
	utc="UTC"
 | 
			
		||||
else
 | 
			
		||||
	utc="Local Time"
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	provide clock
 | 
			
		||||
	# BSD adjkerntz needs to be able to write to /etc
 | 
			
		||||
	if [ "$clock" = "UTC" -a -e /etc/wall_cmos_clock ] ||
 | 
			
		||||
	   [ "$clock" != "UTC" -a ! -e /etc/wall_cmos_clock ]; then
 | 
			
		||||
		need root
 | 
			
		||||
	fi
 | 
			
		||||
	keyword -jail -prefix
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Starting the System Clock Adjuster [${utc}]"
 | 
			
		||||
	if [ "$clock" != "UTC" ]; then
 | 
			
		||||
		echo >/etc/wall_cmos_clock
 | 
			
		||||
		start-stop-daemon --start --exec /sbin/adjkerntz -- -i
 | 
			
		||||
	else
 | 
			
		||||
		rm -f /etc/wall_cmos_clock
 | 
			
		||||
		/sbin/adjkerntz -i
 | 
			
		||||
	fi
 | 
			
		||||
	eend $?
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
save()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Setting hardware clock using the system clock [${utc}]"
 | 
			
		||||
	adjkerntz -a
 | 
			
		||||
	eend $?
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	# Don't tweak the hardware clock on LiveCD halt.
 | 
			
		||||
	if yesno "${clock_systohc:-$CLOCK_SYSTOHC}"; then
 | 
			
		||||
	   [ -z "$CDBOOT" ] && save
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	ebegin "Stopping the System Clock Adjuster"
 | 
			
		||||
	if start-stop-daemon --test --quiet --stop --exec /sbin/adjkerntz; then
 | 
			
		||||
		start-stop-daemon --stop --exec /sbin/adjkerntz
 | 
			
		||||
		eend $?
 | 
			
		||||
	else
 | 
			
		||||
		eend 0
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
@@ -1,219 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need localmount
 | 
			
		||||
	before logger
 | 
			
		||||
	after clock root sysctl
 | 
			
		||||
	keyword -prefix -timeout
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
: ${wipe_tmp:=${WIPE_TMP:-yes}}
 | 
			
		||||
: ${log_dmesg:=${LOG_DMESG:-yes}}
 | 
			
		||||
 | 
			
		||||
cleanup_tmp_dir()
 | 
			
		||||
{
 | 
			
		||||
	local dir="$1"
 | 
			
		||||
 | 
			
		||||
	if ! [ -d "$dir" ]; then
 | 
			
		||||
		mkdir -p "$dir" || return $?
 | 
			
		||||
	fi
 | 
			
		||||
	checkpath -W "$dir" || return 1
 | 
			
		||||
	chmod a+rwt "$dir" 2> /dev/null
 | 
			
		||||
	cd "$dir" || return 1
 | 
			
		||||
	if yesno $wipe_tmp; then
 | 
			
		||||
		ebegin "Wiping $dir directory"
 | 
			
		||||
 | 
			
		||||
		# Faster than raw find
 | 
			
		||||
		if ! rm -rf -- [!ajlq\.]* 2>/dev/null ; then
 | 
			
		||||
			# Blah, too many files
 | 
			
		||||
			find . -maxdepth 1 -name '[!ajlq\.]*' -exec rm -rf -- {} +
 | 
			
		||||
		fi
 | 
			
		||||
 | 
			
		||||
		# pam_mktemp creates a .private directory within which
 | 
			
		||||
		# each user gets a private directory with immutable
 | 
			
		||||
		# bit set; remove the immutable bit before trying to
 | 
			
		||||
		# remove it.
 | 
			
		||||
		[ -d /tmp/.private ] && chattr -R -a /tmp/.private 2> /dev/null
 | 
			
		||||
 | 
			
		||||
		# Prune the paths that are left
 | 
			
		||||
		find . -maxdepth 1 \
 | 
			
		||||
			! -name . \
 | 
			
		||||
			! -name lost+found \
 | 
			
		||||
			! -name quota.user \
 | 
			
		||||
			! -name aquota.user \
 | 
			
		||||
			! -name quota.group \
 | 
			
		||||
			! -name aquota.group \
 | 
			
		||||
			! -name journal \
 | 
			
		||||
			-exec rm -rf -- {} +
 | 
			
		||||
		eend 0
 | 
			
		||||
	else
 | 
			
		||||
		ebegin "Cleaning $dir directory"
 | 
			
		||||
		rm -rf -- .X*-lock esrv* kio* \
 | 
			
		||||
			jpsock.* .fam* .esd* \
 | 
			
		||||
			orbit-* ssh-* ksocket-* \
 | 
			
		||||
			.*-unix
 | 
			
		||||
		eend 0
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
cleanup_var_run_dir()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Cleaning /var/run"
 | 
			
		||||
	for x in $(find /var/run ! -type d ! -name utmp \
 | 
			
		||||
		! -name random-seed ! -name dev.db \
 | 
			
		||||
		! -name ld-elf.so.hints ! -name ld.so.hints);
 | 
			
		||||
	do
 | 
			
		||||
		# Clean stale sockets
 | 
			
		||||
		if [ -S "$x" ]; then
 | 
			
		||||
			if command -v fuser >/dev/null 2>&1; then
 | 
			
		||||
				fuser "$x" >/dev/null 2>&1 || rm -- "$x"
 | 
			
		||||
			else
 | 
			
		||||
				rm -- "$x"
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
		[ ! -f "$x" ] && continue
 | 
			
		||||
		# Do not remove pidfiles of already running daemons
 | 
			
		||||
		case "$x" in
 | 
			
		||||
			*.pid)
 | 
			
		||||
				start-stop-daemon --test --quiet \
 | 
			
		||||
				--stop --pidfile "$x" && continue
 | 
			
		||||
			;;
 | 
			
		||||
		esac
 | 
			
		||||
		rm -f -- "$x"
 | 
			
		||||
	done
 | 
			
		||||
	eend 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
mkutmp()
 | 
			
		||||
{
 | 
			
		||||
	: >"$1"
 | 
			
		||||
	# Not all systems have the utmp group
 | 
			
		||||
	chgrp utmp "$1" 2>/dev/null
 | 
			
		||||
	chmod 0664 "$1"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
migrate_to_run()
 | 
			
		||||
{
 | 
			
		||||
	src="$1"
 | 
			
		||||
	dst="$2"
 | 
			
		||||
 	if [ -L $src -a "$(readlink -f $src)" != $dst ]; then
 | 
			
		||||
 		ewarn "$src does not point to $dst."
 | 
			
		||||
 		ewarn "Setting $src to point to $dst."
 | 
			
		||||
 		rm $src
 | 
			
		||||
 	elif [ ! -L $src -a -d $src ]; then
 | 
			
		||||
 		ebegin "Migrating $src to $dst"
 | 
			
		||||
 		cp -a $src/* $dst/
 | 
			
		||||
 		rm -rf $src
 | 
			
		||||
 		eend $?
 | 
			
		||||
 	fi
 | 
			
		||||
 	# If $src doesn't exist at all, just run this
 | 
			
		||||
 	if [ ! -e $src ]; then
 | 
			
		||||
 		ln -s $dst $src
 | 
			
		||||
 	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
clean_run()
 | 
			
		||||
{
 | 
			
		||||
	[ "$RC_SYS" = VSERVER -o "$RC_SYS" = LXC ] && return 0
 | 
			
		||||
	local dir
 | 
			
		||||
	dir=$(mktemp -d)
 | 
			
		||||
	mount --bind / $dir
 | 
			
		||||
	rm -rf $dir/run/*
 | 
			
		||||
	umount $dir
 | 
			
		||||
	rm -rf $dir
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	# Remove any added console dirs
 | 
			
		||||
	if checkpath -W "$RC_LIBEXECDIR"; then
 | 
			
		||||
		rm -rf "$RC_LIBEXECDIR"/console/*
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	local logw=false runw=false extra=
 | 
			
		||||
	# Ensure that our basic dirs exist
 | 
			
		||||
	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
		# Satisfy Linux FHS
 | 
			
		||||
		extra=/var/lib/misc
 | 
			
		||||
		if [ ! -d /run ]; then
 | 
			
		||||
			extra="/var/run $extra"
 | 
			
		||||
		fi
 | 
			
		||||
	else
 | 
			
		||||
		extra=/var/run
 | 
			
		||||
	fi
 | 
			
		||||
	for x in /var/log /tmp $extra; do
 | 
			
		||||
		if ! [ -d $x ]; then
 | 
			
		||||
			if ! mkdir -p $x; then
 | 
			
		||||
				eend 1 "failed to create needed directory $x"
 | 
			
		||||
				return 1
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	if [ "$RC_UNAME" = Linux -a -d /run ]; then
 | 
			
		||||
		migrate_to_run	/var/lock /run/lock
 | 
			
		||||
		migrate_to_run	/var/run /run
 | 
			
		||||
		clean_run
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	if checkpath -W /var/run; then
 | 
			
		||||
		ebegin "Creating user login records"
 | 
			
		||||
		local xtra=
 | 
			
		||||
		[ "$RC_UNAME" = NetBSD ] && xtra=x
 | 
			
		||||
		for x in "" $xtra; do
 | 
			
		||||
			mkutmp /var/run/utmp$x
 | 
			
		||||
		done
 | 
			
		||||
		[ -e /var/log/wtmp ] || mkutmp /var/log/wtmp
 | 
			
		||||
		eend 0
 | 
			
		||||
 | 
			
		||||
		mountinfo -q -f tmpfs /var/run || cleanup_var_run_dir
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	# Clean up /tmp directories
 | 
			
		||||
	local tmp=
 | 
			
		||||
	for tmp in ${clean_tmp_dirs:-${wipe_tmp_dirs-/tmp}}; do
 | 
			
		||||
		mountinfo -q -f tmpfs "$tmp" || cleanup_tmp_dir "$tmp"
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	if checkpath -W /tmp; then
 | 
			
		||||
		# Make sure our X11 stuff have the correct permissions
 | 
			
		||||
		# Omit the chown as bootmisc is run before network is up
 | 
			
		||||
		# and users may be using lame LDAP auth #139411
 | 
			
		||||
		rm -rf /tmp/.ICE-unix /tmp/.X11-unix
 | 
			
		||||
		mkdir -p /tmp/.ICE-unix /tmp/.X11-unix
 | 
			
		||||
		chmod 1777 /tmp/.ICE-unix /tmp/.X11-unix
 | 
			
		||||
		if [ -x /sbin/restorecon ]; then
 | 
			
		||||
			restorecon /tmp/.ICE-unix /tmp/.X11-unix
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	if yesno $log_dmesg; then
 | 
			
		||||
		if $logw || checkpath -W /var/log; then
 | 
			
		||||
			# Create an 'after-boot' dmesg log
 | 
			
		||||
			if [ "$RC_SYS" != VSERVER -a "$RC_SYS" != OPENVZ -a "$RC_SYS" != LXC ]; then
 | 
			
		||||
				dmesg > /var/log/dmesg
 | 
			
		||||
				chmod 640 /var/log/dmesg
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	# Write a halt record if we're shutting down
 | 
			
		||||
	if [ "$RC_RUNLEVEL" = shutdown ]; then
 | 
			
		||||
		[ "$RC_UNAME" = Linux ] && halt -w
 | 
			
		||||
		if [ "$RC_SYS" = OPENVZ ]; then
 | 
			
		||||
			yesno $RC_REBOOT && printf "" >/reboot
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# vim: ft=sh
 | 
			
		||||
@@ -1,63 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Sets a font for the consoles."
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need localmount termencoding
 | 
			
		||||
	after hotplug bootmisc
 | 
			
		||||
	keyword -openvz -prefix -uml -vserver -xenu -lxc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
 | 
			
		||||
	consolefont=${consolefont:-${CONSOLEFONT}}
 | 
			
		||||
	unicodemap=${unicodemap:-${UNICODEMAP}}
 | 
			
		||||
	consoletranslation=${consoletranslation:-${CONSOLETRANSLATION}}
 | 
			
		||||
 | 
			
		||||
	if [ -z "$consolefont" ]; then
 | 
			
		||||
		ebegin "Using the default console font"
 | 
			
		||||
		eend 0
 | 
			
		||||
		return 0
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	if [ "$ttyn" = 0 ]; then
 | 
			
		||||
		ebegin "Skipping font setup (rc_tty_number == 0)"
 | 
			
		||||
		eend 0
 | 
			
		||||
		return 0
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	local x= param= sf_param= retval=0 ttydev=/dev/tty
 | 
			
		||||
 | 
			
		||||
	# Get additional parameters
 | 
			
		||||
	if [ -n "$consoletranslation" ]; then
 | 
			
		||||
		param="$param -m $consoletranslation"
 | 
			
		||||
	fi
 | 
			
		||||
	if [ -n "${unicodemap}" ]; then
 | 
			
		||||
		param="$param -u $unicodemap"
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	# Set the console font
 | 
			
		||||
	ebegin "Setting console font [$consolefont]"
 | 
			
		||||
	[ -d /dev/vc ] && ttydev=/dev/vc/
 | 
			
		||||
	x=1
 | 
			
		||||
	while [ $x -le $ttyn ]; do
 | 
			
		||||
		if ! setfont $consolefont $param -C $ttydev$x >/dev/null; then
 | 
			
		||||
			retval=1
 | 
			
		||||
			break
 | 
			
		||||
		fi
 | 
			
		||||
		: $(( x += 1 ))
 | 
			
		||||
	done
 | 
			
		||||
	eend $retval
 | 
			
		||||
 | 
			
		||||
	# Store the font so we can use it ASAP on boot
 | 
			
		||||
	if [ $retval -eq 0 ] && checkpath -W "$RC_LIBEXECDIR"; then
 | 
			
		||||
		mkdir -p "$RC_LIBEXECDIR"/console
 | 
			
		||||
		setfont -O "$RC_LIBEXECDIR"/console/font
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	return $retval
 | 
			
		||||
}
 | 
			
		||||
@@ -1,22 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
command=/sbin/devd
 | 
			
		||||
command_args=$devd_args
 | 
			
		||||
name="Device State Change Daemon"
 | 
			
		||||
 | 
			
		||||
depend() {
 | 
			
		||||
	need localmount
 | 
			
		||||
	after bootmisc
 | 
			
		||||
	before net.lo0
 | 
			
		||||
	keyword -jail -prefix
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start_pre() {
 | 
			
		||||
	sysctl hw.bus.devctl_disable=0 >/dev/null
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop_post() {
 | 
			
		||||
	sysctl hw.bus.devctl_disable=1 >/dev/null
 | 
			
		||||
}
 | 
			
		||||
@@ -1,21 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Creates the dev database"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need localmount
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Building the dev database"
 | 
			
		||||
	if [ /var/run/dev.db -nt /dev ]; then
 | 
			
		||||
		:
 | 
			
		||||
	else
 | 
			
		||||
		dev_mkdb
 | 
			
		||||
	fi
 | 
			
		||||
	eend $?
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										121
									
								
								init.d/devfs.in
									
									
									
									
									
								
							
							
						
						
									
										121
									
								
								init.d/devfs.in
									
									
									
									
									
								
							@@ -1,121 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Set up the /dev directory"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	provide dev-mount
 | 
			
		||||
	before dev
 | 
			
		||||
	keyword -prefix -vserver -lxc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
mount_dev()
 | 
			
		||||
{
 | 
			
		||||
	local action=--mount devfstype msg=Mounting
 | 
			
		||||
	# Some devices require exec, Bug #92921
 | 
			
		||||
	local mountopts="exec,nosuid,mode=0755"
 | 
			
		||||
	if yesno ${skip_mount_dev:-no} ; then
 | 
			
		||||
		einfo "/dev will not be mounted due to user request"
 | 
			
		||||
		return 0
 | 
			
		||||
	fi
 | 
			
		||||
	if mountinfo -q /dev; then
 | 
			
		||||
		action=--remount
 | 
			
		||||
		mountopts="remount,$mountopts"
 | 
			
		||||
		msg=Remounting
 | 
			
		||||
	fi
 | 
			
		||||
	if fstabinfo -q /dev; then
 | 
			
		||||
		ebegin "$msg /dev according to @SYSCONFDIR@/fstab"
 | 
			
		||||
		fstabinfo -q $action /dev
 | 
			
		||||
		eend $?
 | 
			
		||||
		return 0
 | 
			
		||||
	fi
 | 
			
		||||
	if grep -q devtmpfs /proc/filesystems; then
 | 
			
		||||
		devfstype=devtmpfs
 | 
			
		||||
		mountopts="$mountopts,size=10M"
 | 
			
		||||
	elif grep -q tmpfs /proc/filesystems; then
 | 
			
		||||
		devfstype=tmpfs
 | 
			
		||||
		mountopts="$mountopts,size=10M"
 | 
			
		||||
	fi
 | 
			
		||||
	if [ -n "$devfstype" ]; then
 | 
			
		||||
		ebegin "$msg $devfstype on /dev"
 | 
			
		||||
		mount -n -t $devfstype -o $mountopts dev /dev
 | 
			
		||||
		eend $?
 | 
			
		||||
	else
 | 
			
		||||
		ewarn "This kernel does not have devtmpfs or tmpfs support, and there"
 | 
			
		||||
		ewarn "is no entry for /dev in fstab."
 | 
			
		||||
		ewarn "This means /dev will not be mounted."
 | 
			
		||||
		ewarn "To avoid this message, set CONFIG_DEVTMPFS or CONFIG_TMPFS to y"
 | 
			
		||||
		ewarn "in your kernel configuration or see @SYSCONFDIR@/conf.d/devfs"
 | 
			
		||||
	fi
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
seed_dev()
 | 
			
		||||
{
 | 
			
		||||
	# Seed /dev with some things that we know we need
 | 
			
		||||
 | 
			
		||||
	# creating /dev/console, /dev/tty and /dev/tty1 to be able to write
 | 
			
		||||
	# to $CONSOLE with/without bootsplash before udevd creates it
 | 
			
		||||
	[ -c /dev/console ] || mknod -m 600 /dev/console c 5 1
 | 
			
		||||
	[ -c /dev/tty1 ] || mknod -m 620 /dev/tty1 c 4 1
 | 
			
		||||
	[ -c /dev/tty ] || mknod -m 666 /dev/tty c 5 0
 | 
			
		||||
 | 
			
		||||
	# udevd will dup its stdin/stdout/stderr to /dev/null
 | 
			
		||||
	# and we do not want a file which gets buffered in ram
 | 
			
		||||
	[ -c /dev/null ] || mknod -m 666 /dev/null c 1 3
 | 
			
		||||
 | 
			
		||||
	# so udev can add its start-message to dmesg
 | 
			
		||||
	[ -c /dev/kmsg ] || mknod -m 660 /dev/kmsg c 1 11
 | 
			
		||||
 | 
			
		||||
	# extra symbolic links not provided by default
 | 
			
		||||
	[ -e /dev/fd ] || ln -snf /proc/self/fd /dev/fd
 | 
			
		||||
	[ -e /dev/stdin ] || ln -snf /proc/self/fd/0 /dev/stdin
 | 
			
		||||
	[ -e /dev/stdout ] || ln -snf /proc/self/fd/1 /dev/stdout
 | 
			
		||||
	[ -e /dev/stderr ] || ln -snf /proc/self/fd/2 /dev/stderr
 | 
			
		||||
	[ -e /proc/kcore ] && ln -snf /proc/kcore /dev/core
 | 
			
		||||
 | 
			
		||||
	# Mount required directories as user may not have them in /etc/fstab
 | 
			
		||||
	for x in \
 | 
			
		||||
		"mqueue /dev/mqueue 1777 ,nodev mqueue" \
 | 
			
		||||
		"devpts /dev/pts 0755 ,gid=5,mode=0620 devpts" \
 | 
			
		||||
		"tmpfs /dev/shm 1777 ,nodev,mode=1777 shm" \
 | 
			
		||||
	; do
 | 
			
		||||
		set -- $x
 | 
			
		||||
		grep -Eq "[[:space:]]+$1$" /proc/filesystems || continue
 | 
			
		||||
		mountinfo -q $2 && continue
 | 
			
		||||
 | 
			
		||||
		if [ ! -d $2 ]; then
 | 
			
		||||
			mkdir -m $3 -p $2 >/dev/null 2>&1 || \
 | 
			
		||||
				ewarn "Could not create $2!"
 | 
			
		||||
		fi
 | 
			
		||||
 | 
			
		||||
		if [ -d $2 ]; then
 | 
			
		||||
			ebegin "Mounting $2"
 | 
			
		||||
			if ! fstabinfo --mount $2; then
 | 
			
		||||
				mount -n -t $1 -o noexec,nosuid$4 $5 $2
 | 
			
		||||
			fi
 | 
			
		||||
			eend $?
 | 
			
		||||
		fi
 | 
			
		||||
	done
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
restorecon_dev()
 | 
			
		||||
{
 | 
			
		||||
	if [ -x /sbin/restorecon ]; then
 | 
			
		||||
		ebegin "Restoring SELinux contexts in /dev"
 | 
			
		||||
		restorecon -rF /dev >/dev/null 2>&1
 | 
			
		||||
		eend $?
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	mount_dev
 | 
			
		||||
	seed_dev
 | 
			
		||||
	restorecon_dev
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
@@ -1,18 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Set the dmesg level for a cleaner boot"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	before dev modules
 | 
			
		||||
	keyword -lxc -prefix -vserver
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	if [ -n "$dmesg_level" ]; then
 | 
			
		||||
		dmesg -n$dmesg_level
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
@@ -1,25 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Configures a specific kernel dump device."
 | 
			
		||||
 | 
			
		||||
depend() {
 | 
			
		||||
	need swap
 | 
			
		||||
	keyword -jail -prefix
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start() {
 | 
			
		||||
	# Setup any user requested dump device
 | 
			
		||||
	if [ -n "$dump_device" ]; then
 | 
			
		||||
		ebegin "Activating kernel core dump device ($dump_device)"
 | 
			
		||||
		dumpon ${dump_device}
 | 
			
		||||
		eend $?
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop() {
 | 
			
		||||
	ebegin "Deactivating kernel core dump device"
 | 
			
		||||
	dumpon off
 | 
			
		||||
	eend $?
 | 
			
		||||
}
 | 
			
		||||
@@ -1,43 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright 1992-2012 FreeBSD Project
 | 
			
		||||
# Released under the 2-clause BSD license
 | 
			
		||||
 | 
			
		||||
depend() {
 | 
			
		||||
	before swap
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start() {
 | 
			
		||||
	while read device mountpoint type options rest ; do
 | 
			
		||||
		case ":${device}:${type}:${options}" in
 | 
			
		||||
		:#*)
 | 
			
		||||
			;;
 | 
			
		||||
		*.bde:swap:sw)
 | 
			
		||||
			passphrase=$(dd if=/dev/random count=1 2>/dev/null | md5 -q)
 | 
			
		||||
			device="${device%.bde}"
 | 
			
		||||
			gbde init "${device}" -P "${passphrase}" || return 1
 | 
			
		||||
			gbde attach "${device}" -p "${passphrase}" || return 1
 | 
			
		||||
			;;
 | 
			
		||||
		*.eli:swap:sw)
 | 
			
		||||
			device="${device%.eli}"
 | 
			
		||||
			geli onetime ${geli_swap_flags} "${device}" || return 1
 | 
			
		||||
			;;
 | 
			
		||||
		esac
 | 
			
		||||
	done < /etc/fstab
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop() {
 | 
			
		||||
	while read device mountpoint type options rest ; do
 | 
			
		||||
		case ":${device}:${type}:${options}" in
 | 
			
		||||
		:#*)
 | 
			
		||||
			;;
 | 
			
		||||
		*.bde:swap:sw)
 | 
			
		||||
			device="${device%.bde}"
 | 
			
		||||
			gbde detach "${device}"
 | 
			
		||||
			;;
 | 
			
		||||
		*.eli:swap:sw)
 | 
			
		||||
			# Nothing here, because geli swap devices should be
 | 
			
		||||
			# created with the auto-detach-on-last-close option.
 | 
			
		||||
			;;
 | 
			
		||||
		esac
 | 
			
		||||
	done < /etc/fstab
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										123
									
								
								init.d/fsck.in
									
									
									
									
									
								
							
							
						
						
									
										123
									
								
								init.d/fsck.in
									
									
									
									
									
								
							@@ -1,123 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Check and repair filesystems according to /etc/fstab"
 | 
			
		||||
_IFS="
 | 
			
		||||
"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	use dev clock modules
 | 
			
		||||
	keyword -jail -openvz -prefix -timeout -vserver -lxc -uml
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
_abort() {
 | 
			
		||||
	rc-abort
 | 
			
		||||
	return 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# We should only reboot when first booting
 | 
			
		||||
_reboot() {
 | 
			
		||||
	if [ "$RC_RUNLEVEL" = "$RC_BOOTLEVEL" ]; then
 | 
			
		||||
		reboot "$@"
 | 
			
		||||
		_abort || return 1
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
_forcefsck()
 | 
			
		||||
{
 | 
			
		||||
	[ -e /forcefsck ] || get_bootparam forcefsck
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	local fsck_opts= p= check_extra=
 | 
			
		||||
 | 
			
		||||
	if [ -e /fastboot ]; then
 | 
			
		||||
		ewarn "Skipping fsck due to /fastboot"
 | 
			
		||||
		return 0
 | 
			
		||||
	fi
 | 
			
		||||
	if _forcefsck; then
 | 
			
		||||
		fsck_opts="$fsck_opts -f"
 | 
			
		||||
		check_extra="(check forced)"
 | 
			
		||||
	elif ! yesno ${fsck_on_battery:-YES} && ! on_ac_power; then
 | 
			
		||||
		ewarn "Skipping fsck due to not being on AC power"
 | 
			
		||||
		return 0
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	if [ -n "$fsck_passno" ]; then
 | 
			
		||||
		check_extra="[passno $fsck_passno] $check_extra"
 | 
			
		||||
		if [ -n "$fsck_mnt" ]; then
 | 
			
		||||
			eerror "Only 1 of fsck_passno and fsck_mnt must be set!"
 | 
			
		||||
			return 1
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
	ebegin "Checking local filesystems $check_extra"
 | 
			
		||||
	# Append passno mounts
 | 
			
		||||
	for p in $fsck_passno; do
 | 
			
		||||
		local IFS="$_IFS"
 | 
			
		||||
		case "$p" in
 | 
			
		||||
			[0-9]*) p="=$p";;
 | 
			
		||||
		esac
 | 
			
		||||
		set -- "$@" $(fstabinfo --passno "$p")
 | 
			
		||||
		unset IFS
 | 
			
		||||
	done
 | 
			
		||||
	# Append custom mounts
 | 
			
		||||
	for m in $fsck_mnt ; do
 | 
			
		||||
		local IFS="$_IFS"
 | 
			
		||||
		set -- "$@" "$m"
 | 
			
		||||
		unset IFS
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
		local skiptypes
 | 
			
		||||
		skiptypes=$(printf 'no%s,' ${net_fs_list} ${extra_net_fs_list})
 | 
			
		||||
		[ "${skiptypes}" = "no," ] && skiptypes=""
 | 
			
		||||
		fsck_opts="$fsck_opts -C0 -T -t ${skiptypes}noopts=_netdev"
 | 
			
		||||
		if [ -z "$fsck_passno" -a -z "$fsck_mnt" ]; then
 | 
			
		||||
			fsck_args=${fsck_args:--A -p}
 | 
			
		||||
			if echo 2>/dev/null >/.test.$$; then
 | 
			
		||||
				rm -f /.test.$$
 | 
			
		||||
				fsck_opts="$fsck_opts -R"
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	trap : INT QUIT
 | 
			
		||||
	fsck ${fsck_args:--p} $fsck_opts "$@"
 | 
			
		||||
	case $? in
 | 
			
		||||
	0)	eend 0; return 0;;
 | 
			
		||||
	1)	ewend 1 "Filesystems repaired"; return 0;;
 | 
			
		||||
	2|3)	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
		 	ewend 1 "Filesystems repaired, but reboot needed"
 | 
			
		||||
	         	_reboot -f
 | 
			
		||||
		else
 | 
			
		||||
			ewend 1 "Filesystems still have errors;" \
 | 
			
		||||
				"manual fsck required"
 | 
			
		||||
			_abort
 | 
			
		||||
		fi;;
 | 
			
		||||
	4)	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
			ewend 1 "Fileystem errors left uncorrected, aborting"
 | 
			
		||||
			_abort
 | 
			
		||||
		else
 | 
			
		||||
		 	ewend 1 "Filesystems repaired, but reboot needed"
 | 
			
		||||
			_reboot
 | 
			
		||||
		fi;;
 | 
			
		||||
	8)	ewend 1 "Operational error"; return 0;;
 | 
			
		||||
	12)	ewend 1 "fsck interrupted";;
 | 
			
		||||
	*)	eend 2 "Filesystems couldn't be fixed";;
 | 
			
		||||
	esac
 | 
			
		||||
	_abort || return 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	# Fake function so we always shutdown correctly.
 | 
			
		||||
	_abort() { return 0; }
 | 
			
		||||
	_reboot() { return 0; }
 | 
			
		||||
	_forcefsck() { return 1; }
 | 
			
		||||
 | 
			
		||||
	yesno $fsck_shutdown && start
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
@@ -1,80 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
extra_commands="reset"
 | 
			
		||||
: ${hostid_file:=/etc/hostid}
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	use root
 | 
			
		||||
	before devd net
 | 
			
		||||
	keyword -jail -prefix
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
_set()
 | 
			
		||||
{
 | 
			
		||||
	local id=0
 | 
			
		||||
 | 
			
		||||
	if [ -n "$1" ]; then
 | 
			
		||||
		id=$(echo "$1" | md5)
 | 
			
		||||
		id="0x${id%????????????????????????}"
 | 
			
		||||
	fi
 | 
			
		||||
	ebegin "Setting Host ID: $id"
 | 
			
		||||
	sysctl -w kern.hostid="$id" >/dev/null
 | 
			
		||||
	eend $? || return 1
 | 
			
		||||
 | 
			
		||||
	if sysctl -n kern.hostuuid >/dev/null 2>&1; then
 | 
			
		||||
		[ -n "$1" ] && id=$1
 | 
			
		||||
		ebegin "Setting Host UUID: $id"
 | 
			
		||||
		sysctl kern.hostuuid="$id" >/dev/null
 | 
			
		||||
		eend $? || return 1
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# First we check to see if there is a system UUID
 | 
			
		||||
# If so then we use that and erase the hostid file,
 | 
			
		||||
# otherwise we generate a random UUID.
 | 
			
		||||
reset()
 | 
			
		||||
{
 | 
			
		||||
	local uuid= x="[0-9a-f]" y="$x$x$x$x"
 | 
			
		||||
 | 
			
		||||
	if command -v kenv >/dev/null 2>&1; then
 | 
			
		||||
		uuid=$(kenv smbios.system.uuid 2>/dev/null)
 | 
			
		||||
	fi
 | 
			
		||||
	case "$uuid" in
 | 
			
		||||
		$y$y-$y-$y-$y-$y$y$y);;
 | 
			
		||||
		*) uuid=;;
 | 
			
		||||
	esac
 | 
			
		||||
 | 
			
		||||
	if [ -n "$uuid" ]; then
 | 
			
		||||
		rm -f "$hostid_file"
 | 
			
		||||
	else
 | 
			
		||||
		uuid=$(uuidgen)
 | 
			
		||||
		if [ -z "$uuid" ]; then
 | 
			
		||||
			eerror "Unable to generate a UUID"
 | 
			
		||||
			return 1
 | 
			
		||||
		fi
 | 
			
		||||
		if ! echo "$uuid" >"$hostid_file"; then
 | 
			
		||||
			eerror "Failed to store UUID in \`$hostid_file'"
 | 
			
		||||
			return 1
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	_set "$uuid"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	if [ -r "$hostid_file" ]; then
 | 
			
		||||
		_set $(cat "$hostid_file")
 | 
			
		||||
	else
 | 
			
		||||
		reset
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	_set
 | 
			
		||||
}
 | 
			
		||||
@@ -1,19 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Sets the hostname of the machine."
 | 
			
		||||
 | 
			
		||||
depend() {
 | 
			
		||||
	keyword -prefix -lxc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	# HOSTNAME variable used to be defined in caps in conf.d/hostname.
 | 
			
		||||
	# It is also a magic variable in bash.
 | 
			
		||||
	hostname=${hostname-${HOSTNAME-localhost}} # checkbashisms: false positive
 | 
			
		||||
	ebegin "Setting hostname to $hostname"
 | 
			
		||||
	hostname "$hostname"
 | 
			
		||||
	eend $? "Failed to set the hostname"
 | 
			
		||||
}
 | 
			
		||||
@@ -1,141 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
extra_commands="save show"
 | 
			
		||||
 | 
			
		||||
description="Sets the local clock to UTC or Local Time."
 | 
			
		||||
description_save="Saves the current time in the BIOS."
 | 
			
		||||
description_show="Displays the current time in the BIOS."
 | 
			
		||||
 | 
			
		||||
: ${clock_adjfile:=${CLOCK_ADJFILE}}
 | 
			
		||||
: ${clock_args:=${CLOCK_OPTS}}
 | 
			
		||||
: ${clock_systohc:=${CLOCK_SYSTOHC}}
 | 
			
		||||
: ${clock:=${CLOCK:-UTC}}
 | 
			
		||||
if [ "$clock" = "UTC" ]; then
 | 
			
		||||
	utc="UTC"
 | 
			
		||||
	utc_cmd="--utc"
 | 
			
		||||
else
 | 
			
		||||
	utc="Local Time"
 | 
			
		||||
	utc_cmd="--localtime"
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	provide clock
 | 
			
		||||
	if yesno $clock_adjfile; then
 | 
			
		||||
		use root
 | 
			
		||||
	else
 | 
			
		||||
		before *
 | 
			
		||||
	fi
 | 
			
		||||
	keyword -openvz -prefix -uml -vserver -xenu -lxc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
setupopts()
 | 
			
		||||
{
 | 
			
		||||
	case "$(uname -m)" in
 | 
			
		||||
		s390*)
 | 
			
		||||
			utc="s390"
 | 
			
		||||
			;;
 | 
			
		||||
		*)
 | 
			
		||||
			if [ -e /proc/devices ] && \
 | 
			
		||||
				grep -q " cobd$" /proc/devices
 | 
			
		||||
			then
 | 
			
		||||
				utc="coLinux"
 | 
			
		||||
			fi
 | 
			
		||||
			;;
 | 
			
		||||
	esac
 | 
			
		||||
 | 
			
		||||
	case "$utc" in
 | 
			
		||||
		UTC|Local" "Time);;
 | 
			
		||||
		*) unset utc_cmd;;
 | 
			
		||||
	esac
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# hwclock doesn't always return non zero on error
 | 
			
		||||
_hwclock()
 | 
			
		||||
{
 | 
			
		||||
	local err="$(hwclock "$@" 2>&1 >/dev/null)"
 | 
			
		||||
 | 
			
		||||
	[ -z "$err" ] && return 0
 | 
			
		||||
	echo "${err}" >&2
 | 
			
		||||
	return 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	local retval=0 errstr=""
 | 
			
		||||
	setupopts
 | 
			
		||||
 | 
			
		||||
	if [ -z "$utc_cmd" ]; then
 | 
			
		||||
		ewarn "Not setting clock for $utc system"
 | 
			
		||||
		return 0
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	ebegin "Setting system clock using the hardware clock [$utc]"
 | 
			
		||||
	if [ -e /proc/modules ]; then
 | 
			
		||||
		local rtc=
 | 
			
		||||
		for rtc in /dev/rtc /dev/rtc[0-9]*; do
 | 
			
		||||
			[ -e "$rtc" ] && break
 | 
			
		||||
		done
 | 
			
		||||
		if [ ! -e "${rtc}" ]; then
 | 
			
		||||
			modprobe -q rtc-cmos || modprobe -q rtc || modprobe -q genrtc
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	# Always set the kernel's time zone.
 | 
			
		||||
	_hwclock --systz $utc_cmd $clock_args
 | 
			
		||||
	: $(( retval += $? ))
 | 
			
		||||
 | 
			
		||||
	if [ -e /etc/adjtime ] && yesno $clock_adjfile; then
 | 
			
		||||
		_hwclock --adjust $utc_cmd
 | 
			
		||||
		: $(( retval += $? ))
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	if yesno ${clock_hctosys:-YES}; then
 | 
			
		||||
		_hwclock --hctosys $utc_cmd $clock_args
 | 
			
		||||
		: $(( retval += $? ))
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	eend $retval "Failed to set the system clock"
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	# Don't tweak the hardware clock on LiveCD halt.
 | 
			
		||||
	[ -n "$CDBOOT" ] && return 0
 | 
			
		||||
	yesno ${clock_systohc:-YES} || return 0
 | 
			
		||||
 | 
			
		||||
	local retval=0 errstr=""
 | 
			
		||||
	setupopts
 | 
			
		||||
 | 
			
		||||
	[ -z "$utc_cmd" ] && return 0
 | 
			
		||||
 | 
			
		||||
	ebegin "Setting hardware clock using the system clock" "[$utc]"
 | 
			
		||||
 | 
			
		||||
	if ! yesno $clock_adjfile; then
 | 
			
		||||
		# Some implementations don't handle adjustments
 | 
			
		||||
		if LC_ALL=C hwclock --help 2>&1 | grep -q "\-\-noadjfile"; then
 | 
			
		||||
			utc_cmd="$utc_cmd --noadjfile"
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	_hwclock --systohc $utc_cmd $clock_args
 | 
			
		||||
	retval=$?
 | 
			
		||||
 | 
			
		||||
	eend $retval "Failed to sync clocks"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
save()
 | 
			
		||||
{
 | 
			
		||||
	clock_systohc=yes
 | 
			
		||||
	stop
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
show()
 | 
			
		||||
{
 | 
			
		||||
	setupopts
 | 
			
		||||
	hwclock --show "$utc_cmd" $clock_args
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										159
									
								
								init.d/ipfw.in
									
									
									
									
									
								
							
							
						
						
									
										159
									
								
								init.d/ipfw.in
									
									
									
									
									
								
							@@ -1,159 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
# This is based on /etc/rc.firewall and /etc/rc.firewall6 from FreeBSD
 | 
			
		||||
 | 
			
		||||
ipfw_ip_in=${ipfw_ip_in-any}
 | 
			
		||||
ipfw_ports_in=${ipfw_ports_in-auth ssh}
 | 
			
		||||
ipfw_ports_nolog=${ipfw_ports_nolog-135-139,445 1026,1027 1433,1434}
 | 
			
		||||
 | 
			
		||||
extra_commands="panic showstatus"
 | 
			
		||||
 | 
			
		||||
depend() {
 | 
			
		||||
	before net
 | 
			
		||||
	provide firewall
 | 
			
		||||
	keyword -jail
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
ipfw() {
 | 
			
		||||
	/sbin/ipfw -f -q "$@"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
have_ip6() {
 | 
			
		||||
	sysctl net.ipv6 2>/dev/null
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
init() {
 | 
			
		||||
	# Load the kernel module
 | 
			
		||||
	if ! sysctl net.inet.ip.fw.enable=1 >/dev/null 2>&1; then
 | 
			
		||||
		if ! kldload ipfw; then
 | 
			
		||||
			eend 1 "Unable to load firewall module"
 | 
			
		||||
			return 1
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	# Now all rules and give a good base
 | 
			
		||||
	ipfw flush
 | 
			
		||||
 | 
			
		||||
	ipfw add pass all from any to any via lo0
 | 
			
		||||
	ipfw add deny all from any to 127.0.0.0/8
 | 
			
		||||
	ipfw add deny ip from 127.0.0.0/8 to any
 | 
			
		||||
 | 
			
		||||
	if have_ip6; then
 | 
			
		||||
		ipfw add pass ip6 from any to any via lo0
 | 
			
		||||
		ipfw add deny ip6 from any to ::1
 | 
			
		||||
		ipfw add deny ip6 from ::1 to any
 | 
			
		||||
 | 
			
		||||
		ipfw add pass ip6 from :: to ff02::/16 proto ipv6-icmp
 | 
			
		||||
		ipfw add pass ip6 from fe80::/10 to fe80::/10 proto ipv6-icmp
 | 
			
		||||
		ipfw add pass ip6 from fe80::/10 to ff02::/16 proto ipv6-icmp
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start() {
 | 
			
		||||
	local i= p= log=
 | 
			
		||||
	ebegin "Starting firewall rules"
 | 
			
		||||
	if ! init; then
 | 
			
		||||
		eend 1 "Failed to flush firewall ruleset"
 | 
			
		||||
		return 1
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	# Use a stateful firewall
 | 
			
		||||
	ipfw add check-state
 | 
			
		||||
	ipfw add pass tcp from me to any established
 | 
			
		||||
 | 
			
		||||
	# Allow any connection out, adding state for each.
 | 
			
		||||
	ipfw add pass tcp  from me  to any setup keep-state
 | 
			
		||||
	ipfw add pass udp  from me  to any       keep-state
 | 
			
		||||
	ipfw add pass icmp from me  to any       keep-state
 | 
			
		||||
 | 
			
		||||
	if have_ip6; then
 | 
			
		||||
		ipfw add pass tcp  from me6 to any setup keep-state
 | 
			
		||||
		ipfw add pass udp  from me6 to any       keep-state
 | 
			
		||||
		ipfw add pass icmp from me6 to any       keep-state
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	# Allow DHCP.
 | 
			
		||||
	ipfw add pass udp  from 0.0.0.0 68 to 255.255.255.255 67 out
 | 
			
		||||
	ipfw add pass udp  from any 67     to me 68 in
 | 
			
		||||
	ipfw add pass udp  from any 67     to 255.255.255.255 68 in
 | 
			
		||||
	# Some servers will ping the IP while trying to decide if it's
 | 
			
		||||
	# still in use.
 | 
			
		||||
	ipfw add pass icmp from any to any icmptype 8
 | 
			
		||||
 | 
			
		||||
	# Allow "mandatory" ICMP in.
 | 
			
		||||
	ipfw add pass icmp from any to any icmptype 3,4,11
 | 
			
		||||
 | 
			
		||||
	if have_ip6; then
 | 
			
		||||
		# Allow ICMPv6 destination unreach
 | 
			
		||||
		ipfw add pass ip6 from any to any icmp6types 1 proto ipv6-icmp
 | 
			
		||||
 | 
			
		||||
		# Allow NS/NA/toobig (don't filter it out)
 | 
			
		||||
		ipfw add pass ip6 from any to any icmp6types 2,135,136 proto ipv6-icmp
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	# Add permits for this workstations published services below
 | 
			
		||||
	# Only IPs and nets in firewall_allowservices is allowed in.
 | 
			
		||||
	for i in $ipfw_ip_in; do
 | 
			
		||||
		for p in $ipfw_ports_in; do
 | 
			
		||||
			ipfw add pass tcp from $i to me $p
 | 
			
		||||
		done
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	# Allow all connections from trusted IPs.
 | 
			
		||||
	# Playing with the content of firewall_trusted could seriously
 | 
			
		||||
	# degrade the level of protection provided by the firewall.
 | 
			
		||||
	for i in $ipfw_ip_trust; do
 | 
			
		||||
		ipfw add pass ip from $i to me
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	ipfw add 65000 count ip from any to any
 | 
			
		||||
 | 
			
		||||
	# Drop packets to ports where we don't want logging
 | 
			
		||||
	for p in $ipfw_ports_nolog; do
 | 
			
		||||
		ipfw add deny { tcp or udp } from any to any $p in
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	# Broadcasts and muticasts
 | 
			
		||||
	ipfw add deny ip from any to 255.255.255.255
 | 
			
		||||
	ipfw add deny ip from any to 224.0.0.0/24
 | 
			
		||||
 | 
			
		||||
	# Noise from routers
 | 
			
		||||
	ipfw add deny udp from any to any 520 in
 | 
			
		||||
 | 
			
		||||
	# Noise from webbrowsing.
 | 
			
		||||
	# The stateful filter is a bit aggressive, and will cause some
 | 
			
		||||
	# connection teardowns to be logged.
 | 
			
		||||
	ipfw add deny tcp from any 80,443 to any 1024-65535 in
 | 
			
		||||
 | 
			
		||||
	# Deny and (if wanted) log the rest unconditionally.
 | 
			
		||||
	if yesno ${ipfw_log_deny:-no}; then
 | 
			
		||||
		log=log
 | 
			
		||||
		sysctl net.inet.ip.fw.verbose=1 >/dev/null
 | 
			
		||||
	fi
 | 
			
		||||
	ipfw add deny $log ip from any to any
 | 
			
		||||
 | 
			
		||||
	eend 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop() {
 | 
			
		||||
	ebegin "Stopping firewall rules"
 | 
			
		||||
	# We don't unload the kernel module as that action
 | 
			
		||||
	# can cause memory leaks as of FreeBSD 6.x
 | 
			
		||||
	sysctl net.inet.ip.fw.enable=0 >/dev/null
 | 
			
		||||
	eend $?
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
panic() {
 | 
			
		||||
	ebegin "Stopping firewall rules - hard"
 | 
			
		||||
	if ! init; then
 | 
			
		||||
		eend 1 "Failed to flush firewall ruleset"
 | 
			
		||||
		return 1
 | 
			
		||||
	fi
 | 
			
		||||
	eend 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
showstatus() {
 | 
			
		||||
	ipfw show
 | 
			
		||||
}
 | 
			
		||||
@@ -1,70 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Applies a keymap for the consoles."
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need localmount termencoding
 | 
			
		||||
	after bootmisc
 | 
			
		||||
	keyword -openvz -prefix -uml -vserver -xenu -lxc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
 | 
			
		||||
	: ${unicode:=$UNICODE}
 | 
			
		||||
	: ${keymap:=$KEYMAP}
 | 
			
		||||
	: ${extended_keymaps:=$EXTENDED_KEYMAPS}
 | 
			
		||||
	: ${windowkeys:=$SET_WINDOWSKEYS}
 | 
			
		||||
	: ${fix_euro:=$FIX_EURO}
 | 
			
		||||
	: ${dumpkeys_charset:=${DUMPKEYS_CHARSET}}
 | 
			
		||||
 | 
			
		||||
	if [ -z "$keymap" ]; then
 | 
			
		||||
		eerror "You need to setup keymap in /etc/conf.d/keymaps first"
 | 
			
		||||
		return 1
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	local ttydev=/dev/tty n=
 | 
			
		||||
	[ -d /dev/vc ] && ttydev=/dev/vc/
 | 
			
		||||
 | 
			
		||||
	# Force linux keycodes for PPC.
 | 
			
		||||
	if [ -f /proc/sys/dev/mac_hid/keyboard_sends_linux_keycodes ]; then
 | 
			
		||||
		echo 1 > /proc/sys/dev/mac_hid/keyboard_sends_linux_keycodes
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	local wkeys= kmode="-a" msg="ASCII"
 | 
			
		||||
	if yesno $unicode; then
 | 
			
		||||
		kmode="-u"
 | 
			
		||||
		msg="UTF-8"
 | 
			
		||||
	fi
 | 
			
		||||
	yesno $windowkeys && wkeys="windowkeys"
 | 
			
		||||
 | 
			
		||||
	# Set terminal encoding to either ASCII or UNICODE.
 | 
			
		||||
	# See utf-8(7) for more information.
 | 
			
		||||
	ebegin "Setting keyboard mode [$msg]"
 | 
			
		||||
	n=1
 | 
			
		||||
	while [ $n -le $ttyn ]; do
 | 
			
		||||
		kbd_mode $kmode -C $ttydev$n
 | 
			
		||||
		: $(( n += 1 ))
 | 
			
		||||
	done
 | 
			
		||||
	eend 0
 | 
			
		||||
 | 
			
		||||
	ebegin "Loading key mappings [$keymap]"
 | 
			
		||||
	loadkeys -q $wkeys $keymap $extended_keymaps
 | 
			
		||||
	eend $? "Error loading key mappings" || return $?
 | 
			
		||||
 | 
			
		||||
	if yesno $fix_euro; then
 | 
			
		||||
		ebegin "Fixing font for euro symbol"
 | 
			
		||||
		# Fix some fonts displaying the Euro, #173528.
 | 
			
		||||
		echo "altgr keycode 18 = U+20AC" | loadkeys -q -
 | 
			
		||||
		eend $?
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	# Save the keymapping for use immediately at boot
 | 
			
		||||
	if checkpath -W "$RC_LIBEXECDIR"; then
 | 
			
		||||
		mkdir -p "$RC_LIBEXECDIR"/console
 | 
			
		||||
		dumpkeys >"$RC_LIBEXECDIR"/console/keymap
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
@@ -1,22 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Kill all processes so we can unmount disks cleanly."
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	keyword -prefix
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Terminating remaining processes"
 | 
			
		||||
	killall5 -15 ${killall5_opts}
 | 
			
		||||
	sleep 1
 | 
			
		||||
	eend 0
 | 
			
		||||
	ebegin "Killing remaining processes"
 | 
			
		||||
	killall5 -9 ${killall5_opts}
 | 
			
		||||
	sleep 1
 | 
			
		||||
	eend 0
 | 
			
		||||
}
 | 
			
		||||
@@ -1,84 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Executes user programs in @SYSCONFDIR@/local.d"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	after *
 | 
			
		||||
	keyword -timeout
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Starting local"
 | 
			
		||||
 | 
			
		||||
	local file has_errors=0 retval
 | 
			
		||||
	eindent
 | 
			
		||||
	for file in @SYSCONFDIR@/local.d/*.start; do
 | 
			
		||||
		if [ -x "${file}" ]; then
 | 
			
		||||
			vebegin "Executing \"${file}\""
 | 
			
		||||
			"${file}" 2>&1 >/dev/null
 | 
			
		||||
			retval=$?
 | 
			
		||||
			if [ ${retval} -ne 0 ]; then
 | 
			
		||||
				has_errors=1
 | 
			
		||||
			fi
 | 
			
		||||
			veend ${retval} "Execution of \"${file}\" failed."
 | 
			
		||||
		fi
 | 
			
		||||
	done
 | 
			
		||||
	eoutdent
 | 
			
		||||
 | 
			
		||||
	if command -v local_start >/dev/null 2>&1; then
 | 
			
		||||
		ewarn "\"@SYSCONFDIR@/conf.d/local\" should be removed."
 | 
			
		||||
		ewarn "Please move the code from the local_start function"
 | 
			
		||||
		ewarn "to executable scripts with an .start extension"
 | 
			
		||||
		ewarn "in \"@SYSCONFDIR@/local.d\""
 | 
			
		||||
		local_start
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	eend ${has_errors}
 | 
			
		||||
 | 
			
		||||
	# We have to end with a zero exit code, because a failed execution
 | 
			
		||||
	# of an executable @SYSCONFDIR@/local.d/*.start file shouldn't result in
 | 
			
		||||
	# marking the local service as failed. Otherwise we are unable to
 | 
			
		||||
	# execute any executable @SYSCONFDIR@/local.d/*.stop file, because a failed
 | 
			
		||||
	# marked service cannot be stopped (and the stop function would
 | 
			
		||||
	# actually call the executable @SYSCONFDIR@/local.d/*.stop file(s)).
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Stopping local"
 | 
			
		||||
 | 
			
		||||
	local file has_errors=0 retval
 | 
			
		||||
	eindent
 | 
			
		||||
	for file in @SYSCONFDIR@/local.d/*.stop; do
 | 
			
		||||
		if [ -x "${file}" ]; then
 | 
			
		||||
			vebegin "Executing \"${file}\""
 | 
			
		||||
			"${file}" 2>&1 >/dev/null
 | 
			
		||||
			retval=$?
 | 
			
		||||
			if [ ${retval} -ne 0 ]; then
 | 
			
		||||
				has_errors=1
 | 
			
		||||
			fi
 | 
			
		||||
			veend ${retval} "Execution of \"${file}\" failed."
 | 
			
		||||
		fi
 | 
			
		||||
	done
 | 
			
		||||
	eoutdent
 | 
			
		||||
 | 
			
		||||
	if command -v local_stop >/dev/null 2>&1; then
 | 
			
		||||
		ewarn "\"@SYSCONFDIR@/conf.d/local\" should be removed."
 | 
			
		||||
		ewarn "Please move the code from the local_stop function"
 | 
			
		||||
		ewarn "to executable scripts with an .stop extension"
 | 
			
		||||
		ewarn "in \"@SYSCONFDIR@/local.d\""
 | 
			
		||||
		local_stop
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	eend ${has_errors}
 | 
			
		||||
 | 
			
		||||
	# An executable @SYSCONFDIR@/local.d/*.stop file which failed with a
 | 
			
		||||
	# non-zero exit status is not a reason to mark this service
 | 
			
		||||
	# as failed, therefore we have to end with a zero exit code.
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
@@ -1,112 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Mounts disks and swap according to /etc/fstab."
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need fsck
 | 
			
		||||
	use lvm modules mtab
 | 
			
		||||
	after lvm modules
 | 
			
		||||
	keyword -jail -prefix -vserver -lxc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	# Mount local filesystems in /etc/fstab.
 | 
			
		||||
	local types="noproc" x= no_netdev=
 | 
			
		||||
	for x in $net_fs_list $extra_net_fs_list; do
 | 
			
		||||
		types="${types},no${x}"
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
		no_netdev="-O no_netdev"
 | 
			
		||||
		if mountinfo -q /usr; then
 | 
			
		||||
			touch "$RC_SVCDIR"/usr_premounted
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
	ebegin "Mounting local filesystems"
 | 
			
		||||
	mount -at "$types" $no_netdev
 | 
			
		||||
	eend $? "Some local filesystem failed to mount"
 | 
			
		||||
 | 
			
		||||
	# Always return 0 - some local mounts may not be critical for boot
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	yesno $RC_GOINGDOWN || return 0
 | 
			
		||||
	# We never unmount / or /dev or $RC_SVCDIR
 | 
			
		||||
 | 
			
		||||
	# Bug 381783
 | 
			
		||||
	local rc_svcdir=$(printf '%s\n' "$RC_SVCDIR" | sed 's:/lib\(32\|64\)\?/:/lib(32|64)?/:g')
 | 
			
		||||
 | 
			
		||||
	local x= no_umounts_r="/|/dev|/dev/.*|${rc_svcdir}"
 | 
			
		||||
	no_umounts_r="${no_umounts_r}|/bin|/sbin|/lib(32|64)?|/libexec"
 | 
			
		||||
	# RC_NO_UMOUNTS is an env var that can be set by plugins
 | 
			
		||||
	local IFS="$IFS:"
 | 
			
		||||
	for x in $no_umounts $RC_NO_UMOUNTS; do
 | 
			
		||||
		no_umounts_r="$no_umounts_r|$x"
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
		no_umounts_r="$no_umounts_r|/proc|/proc/.*|/run|/sys|/sys/.*"
 | 
			
		||||
		if [ -e "$rc_svcdir"/usr_premounted ]; then
 | 
			
		||||
			no_umounts_r="$no_umounts_r|/usr"
 | 
			
		||||
		fi
 | 
			
		||||
	fi
 | 
			
		||||
	no_umounts_r="^($no_umounts_r)$"
 | 
			
		||||
 | 
			
		||||
	# Flush all pending disk writes now
 | 
			
		||||
	sync
 | 
			
		||||
 | 
			
		||||
	. "$RC_LIBEXECDIR"/sh/rc-mount.sh
 | 
			
		||||
 | 
			
		||||
	if [ "$RC_UNAME" = Linux ] && [ -d /sys/fs/aufs ] ; then
 | 
			
		||||
		#if / is aufs we remount it noxino during shutdown
 | 
			
		||||
		if mountinfo -q -f '^aufs$' / ; then
 | 
			
		||||
			mount -o remount,noxino,rw /
 | 
			
		||||
			sync
 | 
			
		||||
		fi
 | 
			
		||||
 | 
			
		||||
		local aufs_branch aufs_mount_dir aufs_mount_point aufs_si_dir aufs_si_id
 | 
			
		||||
		for aufs_si_dir in /sys/fs/aufs/*; do
 | 
			
		||||
			aufs_mount_dir=${aufs_si_dir#/sys/fs/aufs/}
 | 
			
		||||
			aufs_si_id="$(printf "%s" $aufs_mount_dir | sed 's/_/=/g')"
 | 
			
		||||
			aufs_mount_point="$(mountinfo -o ${aufs_si_id})"
 | 
			
		||||
			for x in $aufs_si_dir/br[0-9][0-9][0-9]; do
 | 
			
		||||
				aufs_branch=$(sed 's/=.*//g' $x)
 | 
			
		||||
				eindent
 | 
			
		||||
				if ! mount -o "remount,del:$aufs_branch" "$aufs_mount_point" > /dev/null 2>&1; then
 | 
			
		||||
					ewarn "Failed to remove branch $aufs_branch from aufs \
 | 
			
		||||
						$aufs_mount_point"
 | 
			
		||||
				fi
 | 
			
		||||
				eoutdent
 | 
			
		||||
				sync
 | 
			
		||||
			done
 | 
			
		||||
		done
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	# Umount loop devices
 | 
			
		||||
	einfo "Unmounting loop devices"
 | 
			
		||||
	eindent
 | 
			
		||||
	do_unmount "umount -d" --skip-point-regex "$no_umounts_r" \
 | 
			
		||||
		--node-regex "^/dev/loop"
 | 
			
		||||
	eoutdent
 | 
			
		||||
 | 
			
		||||
	# Now everything else, except network filesystems as the
 | 
			
		||||
	# network should be down by this point.
 | 
			
		||||
	einfo "Unmounting filesystems"
 | 
			
		||||
	eindent
 | 
			
		||||
	local fs=
 | 
			
		||||
	for x in $net_fs_list $extra_net_fs_list; do
 | 
			
		||||
		fs="$fs${fs:+|}$x"
 | 
			
		||||
	done
 | 
			
		||||
	[ -n "$fs" ] && fs="^($fs)$"
 | 
			
		||||
	do_unmount umount --skip-point-regex "$no_umounts_r" \
 | 
			
		||||
		"${fs:+--skip-fstype-regex}" $fs --nonetdev
 | 
			
		||||
	eoutdent
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
@@ -1,35 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2013 William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Configures the loopback interface."
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	keyword -jail -prefix -vserver
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
		ebegin "Bringing up network interface lo"
 | 
			
		||||
		if command -v ip > /dev/null 2>&1; then
 | 
			
		||||
			ip addr add 127.0.0.1/8 dev lo brd + scope host
 | 
			
		||||
			ip route add 127.0.0.0/8 dev lo scope host
 | 
			
		||||
			ip link set lo up
 | 
			
		||||
		else
 | 
			
		||||
			ifconfig lo 127.0.0.1 netmask 255.0.0.0
 | 
			
		||||
			route add -net 127.0.0.0 netmask 255.0.0.0 gw 127.0.0.1
 | 
			
		||||
		fi
 | 
			
		||||
	else
 | 
			
		||||
		ebegin "Bringing up network interface lo0"
 | 
			
		||||
		ifconfig lo0 127.0.0.1 netmask 255.0.0.0
 | 
			
		||||
		route -q add -inet 127.0.0.0 -netmask 255.0.0.0 127.0.0.1
 | 
			
		||||
	fi
 | 
			
		||||
	eend $?
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
@@ -1,47 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
extra_commands="restore"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need localmount
 | 
			
		||||
	keyword -jail -prefix
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
restore()
 | 
			
		||||
{
 | 
			
		||||
	local mixer= retval=0
 | 
			
		||||
	ebegin "Restoring mixer settings"
 | 
			
		||||
	eindent
 | 
			
		||||
	for mixer in /dev/mixer*; do
 | 
			
		||||
		if [ -r "/var/db/${mixer#/dev/}-state" ]; then
 | 
			
		||||
			vebegin "$mixer"
 | 
			
		||||
			mixer -f "$mixer" \
 | 
			
		||||
			$(cat "/var/db/${mixer#/dev/}-state") >/dev/null
 | 
			
		||||
			veend $?
 | 
			
		||||
			: $(( retval += $? ))
 | 
			
		||||
		fi
 | 
			
		||||
	done
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	restore
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	local mixer= retval=0
 | 
			
		||||
	ebegin "Saving mixer settings"
 | 
			
		||||
	eindent
 | 
			
		||||
	for mixer in /dev/mixer*; do
 | 
			
		||||
		vebegin "$mixer"
 | 
			
		||||
		mixer -f "$mixer" -s >/var/db/"${mixer#/dev/}"-state
 | 
			
		||||
		veend $?
 | 
			
		||||
		: $(( retval += $? ))
 | 
			
		||||
	done
 | 
			
		||||
	eoutdent
 | 
			
		||||
	eend $retval
 | 
			
		||||
}
 | 
			
		||||
@@ -1,63 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Loads a user defined list of kernel modules."
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	use isapnp
 | 
			
		||||
	keyword -openvz -prefix -vserver -lxc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	# Should not fail if kernel do not have module
 | 
			
		||||
	# support compiled in ...
 | 
			
		||||
	[ ! -f /proc/modules ] && return 0
 | 
			
		||||
 | 
			
		||||
	local KV x y kv_variant_list
 | 
			
		||||
	KV=$(uname -r)
 | 
			
		||||
	# full $KV
 | 
			
		||||
	kv_variant_list="${KV}"
 | 
			
		||||
	# remove any KV_EXTRA options to just get the full version
 | 
			
		||||
	x=${KV%%-*}
 | 
			
		||||
	# now slowly strip them
 | 
			
		||||
	while [ -n "$x" ] && [ "$x" != "$y" ]; do
 | 
			
		||||
		kv_variant_list="${kv_variant_list} $x"
 | 
			
		||||
		y=$x
 | 
			
		||||
		x=${x%.*}
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	local list= x= xx= y= args= mpargs= cnt=0 a=
 | 
			
		||||
	for x in $kv_variant_list ; do
 | 
			
		||||
		eval list=\$modules_$(shell_var "$x")
 | 
			
		||||
		[ -n "$list" ] && break
 | 
			
		||||
	done
 | 
			
		||||
	[ -z "$list" ] && list=$modules
 | 
			
		||||
 | 
			
		||||
	for x in $list; do
 | 
			
		||||
		a=${x#*:}
 | 
			
		||||
		if [ "$a" = "$x" ]; then
 | 
			
		||||
			unset mpargs
 | 
			
		||||
			ebegin "Loading module $x"
 | 
			
		||||
		else
 | 
			
		||||
			x=${x%%:*}
 | 
			
		||||
			mpargs="-o $a"
 | 
			
		||||
			ebegin "Loading module $x as $a"
 | 
			
		||||
		fi
 | 
			
		||||
		aa=$(shell_var "$a")
 | 
			
		||||
		xx=$(shell_var "$x")
 | 
			
		||||
		for y in $kv_variant_list ; do
 | 
			
		||||
			eval args=\$module_${aa}_args_$(shell_var "$y")
 | 
			
		||||
			[ -n "${args}" ] && break
 | 
			
		||||
			eval args=\$module_${xx}_args_$(shell_var "$y")
 | 
			
		||||
			[ -n "${args}" ] && break
 | 
			
		||||
		done
 | 
			
		||||
		[ -z "$args" ] && eval args=\$module_${aa}_args
 | 
			
		||||
		[ -z "$args" ] && eval args=\$module_${xx}_args
 | 
			
		||||
		eval modprobe -q "$mpargs" "$x" "$args"
 | 
			
		||||
		eend $? "Failed to load $x" && : $(( cnt += 1 ))
 | 
			
		||||
	done
 | 
			
		||||
	einfo "Autoloaded $cnt module(s)"
 | 
			
		||||
}
 | 
			
		||||
@@ -1,49 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Re-mount filesytems read-only for a clean reboot."
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need killprocs savecache
 | 
			
		||||
	keyword -openvz -prefix -vserver -lxc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	local ret=0
 | 
			
		||||
 | 
			
		||||
	# Flush all pending disk writes now
 | 
			
		||||
	sync
 | 
			
		||||
 | 
			
		||||
	ebegin "Remounting remaining filesystems read-only"
 | 
			
		||||
	# We need the do_unmount function
 | 
			
		||||
	. "$RC_LIBEXECDIR"/sh/rc-mount.sh
 | 
			
		||||
	eindent
 | 
			
		||||
 | 
			
		||||
	# Bug 381783
 | 
			
		||||
	local rc_svcdir=$(echo $RC_SVCDIR | sed 's:/lib\(32\|64\)\?/:/lib(32|64)?/:g')
 | 
			
		||||
 | 
			
		||||
	local m="/dev|/dev/.*|/proc|/proc.*|/sys|/sys/.*|/run|${rc_svcdir}" x= fs=
 | 
			
		||||
	m="$m|/bin|/sbin|/lib(32|64)?|/libexec"
 | 
			
		||||
	# RC_NO_UMOUNTS is an env var that can be set by plugins
 | 
			
		||||
	local IFS="$IFS:"
 | 
			
		||||
	for x in $no_umounts $RC_NO_UMOUNTS; do
 | 
			
		||||
		m="$m|$x"
 | 
			
		||||
	done
 | 
			
		||||
	m="^($m)$"
 | 
			
		||||
	fs=
 | 
			
		||||
	for x in $net_fs_list $extra_net_fs_list; do
 | 
			
		||||
		fs="$fs${fs:+|}$x"
 | 
			
		||||
	done
 | 
			
		||||
	[ -n "$fs" ] && fs="^($fs)$"
 | 
			
		||||
	do_unmount "umount -r" \
 | 
			
		||||
		--skip-point-regex "$m" \
 | 
			
		||||
		"${fs:+--skip-fstype-regex}" $fs --nonetdev
 | 
			
		||||
	ret=$?
 | 
			
		||||
 | 
			
		||||
	eoutdent
 | 
			
		||||
 | 
			
		||||
	eend $ret
 | 
			
		||||
}
 | 
			
		||||
@@ -1,62 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
mouse=${RC_SVCNAME##*.}
 | 
			
		||||
if [ -n "$mouse" -a "$mouse" != "moused" ]; then
 | 
			
		||||
	moused_device=/dev/"$mouse"
 | 
			
		||||
	pidfile=/var/run/moused-"$mouse".pid
 | 
			
		||||
else
 | 
			
		||||
	pidfile=/var/run/moused.pid
 | 
			
		||||
fi
 | 
			
		||||
name="Console Mouse Daemon"
 | 
			
		||||
[ -n "$moused_device" ] && name="$name ($moused_device)"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need localmount
 | 
			
		||||
	after bootmisc
 | 
			
		||||
	keyword -jail -prefix
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Starting $name"
 | 
			
		||||
 | 
			
		||||
	if [ -z "$moused_device" ]; then
 | 
			
		||||
		local dev=
 | 
			
		||||
		for dev in /dev/psm[0-9]* /dev/ums[0-9]*; do
 | 
			
		||||
			[ -c "$dev" ] || continue
 | 
			
		||||
			[ -e /var/run/moused-"${dev##*/}".pid ] && continue
 | 
			
		||||
			moused_device=$dev
 | 
			
		||||
			eindent
 | 
			
		||||
			einfo "Using mouse on $moused_device"
 | 
			
		||||
			eoutdent
 | 
			
		||||
			break
 | 
			
		||||
		done
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	if [ -z "$moused_device" ]; then
 | 
			
		||||
		eend 1 "No mouse device found"
 | 
			
		||||
		return 1
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	local args=
 | 
			
		||||
	eval args=\$moused_args_${moused_device##*/}
 | 
			
		||||
	[ -z "$args" ] && args=$moused_args
 | 
			
		||||
 | 
			
		||||
	start-stop-daemon --start --exec /usr/sbin/moused \
 | 
			
		||||
		--pidfile "$pidfile" \
 | 
			
		||||
		-- $args -p "$moused_device" -I "$pidfile"
 | 
			
		||||
	local retval=$?
 | 
			
		||||
 | 
			
		||||
	if [ $retval = 0 ]; then
 | 
			
		||||
		local ttyv=
 | 
			
		||||
		for ttyv in /dev/ttyv*; do
 | 
			
		||||
			vidcontrol < "$ttyv" -m on
 | 
			
		||||
			: $(( retval += $? ))
 | 
			
		||||
		done
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	eend $retval "Failed to start moused"
 | 
			
		||||
}
 | 
			
		||||
@@ -1,39 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Update /etc/mtab to match what the kernel knows about"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need root
 | 
			
		||||
	keyword -prefix
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	if [ -L /etc/mtab ]; then
 | 
			
		||||
		return 0
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	ebegin "Updating /etc/mtab"
 | 
			
		||||
	vewarn "The support for updating /etc/mtab as a file is"
 | 
			
		||||
	vewarn "deprecated and will be removed in the future."
 | 
			
		||||
	vewarn "Please run the following command as root on your system."
 | 
			
		||||
	vewarn
 | 
			
		||||
	vewarn "ln -snf /proc/self/mounts /etc/mtab"
 | 
			
		||||
	if ! echo 2>/dev/null >/etc/mtab; then
 | 
			
		||||
		ewend 1 "/etc/mtab is not updateable"
 | 
			
		||||
		return 0
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	# With / as tmpfs we cannot umount -at tmpfs in localmount as that
 | 
			
		||||
	# makes / readonly and dismounts all tmpfs even if in use which is
 | 
			
		||||
	# not good. Luckily, umount uses /etc/mtab instead of /proc/mounts
 | 
			
		||||
	# which allows this hack to work.
 | 
			
		||||
	grep -v "^[! ]* / tmpfs " /proc/mounts > /etc/mtab
 | 
			
		||||
 | 
			
		||||
	# Remove stale backups
 | 
			
		||||
	rm -f /etc/mtab~ /etc/mtab~~
 | 
			
		||||
	eend 0
 | 
			
		||||
}
 | 
			
		||||
@@ -1,62 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
description="Mounts network shares according to /etc/fstab."
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	config /etc/fstab
 | 
			
		||||
	use afc-client amd autofs openvpn
 | 
			
		||||
	use dns
 | 
			
		||||
	keyword -jail -prefix -vserver -lxc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	local x= fs= rc=
 | 
			
		||||
	for x in $net_fs_list $extra_net_fs_list; do
 | 
			
		||||
		fs="$fs${fs:+,}$x"
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	ebegin "Mounting network filesystems"
 | 
			
		||||
	mount -at $fs
 | 
			
		||||
	rc=$?
 | 
			
		||||
	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
		mount -a -O _netdev
 | 
			
		||||
		rc=$?
 | 
			
		||||
	fi
 | 
			
		||||
	ewend $rc "Could not mount all network filesystems"
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	local x= fs=
 | 
			
		||||
 | 
			
		||||
	ebegin "Unmounting network filesystems"
 | 
			
		||||
	. "$RC_LIBEXECDIR"/sh/rc-mount.sh
 | 
			
		||||
 | 
			
		||||
	for x in $net_fs_list $extra_net_fs_list; do
 | 
			
		||||
		fs="$fs${fs:+,}$x"
 | 
			
		||||
	done
 | 
			
		||||
	if [ -n "$fs" ]; then
 | 
			
		||||
		umount -at $fs || eerror "Failed to simply unmount filesystems"
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	eindent
 | 
			
		||||
	fs=
 | 
			
		||||
	for x in $net_fs_list $extra_net_fs_list; do
 | 
			
		||||
		fs="$fs${fs:+|}$x"
 | 
			
		||||
	done
 | 
			
		||||
	[ -n "$fs" ] && fs="^($fs)$"
 | 
			
		||||
	do_unmount umount ${fs:+--fstype-regex} $fs --netdev
 | 
			
		||||
	retval=$?
 | 
			
		||||
 | 
			
		||||
	eoutdent
 | 
			
		||||
	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
		umount -a -O _netdev
 | 
			
		||||
		retval=$?
 | 
			
		||||
	fi
 | 
			
		||||
	eend $retval "Failed to unmount network filesystems"
 | 
			
		||||
}
 | 
			
		||||
@@ -1,353 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
# This script was inspired by the equivalent rc.d network from NetBSD.
 | 
			
		||||
 | 
			
		||||
description="Configures network interfaces."
 | 
			
		||||
__nl="
 | 
			
		||||
"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need localmount
 | 
			
		||||
	after bootmisc
 | 
			
		||||
	if [ -n "$(interfaces)" ]; then
 | 
			
		||||
		provide net
 | 
			
		||||
	fi
 | 
			
		||||
	keyword -jail -prefix -vserver
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
uniqify()
 | 
			
		||||
{
 | 
			
		||||
	local result= i=
 | 
			
		||||
	for i; do
 | 
			
		||||
		case " $result " in
 | 
			
		||||
		*" $i "*);;
 | 
			
		||||
		*) result="$result $i";;
 | 
			
		||||
		esac
 | 
			
		||||
	done
 | 
			
		||||
	echo "${result# *}"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
reverse()
 | 
			
		||||
{
 | 
			
		||||
	local result= i=
 | 
			
		||||
	for i; do
 | 
			
		||||
		result="$i $result"
 | 
			
		||||
	done
 | 
			
		||||
	echo "${result# *}"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
sys_interfaces()
 | 
			
		||||
{
 | 
			
		||||
	case "$RC_UNAME" in
 | 
			
		||||
	Linux)
 | 
			
		||||
		local w= rest= i= cmd=$1
 | 
			
		||||
		while read w rest; do
 | 
			
		||||
			i=${w%%:*}
 | 
			
		||||
			case "$i" in
 | 
			
		||||
				"$w") continue ;;
 | 
			
		||||
				lo|lo0) continue ;;
 | 
			
		||||
				*) ;;
 | 
			
		||||
			esac
 | 
			
		||||
			if [ "$cmd" = u ]; then
 | 
			
		||||
				ifconfig "$i" | grep -q "[ ]*UP" || continue
 | 
			
		||||
			fi
 | 
			
		||||
			printf "%s " "$i"
 | 
			
		||||
		done </proc/net/dev
 | 
			
		||||
		;;
 | 
			
		||||
	*)
 | 
			
		||||
		ifconfig -l$1
 | 
			
		||||
		;;
 | 
			
		||||
	esac
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
tentative()
 | 
			
		||||
{
 | 
			
		||||
	local inet= address= rest=
 | 
			
		||||
 | 
			
		||||
	case "$RC_UNAME" in
 | 
			
		||||
	Linux)
 | 
			
		||||
		[ -x /sbin/ip ] || [ -x /bin/ip ] || return 1
 | 
			
		||||
		[ -n "$(ip -f inet6 addr show tentative)" ]
 | 
			
		||||
		;;
 | 
			
		||||
	*)
 | 
			
		||||
		local inet= address= rest=
 | 
			
		||||
		LC_ALL=C ifconfig -a | while read inet address rest; do
 | 
			
		||||
	 		case "${inet}" in
 | 
			
		||||
			inet6)
 | 
			
		||||
				case "${rest}" in
 | 
			
		||||
				*" "tentative*) return 2;;
 | 
			
		||||
				esac
 | 
			
		||||
				;;
 | 
			
		||||
			esac
 | 
			
		||||
		done
 | 
			
		||||
		[ $? = 2 ]
 | 
			
		||||
		;;
 | 
			
		||||
	esac
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
auto_interfaces()
 | 
			
		||||
{
 | 
			
		||||
	local ifs= c= f=
 | 
			
		||||
 | 
			
		||||
	case "$RC_UNAME" in
 | 
			
		||||
	NetBSD)
 | 
			
		||||
		for c in $(ifconfig -C 2>/dev/null); do
 | 
			
		||||
			for f in /etc/ifconfig.${c}[0-9]*; do
 | 
			
		||||
				[ -f "$f" ] && printf "%s" "$f{##*.} "
 | 
			
		||||
			done
 | 
			
		||||
		done
 | 
			
		||||
		;;
 | 
			
		||||
	*)
 | 
			
		||||
		for f in /etc/ifconfig.*; do
 | 
			
		||||
			[ -f "$f" ] && printf "%s" "${f##*.} "
 | 
			
		||||
		done
 | 
			
		||||
		for f in /etc/ip.*; do
 | 
			
		||||
			[ -f "$f" ] && printf "%s" "${f##*.} "
 | 
			
		||||
		done
 | 
			
		||||
		;;
 | 
			
		||||
	esac
 | 
			
		||||
	echo
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
interfaces()
 | 
			
		||||
{
 | 
			
		||||
	uniqify $(sys_interfaces "$@") $interfaces $(auto_interfaces)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dumpargs()
 | 
			
		||||
{
 | 
			
		||||
	local f="$1"
 | 
			
		||||
 | 
			
		||||
	shift
 | 
			
		||||
	case "$@" in
 | 
			
		||||
	'')		[ -f "$f" ] && cat "$f";;
 | 
			
		||||
	*"$__nl"*)	echo "$@";;
 | 
			
		||||
	*)
 | 
			
		||||
		(
 | 
			
		||||
		 	set -o noglob
 | 
			
		||||
			IFS=';'; set -- $@
 | 
			
		||||
			IFS="$__nl"; echo "$*"
 | 
			
		||||
		);;
 | 
			
		||||
	esac
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
intup=false
 | 
			
		||||
runip()
 | 
			
		||||
{
 | 
			
		||||
	local int="$1" err=
 | 
			
		||||
	shift
 | 
			
		||||
 | 
			
		||||
	# Ensure we have a valid broadcast address
 | 
			
		||||
	case "$@" in
 | 
			
		||||
	*" broadcast "*|*" brd "*) ;;
 | 
			
		||||
	*:*) ;; # Ignore IPv6
 | 
			
		||||
	*) set -- "$@" brd +;;
 | 
			
		||||
	esac
 | 
			
		||||
 | 
			
		||||
	err=$(LC_ALL=C ip address add "$@" dev "$int" 2>&1)
 | 
			
		||||
	if [ -z "$err" ]; then
 | 
			
		||||
		# ip does not bring up the interface when adding addresses
 | 
			
		||||
		if ! $intup; then
 | 
			
		||||
			ip link set "$int" up
 | 
			
		||||
			intup=true
 | 
			
		||||
		fi
 | 
			
		||||
		return 0
 | 
			
		||||
	fi
 | 
			
		||||
	if [ "$err" = "RTNETLINK answers: File exists" ]; then
 | 
			
		||||
		ip address del "$@" dev "$int" 2>/dev/null
 | 
			
		||||
	fi
 | 
			
		||||
	# Localise the error
 | 
			
		||||
	ip address add "$@" dev "$int"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
routeflush()
 | 
			
		||||
{
 | 
			
		||||
	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
		if [ -x /sbin/ip ] || [ -x /bin/ip ]; then
 | 
			
		||||
			ip route flush scope global
 | 
			
		||||
			ip route delete default 2>/dev/null
 | 
			
		||||
		else
 | 
			
		||||
			# Sadly we also delete some link routes, but
 | 
			
		||||
			# this cannot be helped
 | 
			
		||||
			local dest= gate= net= flags= rest=
 | 
			
		||||
			route -n | while read dest gate net flags rest; do
 | 
			
		||||
				[ -z "$net" ] && continue
 | 
			
		||||
				case "$dest" in
 | 
			
		||||
				[0-9]*)	;;
 | 
			
		||||
				*)	continue;;
 | 
			
		||||
				esac
 | 
			
		||||
				local xtra= netmask="netmask $net"
 | 
			
		||||
				case "$flags" in
 | 
			
		||||
				U)	continue;;
 | 
			
		||||
				*H*)	flags=-host; netmask=;;
 | 
			
		||||
				*!*)	flags=-net; xtra=reject;;
 | 
			
		||||
				*)	flags=-net;;
 | 
			
		||||
				esac
 | 
			
		||||
				route del $flags $dest $netmask $xtra
 | 
			
		||||
			done
 | 
			
		||||
			# Erase any default dev eth0 routes
 | 
			
		||||
			route del default 2>/dev/null
 | 
			
		||||
		fi
 | 
			
		||||
	else
 | 
			
		||||
		route -qn flush
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
runargs()
 | 
			
		||||
{
 | 
			
		||||
	dumpargs "$@" | while read -r args; do
 | 
			
		||||
		case "$args" in
 | 
			
		||||
		''|"#"*)	;;
 | 
			
		||||
		*)
 | 
			
		||||
				(
 | 
			
		||||
				 	eval vebegin "${args#*!}"
 | 
			
		||||
					eval "${args#*!}"
 | 
			
		||||
					veend $?
 | 
			
		||||
				);;
 | 
			
		||||
		esac
 | 
			
		||||
	done
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	local cr=0 r= int= intv= cmd= args= upcmd=
 | 
			
		||||
 | 
			
		||||
	if [ -z "$domainname" -a -s /etc/defaultdomain ]; then
 | 
			
		||||
		domainname=$(cat /etc/defaultdomain)
 | 
			
		||||
	fi
 | 
			
		||||
	if [ -n "$domainname" ]; then
 | 
			
		||||
		ebegin "Setting NIS domainname: $domainname"
 | 
			
		||||
		domainname "$domainname"
 | 
			
		||||
		eend $?
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	einfo "Starting network"
 | 
			
		||||
	routeflush
 | 
			
		||||
	eindent
 | 
			
		||||
	for int in $(interfaces); do
 | 
			
		||||
		local func= cf=
 | 
			
		||||
		intv=$(shell_var "$int")
 | 
			
		||||
		eval upcmd=\$ifup_$intv
 | 
			
		||||
		for func in ip ifconfig; do
 | 
			
		||||
			eval cmd=\$${func}_$intv
 | 
			
		||||
			if [ -n "$cmd" -o -f /etc/"$func.$int" ]; then
 | 
			
		||||
				cf=/etc/"$func.$int"
 | 
			
		||||
				break
 | 
			
		||||
			fi
 | 
			
		||||
		done
 | 
			
		||||
		[ -n "$cf" -o -n "$upcmd" -o \
 | 
			
		||||
			-f /etc/ifup."$int" -o -f "$cf" ] || continue
 | 
			
		||||
		veinfo "$int"
 | 
			
		||||
		case "$func" in
 | 
			
		||||
		ip)	func=runip; intup=false;;
 | 
			
		||||
		esac
 | 
			
		||||
		eindent
 | 
			
		||||
		runargs /etc/ifup."$int" "$upcmd"
 | 
			
		||||
		r=0
 | 
			
		||||
		dumpargs "$cf" "$cmd" | while read -r args; do
 | 
			
		||||
			case "$args" in
 | 
			
		||||
			''|"#"*)	;;
 | 
			
		||||
			"!"*)
 | 
			
		||||
					(
 | 
			
		||||
					 	eval vebegin "${args#*!}"
 | 
			
		||||
						eval "${args#*!}"
 | 
			
		||||
						veend $?
 | 
			
		||||
					);;
 | 
			
		||||
			*)
 | 
			
		||||
					(
 | 
			
		||||
					 	set -o noglob
 | 
			
		||||
						eval set -- "$args"
 | 
			
		||||
						vebegin "$@"
 | 
			
		||||
						$func "$int" "$@"
 | 
			
		||||
						veend $?
 | 
			
		||||
					);;
 | 
			
		||||
			esac
 | 
			
		||||
		done
 | 
			
		||||
		eoutdent
 | 
			
		||||
	done
 | 
			
		||||
	eoutdent
 | 
			
		||||
	eend $cr
 | 
			
		||||
 | 
			
		||||
	# Wait for any inet6 tentative addresses
 | 
			
		||||
	r=5
 | 
			
		||||
	while [ $r -gt 0 ]; do
 | 
			
		||||
		tentative || break
 | 
			
		||||
		[ $r = 5 ] && vebegin "Waiting for tentative addresses"
 | 
			
		||||
		sleep 1
 | 
			
		||||
		: $(( r -= 1 ))
 | 
			
		||||
	done
 | 
			
		||||
	if [ $r != 5 ]; then
 | 
			
		||||
		[ $r != 0 ]
 | 
			
		||||
		veend $?
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	if [ -n "$defaultroute" ]; then
 | 
			
		||||
		ebegin "Setting default route $defaultroute"
 | 
			
		||||
		route add default $defaultroute
 | 
			
		||||
		eend $?
 | 
			
		||||
	elif [ -n "$defaultiproute" ]; then
 | 
			
		||||
		ebegin "Setting default route $defaultiproute"
 | 
			
		||||
		ip route add default $defaultiproute
 | 
			
		||||
		eend $?
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	if [ -n "$defaultroute6" ]; then
 | 
			
		||||
		ebegin "Setting default route $defaultroute6"
 | 
			
		||||
		if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
			routecmd="route -A inet6 add"
 | 
			
		||||
		else
 | 
			
		||||
			routecmd="route -inet6 add"
 | 
			
		||||
		fi
 | 
			
		||||
		$routecmd default $defaultroute6
 | 
			
		||||
		eend $?
 | 
			
		||||
	elif [ -n "$defaultiproute6" ]; then
 | 
			
		||||
		ebegin "Setting default route $defaultiproute6"
 | 
			
		||||
		ip -f inet6 route add default $defaultiproute6
 | 
			
		||||
		eend $?
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	# Don't stop the network at shutdown.
 | 
			
		||||
 	# We don't use the noshutdown keyword so that we are started again
 | 
			
		||||
	# correctly if we go back to multiuser.
 | 
			
		||||
	yesno ${keep_network:-YES} && yesno $RC_GOINGDOWN && return 0
 | 
			
		||||
 | 
			
		||||
	local int= intv= cmd= downcmd= r=
 | 
			
		||||
	einfo "Stopping network"
 | 
			
		||||
	routeflush
 | 
			
		||||
	eindent
 | 
			
		||||
	for int in $(reverse $(interfaces u)); do
 | 
			
		||||
		case "$int" in
 | 
			
		||||
			lo|lo0) continue ;;
 | 
			
		||||
			*) ;;
 | 
			
		||||
		esac
 | 
			
		||||
		intv=$(shell_var "$int")
 | 
			
		||||
		eval downcmd=\$ifdown_$intv
 | 
			
		||||
		eval cmd=\$ip_$intv
 | 
			
		||||
		[ -z "$cmd" ] && eval cmd=\$ifconfig_$intv
 | 
			
		||||
		if [ -n "$cmd" -o -f /etc/ip."$int" -o \
 | 
			
		||||
			-f /etc/ifconfig."$int" -o \
 | 
			
		||||
			-n "$downcmd" -o -f /etc/ifdown."$int" ];
 | 
			
		||||
		then
 | 
			
		||||
			veinfo "$int"
 | 
			
		||||
			runargs /etc/ifdown."$int" "$downcmd"
 | 
			
		||||
			if [ -x /sbin/ip ] || [ -x /bin/ip ]; then
 | 
			
		||||
				# We need to do this, otherwise we may
 | 
			
		||||
				# fail to add things correctly on restart
 | 
			
		||||
				ip address flush dev "$int" 2>/dev/null
 | 
			
		||||
			fi
 | 
			
		||||
			ifconfig "$int" down 2>/dev/null
 | 
			
		||||
			ifconfig "$int" destroy 2>/dev/null
 | 
			
		||||
		fi
 | 
			
		||||
	done
 | 
			
		||||
	eoutdent
 | 
			
		||||
	eend 0
 | 
			
		||||
}
 | 
			
		||||
@@ -1,18 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
 | 
			
		||||
# Released under the 2-clause BSD license.
 | 
			
		||||
 | 
			
		||||
required_files="/etc/newsyslog.conf"
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	need localmount
 | 
			
		||||
	keyword -prefix
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Creating and/or trimming log files"
 | 
			
		||||
	newsyslog -s $newsyslog_args
 | 
			
		||||
	eend $?
 | 
			
		||||
}
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user