Compare commits
2 Commits
gh-pages
...
openrc-0.9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
02e7df3f92 | ||
|
|
a4ecc0eedc |
16
.gitignore
vendored
Normal file
16
.gitignore
vendored
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
*.bz2
|
||||||
|
|
||||||
|
*.diff
|
||||||
|
*.patch
|
||||||
|
*.orig
|
||||||
|
*.rej
|
||||||
|
|
||||||
|
core
|
||||||
|
.gdb_history
|
||||||
|
.gdbinit
|
||||||
|
|
||||||
|
.depend
|
||||||
|
*.a
|
||||||
|
*.o
|
||||||
|
*.So
|
||||||
|
lib*.so
|
||||||
49
FEATURE-REMOVAL-SCHEDULE
Normal file
49
FEATURE-REMOVAL-SCHEDULE
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
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: oldnet ADSL rp-pppoe mode
|
||||||
|
|
||||||
|
When: undecided
|
||||||
|
|
||||||
|
Why: Replaced by the oldnet PPP module
|
||||||
|
|
||||||
|
Who: Robin H. Johnson <robbat2@gentoo.org>
|
||||||
|
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
What: oldnet /etc/conf.d/wireless
|
||||||
|
|
||||||
|
When: undecided
|
||||||
|
|
||||||
|
Why: All configuration moved to /etc/conf.d/net
|
||||||
|
|
||||||
|
Who: Robin H. Johnson <robbat2@gentoo.org>
|
||||||
|
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
What: Service pause action
|
||||||
|
|
||||||
|
When: Removed already, compatbility warning in place.
|
||||||
|
|
||||||
|
Why: ...
|
||||||
|
|
||||||
|
Who:
|
||||||
|
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
What: Service --startas, --chuid , --oknodo
|
||||||
|
|
||||||
|
When: undecided
|
||||||
|
|
||||||
|
Why: Obsolete or replaced by other options.
|
||||||
|
--startas => use --name or --exec
|
||||||
|
--chuid => use --user
|
||||||
|
--oknodo => ignore return code instead
|
||||||
|
|
||||||
|
Who:
|
||||||
|
|
||||||
|
---------------------------
|
||||||
35
Makefile
Normal file
35
Makefile
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
# 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
|
||||||
|
|
||||||
|
# Build our old net foo or not
|
||||||
|
ifeq (${MKOLDNET},yes)
|
||||||
|
SUBDIR+= net doc
|
||||||
|
endif
|
||||||
|
|
||||||
|
# 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:
|
||||||
|
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
|
||||||
|
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/tmp
|
||||||
|
${ECHO} "${VERSION}${GITVER}" > ${DESTDIR}/${LIBEXECDIR}/version
|
||||||
3
Makefile.inc
Normal file
3
Makefile.inc
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
NAME= openrc
|
||||||
|
VERSION= 0.9.1
|
||||||
|
PKG= ${NAME}-${VERSION}
|
||||||
99
README
Normal file
99
README
Normal file
@@ -0,0 +1,99 @@
|
|||||||
|
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
|
||||||
|
MKPAM=pam
|
||||||
|
MKPKGCONFIG=no
|
||||||
|
MKRCSYS=prefix
|
||||||
|
MKSELINUX=yes
|
||||||
|
MKTERMCAP=ncurses
|
||||||
|
MKTERMCAP=termcap
|
||||||
|
MKOLDNET=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.
|
||||||
|
|
||||||
|
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 /.
|
||||||
|
|
||||||
|
MKRCSYS should be set only if you need to specify a default system
|
||||||
|
subtype. The subtype should be set to match the type of environment the
|
||||||
|
file is installed into, not the virtualization the environment is
|
||||||
|
capable of handling. Here is a list of subtypes and their meanings.
|
||||||
|
|
||||||
|
jail FreeBSD jail
|
||||||
|
lxc Linux container
|
||||||
|
openvz Linux OpenVZ
|
||||||
|
prefix Linux and *BSD prefix system
|
||||||
|
uml UsermodeLinux
|
||||||
|
vserver Linux vserver
|
||||||
|
xen0 Linux and NetBSD xen0 Domain
|
||||||
|
xenU Linux and NetBSD xenU Domain
|
||||||
|
|
||||||
|
If any of the following files exist then we do not overwrite them
|
||||||
|
/etc/devd.conf
|
||||||
|
/etc/rc
|
||||||
|
/etc/rc.shutdown
|
||||||
|
/etc/conf.d/*
|
||||||
|
|
||||||
|
rc and rc.shutdown are the hooks from the BSD init into OpenRC.
|
||||||
|
devd.conf is modified from FreeBSD to call /etc/rc.devd which is a generic
|
||||||
|
hook into OpenRC.
|
||||||
|
inittab is the same, but for SysVInit as used by most Linux distributions.
|
||||||
|
This can be found in the support folder.
|
||||||
|
Obviously, if you're installing this onto a system that does not use OpenRC
|
||||||
|
by default then you may wish to backup the above listed files, remove them
|
||||||
|
and then install so that the OS hooks into OpenRC.
|
||||||
|
|
||||||
|
init.d.misc is not installed by default as the scripts will need
|
||||||
|
tweaking on a per distro basis. They are also non essential to the operation
|
||||||
|
of the system.
|
||||||
|
|
||||||
|
|
||||||
|
Reporting Bugs
|
||||||
|
--------------
|
||||||
|
Since Gentoo Linux is hosting OpenRC development, Bugs should go to
|
||||||
|
the Gentoo Bugzilla:
|
||||||
|
http://bugs.gentoo.org/
|
||||||
|
They should be filed under the "Gentoo Hosted Projects" product and
|
||||||
|
the "openrc" component.
|
||||||
|
|
||||||
|
|
||||||
|
History - by Roy Marples
|
||||||
|
------------------------
|
||||||
|
I became a Gentoo/Linux developer in 2004 and wrote the modular network
|
||||||
|
scripts for the Gentoo baselayout package. baselayout is a collection of
|
||||||
|
bash scripts to bring up your computer and its services.
|
||||||
|
Then towards the end of 2005 I found myself as the primary maintainer
|
||||||
|
for baselayout.
|
||||||
|
|
||||||
|
At the start of 2007, baselayout-2 is announced to the world, re-writing the
|
||||||
|
core of baselayout in C and allowing POSIX sh init scripts instead of
|
||||||
|
forcing the use of bash. By Mid 2007 I have re-written everything, including
|
||||||
|
init scripts, and alpha and pre baselayout-2 snapshots where put into Gentoo.
|
||||||
|
Towards the end of 2007 I retired as a Gentoo developer for reasons I won't
|
||||||
|
go into here. baselayout-2 was still in the pre stage, and aside from the
|
||||||
|
fbsd users, it was masked everywhere. However, I also desired to keep the
|
||||||
|
baselayout-2 project alive, but outside of Gentoo and into other projects
|
||||||
|
such as FreeBSD.
|
||||||
|
|
||||||
|
As such, the Gentoo Council have allowed the creation of OpenRC under the
|
||||||
|
2 clause BSD license, managed by me as an external project.
|
||||||
40
README.newnet
Normal file
40
README.newnet
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
The following applies only to the newnet stack, which is not presently
|
||||||
|
maintained in OpenRC. The oldnet stack is maintained instead.
|
||||||
|
- Robin H. Johnson <robbat2@gentoo.org>, 2011/02/21
|
||||||
|
|
||||||
|
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
Normal file
85
STYLE
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
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 present tense: "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
|
||||||
|
|
||||||
7
TODO
Normal file
7
TODO
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
- 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.
|
||||||
2
conf.d/.gitignore
vendored
Normal file
2
conf.d/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
network
|
||||||
|
staticroute
|
||||||
19
conf.d/Makefile
Normal file
19
conf.d/Makefile
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
DIR= ${CONFDIR}
|
||||||
|
CONF= bootmisc fsck hostname localmount network staticroute urandom
|
||||||
|
|
||||||
|
TARGETS+= network staticroute
|
||||||
|
CLEANFILES+= network staticroute
|
||||||
|
|
||||||
|
MK= ../mk
|
||||||
|
include ${MK}/os.mk
|
||||||
|
include Makefile.${OS}
|
||||||
|
include ${MK}/scripts.mk
|
||||||
|
|
||||||
|
SOS?= BSD
|
||||||
|
|
||||||
|
network: network.in network.${SOS}
|
||||||
|
cp $@.in $@
|
||||||
|
[ -e $@.${SOS} ] && cat $@.${SOS} >> $@ || true
|
||||||
|
|
||||||
|
staticroute: staticroute.${SOS}
|
||||||
|
cp $@.${SOS} $@
|
||||||
1
conf.d/Makefile.FreeBSD
Normal file
1
conf.d/Makefile.FreeBSD
Normal file
@@ -0,0 +1 @@
|
|||||||
|
CONF+= ipfw moused powerd rarpd savecore syscons
|
||||||
2
conf.d/Makefile.Linux
Normal file
2
conf.d/Makefile.Linux
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
CONF+= consolefont dmesg hwclock keymaps killprocs modules
|
||||||
|
SOS= Linux
|
||||||
1
conf.d/Makefile.NetBSD
Normal file
1
conf.d/Makefile.NetBSD
Normal file
@@ -0,0 +1 @@
|
|||||||
|
CONF+= moused rarpd savecore
|
||||||
10
conf.d/adjkerntz
Normal file
10
conf.d/adjkerntz
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# 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"
|
||||||
6
conf.d/bootmisc
Normal file
6
conf.d/bootmisc
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# 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"
|
||||||
17
conf.d/consolefont
Normal file
17
conf.d/consolefont
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
# 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.
|
||||||
|
# This setting is used by the /etc/init.d/consolefont script (NOTE: if you do
|
||||||
|
# not want to use it, run "rc-update del consolefont boot" as root).
|
||||||
|
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"
|
||||||
3
conf.d/dmesg
Normal file
3
conf.d/dmesg
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Sets the level at which logging of messages is done to the
|
||||||
|
# console. See dmesg(8) for more info.
|
||||||
|
dmesg_level="1"
|
||||||
27
conf.d/fsck
Normal file
27
conf.d/fsck
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
# 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"
|
||||||
|
|
||||||
|
# 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"
|
||||||
2
conf.d/hostname
Normal file
2
conf.d/hostname
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Set to the hostname of this machine
|
||||||
|
hostname="localhost"
|
||||||
22
conf.d/hwclock
Normal file
22
conf.d/hwclock
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# 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 to set the Hardware Clock to the current System Time
|
||||||
|
# (software clock) during shutdown, then say "YES" here.
|
||||||
|
# You normally don't need to do this if you run a ntp daemon.
|
||||||
|
clock_systohc="NO"
|
||||||
|
|
||||||
|
# If you want to set the system time to the current hardware clock
|
||||||
|
# during bootup, then say "YES" here. You do not need this if you are
|
||||||
|
# running a modern kernel with CONFIG_RTC_HCTOSYS set to y.
|
||||||
|
# Also, be aware that if you set this to "NO", the system time will
|
||||||
|
# never be saved to the hardware clock unless you set
|
||||||
|
# clock_systohc="YES" above.
|
||||||
|
clock_hctosys="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
Normal file
14
conf.d/ipfw
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
# 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"
|
||||||
|
|
||||||
23
conf.d/keymaps
Normal file
23
conf.d/keymaps
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# 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"
|
||||||
3
conf.d/killprocs
Normal file
3
conf.d/killprocs
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# If you wish to pass any options to killall5 during shutdown,
|
||||||
|
# you should do so here.
|
||||||
|
killall5_opts=""
|
||||||
3
conf.d/localmount
Normal file
3
conf.d/localmount
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Stop the unmounting of certain points.
|
||||||
|
# This could be useful for some NFS related work.
|
||||||
|
#no_umounts="/dir1:/var/dir2"
|
||||||
23
conf.d/modules
Normal file
23
conf.d/modules
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# 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.
|
||||||
16
conf.d/moused
Normal file
16
conf.d/moused
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# 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.
|
||||||
4
conf.d/net
Normal file
4
conf.d/net
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# This blank configuration will automatically use DHCP for any net.*
|
||||||
|
# scripts in /etc/init.d. To create a more complete configuration,
|
||||||
|
# please review /usr/share/doc/openrc/net.example and save your configuration
|
||||||
|
# in /etc/conf.d/net (this file :]!).
|
||||||
4
conf.d/network.BSD
Normal file
4
conf.d/network.BSD
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
# You can assign a default route
|
||||||
|
#defaultroute="192.168.0.1"
|
||||||
|
#defaultroute6="2001:a:b:c"
|
||||||
43
conf.d/network.Linux
Normal file
43
conf.d/network.Linux
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
|
||||||
|
# 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"
|
||||||
28
conf.d/network.in
Normal file
28
conf.d/network.in
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
# 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 shutdown_network=YES
|
||||||
|
|
||||||
|
# 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"
|
||||||
7
conf.d/powerd
Normal file
7
conf.d/powerd
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# 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=""
|
||||||
3
conf.d/rarpd
Normal file
3
conf.d/rarpd
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# To start rarpd only for a given interface, set the
|
||||||
|
# following variable. Otherwise we listen on all interfaces.
|
||||||
|
#rarpd_interface="rl0"
|
||||||
25
conf.d/savecore
Normal file
25
conf.d/savecore
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
# 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
|
||||||
6
conf.d/staticroute.BSD
Normal file
6
conf.d/staticroute.BSD
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# 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"
|
||||||
8
conf.d/staticroute.Linux
Normal file
8
conf.d/staticroute.Linux
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# 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"
|
||||||
19
conf.d/syscons
Normal file
19
conf.d/syscons
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# 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"
|
||||||
5
conf.d/urandom
Normal file
5
conf.d/urandom
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/run/random-seed"
|
||||||
1
doc/.gitignore
vendored
Normal file
1
doc/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
net.example
|
||||||
7
doc/Makefile
Normal file
7
doc/Makefile
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
DIR= ${DOCDIR}/openrc
|
||||||
|
INC= net.example
|
||||||
|
|
||||||
|
MK= ../mk
|
||||||
|
include ${MK}/os.mk
|
||||||
|
include Makefile.${OS}
|
||||||
|
include ${MK}/scripts.mk
|
||||||
5
doc/Makefile.FreeBSD
Normal file
5
doc/Makefile.FreeBSD
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
SRCS+= net.example.in
|
||||||
|
|
||||||
|
.SUFFIXES: .BSD.in
|
||||||
|
.BSD.in:
|
||||||
|
${CP} $< $@
|
||||||
5
doc/Makefile.Linux
Normal file
5
doc/Makefile.Linux
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
SRCS+= net.example.in
|
||||||
|
|
||||||
|
.SUFFIXES: .Linux.in
|
||||||
|
.Linux.in:
|
||||||
|
${CP} $< $@
|
||||||
5
doc/Makefile.NetBSD
Normal file
5
doc/Makefile.NetBSD
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
SRCS+= net.example.in
|
||||||
|
|
||||||
|
.SUFFIXES: .BSD.in
|
||||||
|
.BSD.in:
|
||||||
|
${CP} $< $@
|
||||||
431
doc/net.example.BSD.in
Normal file
431
doc/net.example.BSD.in
Normal file
@@ -0,0 +1,431 @@
|
|||||||
|
##############################################################################
|
||||||
|
# QUICK-START
|
||||||
|
#
|
||||||
|
# The quickest start is if you want to use DHCP.
|
||||||
|
# In that case, everything should work out of the box, no configuration
|
||||||
|
# necessary, though the startup script will warn you that you haven't
|
||||||
|
# specified anything.
|
||||||
|
|
||||||
|
# WARNING :- some examples have a mixture of IPv4 (ie 192.168.0.1) and IPv6
|
||||||
|
# (ie 4321:0:1:2:3:4:567:89ab) internet addresses. They only work if you have
|
||||||
|
# the relevant kernel option enabled. So if you don't have an IPv6 enabled
|
||||||
|
# kernel then remove the IPv6 address from your config.
|
||||||
|
|
||||||
|
# If you want to use a static address or use DHCP explicitly, jump
|
||||||
|
# down to the section labeled INTERFACE HANDLERS.
|
||||||
|
#
|
||||||
|
# If you want to do anything more fancy, you should take the time to
|
||||||
|
# read through the rest of this file.
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# MODULES
|
||||||
|
#
|
||||||
|
# We now support modular networking scripts which means we can easily
|
||||||
|
# add support for new interface types and modules while keeping
|
||||||
|
# compatibility with existing ones.
|
||||||
|
#
|
||||||
|
# Modules load by default if the package they need is installed. If
|
||||||
|
# you specify a module here that doesn't have its package installed
|
||||||
|
# then you get an error stating which package you need to install.
|
||||||
|
# Ideally, you only use the modules setting when you have two or more
|
||||||
|
# packages installed that supply the same service.
|
||||||
|
#
|
||||||
|
# In other words, you probably should DO NOTHING HERE...
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# INTERFACE HANDLERS
|
||||||
|
|
||||||
|
# For a static configuration, use something like this
|
||||||
|
#config_eth0="192.168.0.2/24"
|
||||||
|
|
||||||
|
# If you need more than one address, you can use something like this
|
||||||
|
# NOTE: ifconfig creates an aliased device for each extra IPv4 address
|
||||||
|
# (eth0:1, eth0:2, etc)
|
||||||
|
# iproute2 does not do this as there is no need to
|
||||||
|
#config_eth0="192.168.0.2/24 192.168.0.3/24 192.168.0.4/24"
|
||||||
|
|
||||||
|
# You can also use IPv6 addresses
|
||||||
|
# (you should always specify a prefix length with IPv6 here)
|
||||||
|
#config_eth0="192.168.0.2/24 4321:0:1:2:3:4:567:89ab/64 4321:0:1:2:3:4:567:89ac/64"
|
||||||
|
|
||||||
|
# If you wish to keep existing addresses + routing and the interface is up,
|
||||||
|
# you can specify a noop (no operation). If the interface is down or there
|
||||||
|
# are no addresses assigned, then we move onto the next step (default dhcp)
|
||||||
|
# This is useful when configuring your interface with a kernel command line
|
||||||
|
# or similar
|
||||||
|
#config_eth0="noop 192.168.0.2/24"
|
||||||
|
|
||||||
|
# If you don't want ANY address (only useful when calling for advanced stuff)
|
||||||
|
#config_eth0="null"
|
||||||
|
|
||||||
|
# Here's how to do routing if you need it
|
||||||
|
# We add an IPv4 default route, IPv4 subnet route and an IPv6 unicast route
|
||||||
|
#routes_eth0="default via 192.168.0.1
|
||||||
|
#10.0.0.0/8 via 192.168.0.1
|
||||||
|
#::/0"
|
||||||
|
|
||||||
|
# If a specified module fails (like dhcp - see below), you can specify a
|
||||||
|
# fallback like so
|
||||||
|
#fallback_eth0="192.168.0.2 netmask 255.255.255.0"
|
||||||
|
#fallback_routes_eth0="default via 192.168.0.1"
|
||||||
|
|
||||||
|
# NOTE: fallback entry must match the entry location in config_eth0
|
||||||
|
# As such you can only have one fallback route.
|
||||||
|
# Also, if you do not set a fallback_routes entry for an interface, the
|
||||||
|
# routes entry will be used if that is set.
|
||||||
|
|
||||||
|
# Some users may need to alter the MTU - here's how
|
||||||
|
#mtu_eth0="1500"
|
||||||
|
|
||||||
|
# Most drivers that report carrier status function correctly, but some do not
|
||||||
|
# One of these faulty drivers is for the Intel e1000 network card, but only
|
||||||
|
# at boot time. To get around this you may alter the carrier_timeout value for
|
||||||
|
# the interface. -1 is disable, 0 is infinite and any other number of seconds
|
||||||
|
# is how long we wait for carrier. The current default is 3 seconds
|
||||||
|
#carrier_timeout_eth0=-1
|
||||||
|
|
||||||
|
# You may wish to disable the interface being brought down when stopping.
|
||||||
|
# This is only of use for WakeOnLan.
|
||||||
|
#ifdown_eth0="NO"
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# OPTIONAL MODULES
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# WIRELESS (802.11 support)
|
||||||
|
# Wireless can be provided by BSDs ifconfig (iwconfig) or wpa_supplicant
|
||||||
|
# wpa_supplicant is preferred, use the modules directive to prefer iwconfig.
|
||||||
|
#modules="iwconfig"
|
||||||
|
|
||||||
|
# ifconfig (iwconig) support is a one shot script - wpa_supplicant is daemon
|
||||||
|
# that scans, associates and re-configures if association is lost.
|
||||||
|
# We call it iwconfig to separate the wireless setup from ifconfig.
|
||||||
|
####################################
|
||||||
|
# HINTS
|
||||||
|
#
|
||||||
|
# Most users will just need to set the following options
|
||||||
|
# key_SSID1="s:yourkeyhere enc open" # s: means a text key
|
||||||
|
# key_SSID2="aaaa-bbbb-cccc-dd" # no s: means a hex key
|
||||||
|
# preferred_aps="SSID1 SSID2"
|
||||||
|
#
|
||||||
|
# Clear? Good. Now configure your wireless network below
|
||||||
|
|
||||||
|
####################################
|
||||||
|
# SETTINGS
|
||||||
|
# Hard code an SSID to an interface - leave this unset if you wish the driver
|
||||||
|
# to scan for available Access Points
|
||||||
|
# I would only set this as a last resort really - use the preferred_aps
|
||||||
|
# setting at the bottom of this file
|
||||||
|
#essid_eth0='foo'
|
||||||
|
|
||||||
|
# Some drivers/hardware don't scan all that well. We have no control over this
|
||||||
|
# but we can say how many scans we want to do to try and get a better sweep of
|
||||||
|
# the area. The default is 1.
|
||||||
|
#scans_eth0="1"
|
||||||
|
|
||||||
|
#Channel can be set (1-14), but defaults to 3 if not set.
|
||||||
|
#
|
||||||
|
# The below is taken verbatim from the BSD wavelan documentation found at
|
||||||
|
# http://www.netbsd.org/Documentation/network/wavelan.html
|
||||||
|
# There are 14 channels possible; We are told that channels 1-11 are legal for
|
||||||
|
# North America, channels 1-13 for most of Europe, channels 10-13 for France,
|
||||||
|
# and only channel 14 for Japan. If in doubt, please refer to the documentation
|
||||||
|
# that came with your card or access point. Make sure that the channel you
|
||||||
|
# select is the same channel your access point (or the other card in an ad-hoc
|
||||||
|
# network) is on. The default for cards sold in North America and most of Europe
|
||||||
|
# is 3; the default for cards sold in France is 11, and the default for cards
|
||||||
|
# sold in Japan is 14.
|
||||||
|
#channel_eth0="3"
|
||||||
|
|
||||||
|
# Setup any other config commands. This is basically the ifconfig argument
|
||||||
|
# without the ifconfig $iface.
|
||||||
|
#ifconfig_eth0=""
|
||||||
|
# You can do the same per SSID too.
|
||||||
|
#ifconfig_SSID=""
|
||||||
|
|
||||||
|
# Seconds to wait until associated. The default is to wait 10 seconds.
|
||||||
|
# 0 means wait indefinitely. WARNING: this can cause an infinite delay when
|
||||||
|
# booting.
|
||||||
|
#associate_timeout_eth0="5"
|
||||||
|
|
||||||
|
# Define a WEP key per SSID or MAC address (of the AP, not your card)
|
||||||
|
# The encryption type (open or restricted) must match the
|
||||||
|
# encryption type on the Access Point.
|
||||||
|
# To set a hex key, prefix with 0x
|
||||||
|
#key_SSID="0x12341234123412341234123456"
|
||||||
|
# or you can use strings. Passphrase IS NOT supported
|
||||||
|
#key_SSID="foobar"
|
||||||
|
#key_SSID="foobar"
|
||||||
|
|
||||||
|
# WEP key for the AP with MAC address 001122334455
|
||||||
|
#mac_key_001122334455="foobar"
|
||||||
|
|
||||||
|
# You can also override the interface settings found in /etc/conf.d/net
|
||||||
|
# per SSID - which is very handy if you use different networks a lot
|
||||||
|
#config_SSID="dhcp"
|
||||||
|
#routes_SSID=
|
||||||
|
#fallback_SSID=
|
||||||
|
|
||||||
|
# Setting name/domain server causes /etc/resolv.conf to be overwritten
|
||||||
|
# Note that if DHCP is used, and you want this to take precedence then
|
||||||
|
# please put -R in your dhcpcd options
|
||||||
|
#dns_servers_SSID="192.168.0.1 192.168.0.2"
|
||||||
|
#dns_domain_SSID="some.domain"
|
||||||
|
#dns_search_SSID="search.this.domain search.that.domain"
|
||||||
|
# Please check the man page for resolv.conf for more information
|
||||||
|
# as domain and search (searchdomains) are mutually exclusive and
|
||||||
|
# searchdomains takes precedence
|
||||||
|
|
||||||
|
# You can also set any of the /etc/conf.d/net variables per MAC address
|
||||||
|
# incase you use Access Points with the same SSID but need different
|
||||||
|
# networking configs. Below is an example - of course you use the same
|
||||||
|
# method with other variables
|
||||||
|
#config_001122334455="dhcp"
|
||||||
|
#dns_servers_001122334455="192.168.0.1 192.168.0.2"
|
||||||
|
|
||||||
|
# Map a MAC address to an SSID
|
||||||
|
# This is used when the Access Point is not broadcasting its SSID
|
||||||
|
# WARNING: This will override the SSID being broadcast due to some
|
||||||
|
# Access Points sending an SSID even when they have been configured
|
||||||
|
# not to!
|
||||||
|
# Change 001122334455 to the MAC address and SSID to the SSID
|
||||||
|
# it should map to
|
||||||
|
#mac_essid_001122334455="SSID"
|
||||||
|
|
||||||
|
# This lists the preferred SSIDs to connect to in order
|
||||||
|
# SSID's can contain any characters here as they must match the broadcast
|
||||||
|
# SSID exactly.
|
||||||
|
# Surround each SSID with the " character and separate them with a space
|
||||||
|
# If the first SSID isn't found then it moves onto the next
|
||||||
|
# If this isn't defined then it connects to the first one found
|
||||||
|
#preferred_aps="SSID1 SSID2"
|
||||||
|
|
||||||
|
# You can also define a preferred_aps list per interface
|
||||||
|
#preferred_aps_eth0="SSID3 SSID4"
|
||||||
|
|
||||||
|
# You can also say whether we only connect to preferred APs or not
|
||||||
|
# Values are "any", "preferredonly", "forcepreferred", "forcepreferredonly"
|
||||||
|
# and "forceany"
|
||||||
|
# "any" means it will connect to visible APs in the preferred list and then
|
||||||
|
# any other available AP
|
||||||
|
# "preferredonly" means it will only connect to visible APs in the preferred
|
||||||
|
# list
|
||||||
|
# "forcepreferred" means it will forcibly connect to APs in order if it does
|
||||||
|
# not find them in a scan
|
||||||
|
# "forcepreferredonly" means it forcibly connects to the APs in order and
|
||||||
|
# does not bother to scan
|
||||||
|
# "forceany" does the same as forcepreferred + connects to any other
|
||||||
|
# available AP
|
||||||
|
# Default is "any"
|
||||||
|
#associate_order="any"
|
||||||
|
#associate_order_eth0="any"
|
||||||
|
|
||||||
|
# You can define blacklisted Access Points in the same way
|
||||||
|
#blacklist_aps="SSID1 SSID2"
|
||||||
|
#blacklist_aps_eth0="SSID3 SSID4"
|
||||||
|
|
||||||
|
# If you have more than one wireless card, you can say if you want
|
||||||
|
# to allow each card to associate with the same Access Point or not
|
||||||
|
# Values are "yes" and "no"
|
||||||
|
# Default is "yes"
|
||||||
|
#unique_ap="yes"
|
||||||
|
#unique_ap_eth0="yes"
|
||||||
|
|
||||||
|
# IMPORTANT: preferred_only, blacklisted_aps and unique_ap only work when
|
||||||
|
# essid_eth0 is not set and your card is capable of scanning
|
||||||
|
|
||||||
|
# NOTE: preferred_aps list ignores blacklisted_aps - so if you have
|
||||||
|
# the same SSID in both, well, you're a bit silly :p
|
||||||
|
|
||||||
|
##################################################
|
||||||
|
# wpa_supplicant
|
||||||
|
# emerge net-wireless/wpa_supplicant
|
||||||
|
# Wireless options are held in /etc/wpa_supplicant/wpa_supplicant.conf
|
||||||
|
# Consult the wpa_supplicant.conf.example that is installed in
|
||||||
|
# /usr/share/doc/wpa_supplicant
|
||||||
|
|
||||||
|
# By default we don't wait for wpa_supplicant to associate and authenticate.
|
||||||
|
# If you would like to, so can specify how long in seconds
|
||||||
|
#associate_timeout_eth0=60
|
||||||
|
# A value of 0 means wait forever.
|
||||||
|
|
||||||
|
# You can also override any settings found here per SSID - which is very
|
||||||
|
# handy if you use different networks a lot. See below for using the SSID
|
||||||
|
# in our variables
|
||||||
|
#config_SSID="dhcp"
|
||||||
|
# See the System module below for setting dns/nis/ntp per SSID
|
||||||
|
|
||||||
|
# You can also override any settings found here per MAC address of the AP
|
||||||
|
# in case you use Access Points with the same SSID but need different
|
||||||
|
# networking configs. Below is an example - of course you use the same
|
||||||
|
# method with other variables
|
||||||
|
#mac_config_001122334455="dhcp"
|
||||||
|
#mac_dns_servers_001122334455="192.168.0.1 192.168.0.2"
|
||||||
|
|
||||||
|
# When an interface has been associated with an Access Point, a global
|
||||||
|
# variable called SSID is set to the Access Point's SSID for use in the
|
||||||
|
# pre/post user functions below (although it's not available in preup as you
|
||||||
|
# won't have associated then)
|
||||||
|
|
||||||
|
# If you're using anything else to configure wireless on your interface AND
|
||||||
|
# you have installed wpa_supplicant, you need to disable wpa_supplicant
|
||||||
|
#modules="!iwconfig !wpa_supplicant"
|
||||||
|
#or
|
||||||
|
#modules="!wireless"
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# WIRELESS SSID IN VARIABLES
|
||||||
|
##############################################################################
|
||||||
|
# Remember to change SSID to your SSID.
|
||||||
|
# Say that your SSID is My NET - the line
|
||||||
|
# #key_SSID="s:passkey"
|
||||||
|
# becomes
|
||||||
|
# #key_My_NET="s:passkey"
|
||||||
|
# Notice that the space has changed to an underscore - do the same with all
|
||||||
|
# characters not in a-z A-Z (English alphabet) 0-9. This only applies to
|
||||||
|
# variables and not values.
|
||||||
|
#
|
||||||
|
# Any SSID's in values like essid_eth0="My NET" may need to be escaped
|
||||||
|
# This means placing the character \ before the character
|
||||||
|
# \" need to be escaped for example
|
||||||
|
# So if your SSID is
|
||||||
|
# My "\ NET
|
||||||
|
# it becomes
|
||||||
|
# My \"\\ NET
|
||||||
|
# for example
|
||||||
|
# #essid_eth0="My\"\\NET"
|
||||||
|
#
|
||||||
|
# So using the above we can use
|
||||||
|
# #dns_domain_My____NET="My\"\\NET"
|
||||||
|
# which is an invalid dns domain, but shows the how to use the variable
|
||||||
|
# structure
|
||||||
|
#########################################################
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# DHCP
|
||||||
|
# DHCP can be provided by dhclient.
|
||||||
|
#
|
||||||
|
# dhcpcd: emerge net-misc/dhcpcd
|
||||||
|
# dhclient: emerge net-misc/dhcp
|
||||||
|
|
||||||
|
# Regardless of which DHCP client you prefer, you configure them the
|
||||||
|
# same way using one of following depending on which interface modules
|
||||||
|
# you're using.
|
||||||
|
#config_eth0="dhcp"
|
||||||
|
|
||||||
|
# For passing custom options to dhcpcd use something like the following. This
|
||||||
|
# example reduces the timeout for retrieving an address from 60 seconds (the
|
||||||
|
# default) to 10 seconds.
|
||||||
|
#dhcpcd_eth0="-t 10"
|
||||||
|
|
||||||
|
# GENERIC DHCP OPTIONS
|
||||||
|
# Set generic DHCP options like so
|
||||||
|
#dhcp_eth0="release nodns nontp nonis nogateway nosendhost"
|
||||||
|
|
||||||
|
# This tells the dhcp client to release its lease when it stops, not to
|
||||||
|
# overwrite dns, ntp and nis settings, not to set a default route and not to
|
||||||
|
# send the current hostname to the dhcp server and when it starts.
|
||||||
|
# You can use any combination of the above options - the default is not to
|
||||||
|
# use any of them.
|
||||||
|
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# System
|
||||||
|
# For configuring system specifics such as domain, dns, ntp and nis servers
|
||||||
|
# It's rare that you would need todo this, but you can anyway.
|
||||||
|
# This is most benefit to wireless users who don't use DHCP so they can change
|
||||||
|
# their configs based on SSID.
|
||||||
|
|
||||||
|
# If you omit the _eth0 suffix, then it applies to all interfaces unless
|
||||||
|
# overridden by the interface suffix.
|
||||||
|
#dns_domain_eth0="your.domain"
|
||||||
|
#dns_servers_eth0="192.168.0.2 192.168.0.3"
|
||||||
|
#dns_search_eth0="this.domain that.domain"
|
||||||
|
#dns_options_eth0="timeout:1 rotate"
|
||||||
|
#dns_sortlist_eth0="130.155.160.0/255.255.240.0 130.155.0.0"
|
||||||
|
# See the man page for resolv.conf for details about the options and sortlist
|
||||||
|
# directives
|
||||||
|
|
||||||
|
#ntp_servers_eth0="192.168.0.2 192.168.0.3"
|
||||||
|
|
||||||
|
#nis_domain_eth0="domain"
|
||||||
|
#nis_servers_eth0="192.168.0.2 192.168.0.3"
|
||||||
|
|
||||||
|
# NOTE: Setting any of these will stamp on the files in question. So if you
|
||||||
|
# don't specify dns_servers but you do specify dns_domain then no nameservers
|
||||||
|
# will be listed in /etc/resolv.conf even if there were any there to start
|
||||||
|
# with.
|
||||||
|
# If this is an issue for you then maybe you should look into a resolv.conf
|
||||||
|
# manager like resolvconf-gentoo to manage this file for you. All packages
|
||||||
|
# that baselayout supports use resolvconf-gentoo if installed.
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# Cable in/out detection
|
||||||
|
# Sometimes the cable is in, others it's out. Obviously you don't want to
|
||||||
|
# restart net.eth0 every time when you plug it in either.
|
||||||
|
# BSD has the Device State Change Daemon - or devd for short
|
||||||
|
# To enable this, simple add devd to the boot runlevel
|
||||||
|
#rc-update add devd boot
|
||||||
|
#rc
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# ADVANCED CONFIGURATION
|
||||||
|
#
|
||||||
|
# Four functions can be defined which will be called surrounding the
|
||||||
|
# start/stop operations. The functions are called with the interface
|
||||||
|
# name first so that one function can control multiple adapters. An extra two
|
||||||
|
# functions can be defined when an interface fails to start or stop.
|
||||||
|
#
|
||||||
|
# The return values for the preup and predown functions should be 0
|
||||||
|
# (success) to indicate that configuration or deconfiguration of the
|
||||||
|
# interface can continue. If preup returns a non-zero value, then
|
||||||
|
# interface configuration will be aborted. If predown returns a
|
||||||
|
# non-zero value, then the interface will not be allowed to continue
|
||||||
|
# deconfiguration.
|
||||||
|
#
|
||||||
|
# The return values for the postup, postdown, failup and faildown functions are
|
||||||
|
# ignored since there's nothing to do if they indicate failure.
|
||||||
|
#
|
||||||
|
# ${IFACE} is set to the interface being brought up/down
|
||||||
|
# ${IFVAR} is ${IFACE} converted to variable name bash allows
|
||||||
|
|
||||||
|
#preup() {
|
||||||
|
# # Remember to return 0 on success
|
||||||
|
# return 0
|
||||||
|
#}
|
||||||
|
|
||||||
|
#predown() {
|
||||||
|
# # The default in the script is to test for NFS root and disallow
|
||||||
|
# # downing interfaces in that case. Note that if you specify a
|
||||||
|
# # predown() function you will override that logic. Here it is, in
|
||||||
|
# # case you still want it...
|
||||||
|
# if is_net_fs /; then
|
||||||
|
# eerror "root filesystem is network mounted -- can't stop ${IFACE}"
|
||||||
|
# return 1
|
||||||
|
# fi
|
||||||
|
#
|
||||||
|
# # Remember to return 0 on success
|
||||||
|
# return 0
|
||||||
|
#}
|
||||||
|
|
||||||
|
#postup() {
|
||||||
|
# # This function could be used, for example, to register with a
|
||||||
|
# # dynamic DNS service. Another possibility would be to
|
||||||
|
# # send/receive mail once the interface is brought up.
|
||||||
|
|
||||||
|
#}
|
||||||
|
|
||||||
|
#postdown() {
|
||||||
|
# # Return 0 always
|
||||||
|
# return 0
|
||||||
|
#}
|
||||||
|
|
||||||
|
#failup() {
|
||||||
|
# # This function is mostly here for completeness... I haven't
|
||||||
|
# # thought of anything nifty to do with it yet ;-)
|
||||||
|
#}
|
||||||
|
|
||||||
|
#faildown() {
|
||||||
|
# # This function is mostly here for completeness... I haven't
|
||||||
|
# # thought of anything nifty to do with it yet ;-)
|
||||||
|
#}
|
||||||
1149
doc/net.example.Linux.in
Normal file
1149
doc/net.example.Linux.in
Normal file
File diff suppressed because it is too large
Load Diff
3
etc/.gitignore
vendored
Normal file
3
etc/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
rc.conf
|
||||||
|
rc
|
||||||
|
rc.shutdown
|
||||||
21
etc/Makefile
Normal file
21
etc/Makefile
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
DIR= ${SYSCONFDIR}
|
||||||
|
CONF= rc.conf
|
||||||
|
|
||||||
|
CLEANFILES+= rc.conf
|
||||||
|
|
||||||
|
MK= ../mk
|
||||||
|
include ${MK}/os.mk
|
||||||
|
include Makefile.${OS}
|
||||||
|
include ${MK}/scripts.mk
|
||||||
|
|
||||||
|
# We can't use "ifndef" here because that treats set-but-empty
|
||||||
|
# as not-set which is not what we want
|
||||||
|
MKRCSYS ?= automagicplease
|
||||||
|
ifeq ($(MKRCSYS),automagicplease)
|
||||||
|
# If the user isn't picking a default, then have the
|
||||||
|
# config go with runtime automagic detection #357247
|
||||||
|
rc.conf: SED_EXTRA += -e '/^rc_sys=""/s:^:\#:'
|
||||||
|
MKRCSYS =
|
||||||
|
endif
|
||||||
|
rc.conf: rc.conf.in rc.conf.${OS}
|
||||||
|
${SED} ${SED_REPLACE} ${SED_EXTRA} $^ > $@
|
||||||
4
etc/Makefile.FreeBSD
Normal file
4
etc/Makefile.FreeBSD
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
SED_EXTRA= -e 's:@TERM@:cons25:g'
|
||||||
|
SRCS+= rc.conf.in rc.in rc.shutdown.in
|
||||||
|
CONF+= devd.conf
|
||||||
|
BIN+= rc rc.shutdown rc.devd
|
||||||
2
etc/Makefile.Linux
Normal file
2
etc/Makefile.Linux
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
SED_EXTRA= -e 's:@TERM@:wsvt25:g'
|
||||||
|
SRCS+= rc.conf.in rc.in rc.shutdown.in
|
||||||
3
etc/Makefile.NetBSD
Normal file
3
etc/Makefile.NetBSD
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
SED_EXTRA= -e 's:@TERM@:wsvt25:g'
|
||||||
|
SRCS+= rc.conf.in rc.in rc.shutdown.in
|
||||||
|
BIN+= rc rc.shutdown
|
||||||
315
etc/devd.conf
Normal file
315
etc/devd.conf
Normal file
@@ -0,0 +1,315 @@
|
|||||||
|
# $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";
|
||||||
|
};
|
||||||
|
*/
|
||||||
14
etc/rc.conf.FreeBSD
Normal file
14
etc/rc.conf.FreeBSD
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
##############################################################################
|
||||||
|
# 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 attempted.
|
||||||
|
# Note that automatic detection does not work in a prefix environment.
|
||||||
|
#
|
||||||
|
# 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="@RC_SYS_DEFAULT@"
|
||||||
|
|
||||||
24
etc/rc.conf.Linux
Normal file
24
etc/rc.conf.Linux
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
##############################################################################
|
||||||
|
# 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 attempted.
|
||||||
|
# Note that autodetection will not work in a prefix environment or in a
|
||||||
|
# linux container.
|
||||||
|
#
|
||||||
|
# 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="@RC_SYS_DEFAULT@"
|
||||||
|
|
||||||
|
# This is the number of tty's used in most of the rc-scripts (like
|
||||||
|
# consolefont, numlock, etc ...)
|
||||||
|
rc_tty_number=12
|
||||||
|
|
||||||
15
etc/rc.conf.NetBSD
Normal file
15
etc/rc.conf.NetBSD
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
##############################################################################
|
||||||
|
# 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 attempted.
|
||||||
|
# Note that automatic detection does not work in a prefix environment.
|
||||||
|
#
|
||||||
|
# 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="@RC_SYS_DEFAULT@"
|
||||||
|
|
||||||
122
etc/rc.conf.in
Normal file
122
etc/rc.conf.in
Normal file
@@ -0,0 +1,122 @@
|
|||||||
|
# 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"
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# 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"
|
||||||
|
|
||||||
|
# Below is the default list of network fstypes.
|
||||||
|
#
|
||||||
|
# afs 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.
|
||||||
|
|
||||||
|
# Some daemons are started and stopped via start-stop-daemon.
|
||||||
|
# We can set some things on a per service basis, like the nicelevel.
|
||||||
|
#export 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"
|
||||||
|
|
||||||
|
# You can also remove dependencies.
|
||||||
|
# This is mainly used for saying which servies do NOT provide net.
|
||||||
|
#rc_net_tap0_provide="!net"
|
||||||
|
|
||||||
31
etc/rc.devd
Normal file
31
etc/rc.devd
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
#!/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
|
||||||
|
export IN_BACKGROUND=yes
|
||||||
|
export IN_HOTPLUG=yes
|
||||||
|
|
||||||
|
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
Normal file
19
etc/rc.in
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
#!@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" ] && export TERM="@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
|
||||||
17
etc/rc.shutdown.in
Normal file
17
etc/rc.shutdown.in
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
#!@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.
|
||||||
|
export LD_LIBRARY_PATH="/lib${LD_LIBRARY_PATH:+:}${LDLIBRARY_PATH}"
|
||||||
|
|
||||||
|
# If $TERM is not set then assume default of @TERM@
|
||||||
|
# This gives us a nice colour boot :)
|
||||||
|
[ -z "$TERM" -o "$TERM" = "dumb" ] && export TERM="@TERM@"
|
||||||
|
|
||||||
|
action=${1:-shutdown}
|
||||||
|
exec /sbin/rc "${action}"
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
<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
Normal file
11
init.d.misc/.gitignore
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
avahi-dnsconfd
|
||||||
|
avahid
|
||||||
|
dhcpcd
|
||||||
|
dbus
|
||||||
|
hald
|
||||||
|
named
|
||||||
|
ntpd
|
||||||
|
openvpn
|
||||||
|
polkitd
|
||||||
|
sshd
|
||||||
|
wpa_supplicant
|
||||||
11
init.d.misc/Makefile
Normal file
11
init.d.misc/Makefile
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
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}/scripts.mk
|
||||||
|
include Makefile.${OS}
|
||||||
1
init.d.misc/Makefile.FreeBSD
Normal file
1
init.d.misc/Makefile.FreeBSD
Normal file
@@ -0,0 +1 @@
|
|||||||
|
PKG_PREFIX?= /usr/local
|
||||||
1
init.d.misc/Makefile.Linux
Normal file
1
init.d.misc/Makefile.Linux
Normal file
@@ -0,0 +1 @@
|
|||||||
|
PKG_PREFIX?=/usr
|
||||||
1
init.d.misc/Makefile.NetBSD
Normal file
1
init.d.misc/Makefile.NetBSD
Normal file
@@ -0,0 +1 @@
|
|||||||
|
PKG_PREFIX?= /usr/pkg
|
||||||
15
init.d.misc/avahi-dnsconfd.in
Normal file
15
init.d.misc/avahi-dnsconfd.in
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
15
init.d.misc/avahid.in
Normal file
15
init.d.misc/avahid.in
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
19
init.d.misc/dbus.in
Normal file
19
init.d.misc/dbus.in
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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)
|
||||||
|
}
|
||||||
27
init.d.misc/dhcpcd.in
Normal file
27
init.d.misc/dhcpcd.in
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
24
init.d.misc/dnsmasq.in
Normal file
24
init.d.misc/dnsmasq.in
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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 $?
|
||||||
|
}
|
||||||
13
init.d.misc/hald.in
Normal file
13
init.d.misc/hald.in
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
112
init.d.misc/named.in
Normal file
112
init.d.misc/named.in
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
37
init.d.misc/ntpd.in
Normal file
37
init.d.misc/ntpd.in
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
67
init.d.misc/openvpn.in
Normal file
67
init.d.misc/openvpn.in
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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 type 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
|
||||||
|
}
|
||||||
13
init.d.misc/polkitd.in
Normal file
13
init.d.misc/polkitd.in
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
35
init.d.misc/sshd.in
Normal file
35
init.d.misc/sshd.in
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
70
init.d.misc/wpa_supplicant.in
Normal file
70
init.d.misc/wpa_supplicant.in
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
42
init.d/.gitignore
vendored
Normal file
42
init.d/.gitignore
vendored
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
bootmisc
|
||||||
|
fsck
|
||||||
|
hostname
|
||||||
|
local
|
||||||
|
localmount
|
||||||
|
moused
|
||||||
|
net.lo
|
||||||
|
net.lo0
|
||||||
|
netmount
|
||||||
|
network
|
||||||
|
root
|
||||||
|
savecache
|
||||||
|
swap
|
||||||
|
sysctl
|
||||||
|
urandom
|
||||||
|
devfs
|
||||||
|
dmesg
|
||||||
|
hwclock
|
||||||
|
consolefont
|
||||||
|
keymaps
|
||||||
|
killprocs
|
||||||
|
modules
|
||||||
|
mount-ro
|
||||||
|
mtab
|
||||||
|
numlock
|
||||||
|
procfs
|
||||||
|
staticroute
|
||||||
|
sysfs
|
||||||
|
devdb
|
||||||
|
hostid
|
||||||
|
newsyslog
|
||||||
|
pf
|
||||||
|
rarpd
|
||||||
|
rc-enabled
|
||||||
|
rpcbind
|
||||||
|
savecore
|
||||||
|
swap-blk
|
||||||
|
swclock
|
||||||
|
syslogd
|
||||||
|
termencoding
|
||||||
|
ttys
|
||||||
|
wscons
|
||||||
25
init.d/Makefile
Normal file
25
init.d/Makefile
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
DIR= ${INITDIR}
|
||||||
|
SRCS= bootmisc.in fsck.in hostname.in local.in localmount.in netmount.in \
|
||||||
|
network.in root.in savecache.in staticroute.in swap.in swclock.in \
|
||||||
|
sysctl.in urandom.in
|
||||||
|
BIN= ${OBJS}
|
||||||
|
|
||||||
|
# Build our old net foo or not
|
||||||
|
ifeq (${MKOLDNET},yes)
|
||||||
|
_OLDNET= net.lo
|
||||||
|
endif
|
||||||
|
_NET_LO= ${_OLDNET}
|
||||||
|
|
||||||
|
INSTALLAFTER= _installafter_${_NET_LO}
|
||||||
|
CLEANFILES+= ${_NET_LO}
|
||||||
|
TARGETS+= ${_NET_LO}
|
||||||
|
|
||||||
|
MK= ../mk
|
||||||
|
include ${MK}/os.mk
|
||||||
|
include Makefile.${OS}
|
||||||
|
include ${MK}/scripts.mk
|
||||||
|
|
||||||
|
_installafter_: realinstall
|
||||||
|
|
||||||
|
_installafter_net.lo: realinstall
|
||||||
|
${INSTALL} -m ${BINMODE} net.lo ${DESTDIR}/${INITDIR}/${NET_LO}
|
||||||
13
init.d/Makefile.FreeBSD
Normal file
13
init.d/Makefile.FreeBSD
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
NET_LO= net.lo0
|
||||||
|
|
||||||
|
# Generic BSD scripts
|
||||||
|
SRCS+= hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \
|
||||||
|
rpcbind.in savecore.in syslogd.in
|
||||||
|
|
||||||
|
# These are FreeBSD specific
|
||||||
|
SRCS+= adjkerntz.in devd.in dumpon.in ipfw.in mixer.in nscd.in \
|
||||||
|
powerd.in syscons.in
|
||||||
|
|
||||||
|
.SUFFIXES: .BSD.in
|
||||||
|
.BSD.in:
|
||||||
|
sed ${SED_REPLACE} ${SED_EXTRA} $< > $@
|
||||||
9
init.d/Makefile.Linux
Normal file
9
init.d/Makefile.Linux
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
NET_LO= net.lo
|
||||||
|
|
||||||
|
SRCS+= 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
|
||||||
|
|
||||||
|
.SUFFIXES: .Linux.in
|
||||||
|
.Linux.in:
|
||||||
|
sed ${SED_REPLACE} ${SED_EXTRA} $< > $@
|
||||||
12
init.d/Makefile.NetBSD
Normal file
12
init.d/Makefile.NetBSD
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
NET_LO= net.lo0
|
||||||
|
|
||||||
|
# Generic BSD scripts
|
||||||
|
SRCS+= hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \
|
||||||
|
rpcbind.in savecore.in syslogd.in
|
||||||
|
|
||||||
|
# These are NetBSD specific
|
||||||
|
SRCS+= devdb.in swap-blk.in ttys.in wscons.in
|
||||||
|
|
||||||
|
.SUFFIXES: .BSD.in
|
||||||
|
.BSD.in:
|
||||||
|
sed ${SED_REPLACE} ${SED_EXTRA} $< > $@
|
||||||
62
init.d/adjkerntz.in
Normal file
62
init.d/adjkerntz.in
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
168
init.d/bootmisc.in
Normal file
168
init.d/bootmisc.in
Normal file
@@ -0,0 +1,168 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
||||||
|
# Released under the 2-clause BSD license.
|
||||||
|
|
||||||
|
depend()
|
||||||
|
{
|
||||||
|
need localmount
|
||||||
|
before logger
|
||||||
|
after clock sysctl
|
||||||
|
keyword -prefix -timeout
|
||||||
|
}
|
||||||
|
|
||||||
|
dir_writeable()
|
||||||
|
{
|
||||||
|
mkdir "$1"/.test.$$ 2>/dev/null && rmdir "$1"/.test.$$
|
||||||
|
}
|
||||||
|
|
||||||
|
: ${wipe_tmp:=${WIPE_TMP:-yes}}
|
||||||
|
|
||||||
|
cleanup_tmp_dir()
|
||||||
|
{
|
||||||
|
local dir="$1"
|
||||||
|
|
||||||
|
if ! [ -d "$dir" ]; then
|
||||||
|
mkdir -p "$dir" || return $?
|
||||||
|
fi
|
||||||
|
dir_writeable "$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
|
||||||
|
}
|
||||||
|
|
||||||
|
mkutmp()
|
||||||
|
{
|
||||||
|
: >"$1"
|
||||||
|
# Not all systems have the utmp group
|
||||||
|
chgrp utmp "$1" 2>/dev/null
|
||||||
|
chmod 0664 "$1"
|
||||||
|
}
|
||||||
|
|
||||||
|
start()
|
||||||
|
{
|
||||||
|
# Remove any added console dirs
|
||||||
|
rm -rf "$RC_LIBEXECDIR"/console/*
|
||||||
|
|
||||||
|
local logw=false runw=false extra=
|
||||||
|
# Ensure that our basic dirs exist
|
||||||
|
[ "$RC_UNAME" = Linux ] && extra=/var/lib/misc # Satisfy Linux FHS
|
||||||
|
for x in /var/log /var/run /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 dir_writeable /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
|
||||||
|
|
||||||
|
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 type 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
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Clean up /tmp directories
|
||||||
|
local tmp=
|
||||||
|
for tmp in ${clean_tmp_dirs:-${wipe_tmp_dirs-/tmp}}; do
|
||||||
|
cleanup_tmp_dir "$tmp"
|
||||||
|
done
|
||||||
|
|
||||||
|
if dir_writeable /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 $logw || dir_writeable /var/log; then
|
||||||
|
# Create an 'after-boot' dmesg log
|
||||||
|
if [ "$RC_SYS" != VSERVER -a "$RC_SYS" != OPENVZ ]; then
|
||||||
|
dmesg > /var/log/dmesg
|
||||||
|
chmod 640 /var/log/dmesg
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
[ -w /etc/nologin ] && rm -f /etc/nologin
|
||||||
|
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
|
||||||
|
}
|
||||||
67
init.d/consolefont.in
Normal file
67
init.d/consolefont.in
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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=$(($x + 1))
|
||||||
|
done
|
||||||
|
eend $retval
|
||||||
|
|
||||||
|
# Store the last font so we can use it ASAP on boot
|
||||||
|
if [ $retval -eq 0 -a -w "$RC_LIBEXECDIR" ]; then
|
||||||
|
mkdir -p "$RC_LIBEXECDIR"/console
|
||||||
|
for font in /usr/share/consolefonts/"$consolefont".*; do
|
||||||
|
:
|
||||||
|
done
|
||||||
|
cp "$font" "$RC_LIBEXECDIR"/console
|
||||||
|
echo "${font##*/}" >"$RC_LIBEXECDIR"/console/font
|
||||||
|
fi
|
||||||
|
|
||||||
|
return $retval
|
||||||
|
}
|
||||||
22
init.d/devd.in
Normal file
22
init.d/devd.in
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
21
init.d/devdb.in
Normal file
21
init.d/devdb.in
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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 "Bulding the dev database"
|
||||||
|
if [ /var/run/dev.db -nt /dev ]; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
dev_mkdb
|
||||||
|
fi
|
||||||
|
eend $?
|
||||||
|
}
|
||||||
36
init.d/devfs.in
Normal file
36
init.d/devfs.in
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
|
||||||
|
# Released under the 2-clause BSD license.
|
||||||
|
|
||||||
|
description="Mount system critical filesystems in /dev."
|
||||||
|
|
||||||
|
depend() {
|
||||||
|
use dev
|
||||||
|
keyword -prefix -vserver
|
||||||
|
}
|
||||||
|
|
||||||
|
start() {
|
||||||
|
# Mount required stuff as user may not have then in /etc/fstab
|
||||||
|
for x in \
|
||||||
|
"devpts /dev/pts 0755 ,gid=5,mode=0620 devpts" \
|
||||||
|
"tmpfs /dev/shm 1777 ,nodev 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
|
||||||
|
return 0
|
||||||
|
}
|
||||||
18
init.d/dmesg.in
Normal file
18
init.d/dmesg.in
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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 -vserver
|
||||||
|
}
|
||||||
|
|
||||||
|
start()
|
||||||
|
{
|
||||||
|
if [ -n "$dmesg_level" ]; then
|
||||||
|
dmesg -n$dmesg_level
|
||||||
|
fi
|
||||||
|
}
|
||||||
25
init.d/dumpon.in
Normal file
25
init.d/dumpon.in
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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 "Deactiving kernel core dump device"
|
||||||
|
dumpon off
|
||||||
|
eend $?
|
||||||
|
}
|
||||||
109
init.d/fsck.in
Normal file
109
init.d/fsck.in
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
|
|
||||||
|
_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"
|
||||||
|
fi
|
||||||
|
ebegin "Checking local filesystems $check_extra"
|
||||||
|
for p in $fsck_passno; do
|
||||||
|
local IFS="$_IFS"
|
||||||
|
case "$p" in
|
||||||
|
[0-9]*) p="=$p";;
|
||||||
|
esac
|
||||||
|
set -- "$@" $(fstabinfo --passno "$p")
|
||||||
|
unset IFS
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ "$RC_UNAME" = Linux ]; then
|
||||||
|
fsck_opts="$fsck_opts -C0 -T"
|
||||||
|
if [ -z "$fsck_passno" ]; 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 interupted";;
|
||||||
|
*) 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
|
||||||
|
}
|
||||||
80
init.d/hostid.in
Normal file
80
init.d/hostid.in
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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 type 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
|
||||||
|
}
|
||||||
17
init.d/hostname.in
Normal file
17
init.d/hostname.in
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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=${hostname-${HOSTNAME-localhost}}
|
||||||
|
ebegin "Setting hostname to $hostname"
|
||||||
|
hostname "$hostname"
|
||||||
|
eend $? "Failed to set the hostname"
|
||||||
|
}
|
||||||
146
init.d/hwclock.in
Normal file
146
init.d/hwclock.in
Normal file
@@ -0,0 +1,146 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
|
||||||
|
if [ -e /etc/adjtime ] && yesno $clock_adjfile; then
|
||||||
|
_hwclock --adjust $utc_cmd
|
||||||
|
retval=$(($retval + $?))
|
||||||
|
fi
|
||||||
|
|
||||||
|
# If setting UTC, don't bother to run hwclock when first booting
|
||||||
|
# as that's the default
|
||||||
|
if [ "$PREVLEVEL" != N -o \
|
||||||
|
"$utc_cmd" != --utc -o \
|
||||||
|
-n "$clock_args" ];
|
||||||
|
then
|
||||||
|
if yesno $clock_hctosys; then
|
||||||
|
_hwclock --hctosys $utc_cmd $clock_args
|
||||||
|
else
|
||||||
|
_hwclock --systz $utc_cmd $clock_args
|
||||||
|
fi
|
||||||
|
retval=$(($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 || 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
Normal file
159
init.d/ipfw.in
Normal file
@@ -0,0 +1,159 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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}
|
||||||
|
|
||||||
|
opts="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 statefull 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 statefull filter is a bit agressive, 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
|
||||||
|
}
|
||||||
70
init.d/keymaps.in
Normal file
70
init.d/keymaps.in
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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=$(($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 [ -w "$RC_LIBEXECDIR" ]; then
|
||||||
|
mkdir -p "$RC_LIBEXECDIR"/console
|
||||||
|
dumpkeys >"$RC_LIBEXECDIR"/console/keymap
|
||||||
|
fi
|
||||||
|
}
|
||||||
22
init.d/killprocs.in
Normal file
22
init.d/killprocs.in
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
51
init.d/local.in
Normal file
51
init.d/local.in
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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()
|
||||||
|
{
|
||||||
|
einfo "Starting local"
|
||||||
|
|
||||||
|
local file
|
||||||
|
for file in @SYSCONFDIR@/local.d/*.start ; do
|
||||||
|
[ -x "$file" ] && "$file"
|
||||||
|
done
|
||||||
|
|
||||||
|
if type 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 scripts with an .start extension"
|
||||||
|
ewarn "in @SYSCONFDIR@/local.d"
|
||||||
|
local_start
|
||||||
|
fi
|
||||||
|
|
||||||
|
eend 0
|
||||||
|
}
|
||||||
|
|
||||||
|
stop()
|
||||||
|
{
|
||||||
|
einfo "Stopping local"
|
||||||
|
|
||||||
|
local file
|
||||||
|
for file in @SYSCONFDIR@/local.d/*.stop; do
|
||||||
|
[ -x "$file" ] && "$file"
|
||||||
|
done
|
||||||
|
|
||||||
|
if type local_start >/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 scripts with an .stop extension"
|
||||||
|
ewarn "in @SYSCONFDIR@/local.d"
|
||||||
|
local_stop
|
||||||
|
fi
|
||||||
|
|
||||||
|
eend 0
|
||||||
|
}
|
||||||
76
init.d/localmount.in
Normal file
76
init.d/localmount.in
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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 -openvz -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},${x}"
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ "$RC_UNAME" = Linux ]; then
|
||||||
|
no_netdev="-O no_netdev"
|
||||||
|
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()
|
||||||
|
{
|
||||||
|
# We never unmount / or /dev or $RC_SVCDIR
|
||||||
|
local x= no_umounts_r="/|/dev|/dev/.*|${RC_SVCDIR}"
|
||||||
|
no_umounts_r="${no_umounts_r}|/bin|/sbin|/lib|/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/.*"
|
||||||
|
fi
|
||||||
|
no_umounts_r="^($no_umounts_r)$"
|
||||||
|
|
||||||
|
# Flush all pending disk writes now
|
||||||
|
sync; sync
|
||||||
|
|
||||||
|
. "$RC_LIBEXECDIR"/sh/rc-mount.sh
|
||||||
|
|
||||||
|
# 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
|
||||||
|
}
|
||||||
47
init.d/mixer.in
Normal file
47
init.d/mixer.in
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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
|
||||||
|
}
|
||||||
63
init.d/modules.in
Normal file
63
init.d/modules.in
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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=$(($cnt + 1))
|
||||||
|
done
|
||||||
|
einfo "Autoloaded $cnt module(s)"
|
||||||
|
}
|
||||||
40
init.d/mount-ro.in
Normal file
40
init.d/mount-ro.in
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
#!@PREFIX@/sbin/runscript
|
||||||
|
# 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 -prefix -openvz -vserver -lxc
|
||||||
|
}
|
||||||
|
|
||||||
|
start()
|
||||||
|
{
|
||||||
|
# Flush all pending disk writes now
|
||||||
|
sync; sync
|
||||||
|
|
||||||
|
ebegin "Remounting remaining filesystems read-only"
|
||||||
|
# We need the do_unmount function
|
||||||
|
. "$RC_LIBEXECDIR"/sh/rc-mount.sh
|
||||||
|
eindent
|
||||||
|
local m="/dev|/dev/.*|/proc|/proc.*|/sys|/sys/.*|${RC_SVCDIR}" x= fs=
|
||||||
|
m="$m|/bin|/sbin|/lib|/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
|
||||||
|
eoutdent
|
||||||
|
eend $?
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user