Compare commits
13 Commits
openrc-0.1
...
funtoo-ope
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6e6cf26b99 | ||
|
|
58425a972c | ||
|
|
b9204e97a1 | ||
|
|
2cd47b3b4d | ||
|
|
f07d8154a9 | ||
|
|
173001713c | ||
|
|
875ee9529b | ||
|
|
b3f70ca20b | ||
|
|
de36b26d5e | ||
|
|
ae7cbd910a | ||
|
|
92b274a7de | ||
|
|
b3d47d5861 | ||
|
|
f5ba232fb4 |
@@ -1,3 +1,3 @@
|
|||||||
NAME= openrc
|
NAME= openrc
|
||||||
VERSION= 0.10.2
|
VERSION= 0.10
|
||||||
PKG= ${NAME}-${VERSION}
|
PKG= ${NAME}-${VERSION}
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
|
# The consolefont service is not activated by default. If you need to
|
||||||
|
# use it, you should run "rc-update add consolefont boot" as root.
|
||||||
|
#
|
||||||
# consolefont specifies the default font that you'd like Linux to use on the
|
# 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;
|
# 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.
|
# 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.
|
# 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"
|
consolefont="default8x16"
|
||||||
|
|
||||||
# consoletranslation is the charset map file to use. Leave commented to use
|
# consoletranslation is the charset map file to use. Leave commented to use
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
# In other words, you probably should DO NOTHING HERE...
|
# In other words, you probably should DO NOTHING HERE...
|
||||||
|
|
||||||
# Prefer ifconfig over iproute2
|
# Prefer ifconfig over iproute2
|
||||||
#modules="ifconfig"
|
#modules="!iproute2"
|
||||||
|
|
||||||
# You can also specify other modules for an interface
|
# You can also specify other modules for an interface
|
||||||
# In this case we prefer udhcpc over dhcpcd
|
# In this case we prefer udhcpc over dhcpcd
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
|
|
||||||
# If you don't specify an interface then we prefer iproute2 if it's installed
|
# If you don't specify an interface then we prefer iproute2 if it's installed
|
||||||
# To prefer ifconfig over iproute2
|
# To prefer ifconfig over iproute2
|
||||||
#modules="ifconfig"
|
#modules="!iproute2"
|
||||||
|
|
||||||
# For a static configuration, use something like this
|
# For a static configuration, use something like this
|
||||||
# (They all do exactly the same thing btw)
|
# (They all do exactly the same thing btw)
|
||||||
|
|||||||
@@ -5,12 +5,38 @@
|
|||||||
description="Sets the hostname of the machine."
|
description="Sets the hostname of the machine."
|
||||||
|
|
||||||
depend() {
|
depend() {
|
||||||
keyword -lxc
|
need root
|
||||||
}
|
}
|
||||||
|
|
||||||
start()
|
start()
|
||||||
{
|
{
|
||||||
hostname=${hostname-${HOSTNAME-localhost}}
|
hostname=${hostname-${HOSTNAME-localhost}}
|
||||||
|
out=$hostname
|
||||||
|
short=${hostname%%.*}
|
||||||
|
if [ "$short" != "$hostname" ]; then
|
||||||
|
out="$out $short"
|
||||||
|
fi
|
||||||
|
if [ "$nisdomainname" != "" ]; then
|
||||||
|
ebegin "Setting NIS domain name to $nisdomainname"
|
||||||
|
nisdomainname $nisdomainname
|
||||||
|
eend $? "Failed to set the NIS domain name"
|
||||||
|
fi
|
||||||
|
if [ "$short" != "localhost" ]; then
|
||||||
|
out="$out localhost"
|
||||||
|
fi
|
||||||
|
if [ "$hostname" != "localhost.localdomain" ]; then
|
||||||
|
out="$out localhost.localdomain"
|
||||||
|
fi
|
||||||
|
[ -n "$aliases" ] && out="$out $aliases"
|
||||||
|
ebegin "Configuring /etc/hosts"
|
||||||
|
[ -e /etc/hosts ] && sed -i -e '/[[:space:]]*127.0.0.1[[:space:]]/d' -e '/[[:space:]]*::1[[:space:]]/d' /etc/hosts
|
||||||
|
cat <<END >> /etc/hosts
|
||||||
|
127.0.0.1 $out
|
||||||
|
::1 $out
|
||||||
|
END
|
||||||
|
chmod 0644 /etc/hosts
|
||||||
|
eend $?
|
||||||
|
[ "$RC_SYS" = "LXC" ] && return 0
|
||||||
ebegin "Setting hostname to $hostname"
|
ebegin "Setting hostname to $hostname"
|
||||||
hostname "$hostname"
|
hostname "$hostname"
|
||||||
eend $? "Failed to set the hostname"
|
eend $? "Failed to set the hostname"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ depend()
|
|||||||
need fsck
|
need fsck
|
||||||
use lvm modules mtab
|
use lvm modules mtab
|
||||||
after lvm modules
|
after lvm modules
|
||||||
keyword -jail -openvz -vserver -lxc
|
keyword -jail -vserver -lxc
|
||||||
}
|
}
|
||||||
|
|
||||||
start()
|
start()
|
||||||
|
|||||||
@@ -15,6 +15,14 @@ start()
|
|||||||
ebegin "Configuring kernel parameters"
|
ebegin "Configuring kernel parameters"
|
||||||
eindent
|
eindent
|
||||||
|
|
||||||
|
# default sysctl System V max shared memory to 1/4 of RAM:
|
||||||
|
mem_bytes=`awk '/MemTotal:/ { printf "%0.f",$2 * 1024}' /proc/meminfo`
|
||||||
|
mem_max=`expr $mem_bytes / 4`
|
||||||
|
page_size=`getconf PAGE_SIZE`
|
||||||
|
shmall=`expr $mem_bytes / $page_size`
|
||||||
|
sysctl kernel.shmmax=$mem_max > /dev/null
|
||||||
|
sysctl kernel.shmall=$shmall > /dev/null
|
||||||
|
|
||||||
for conf in @SYSCONFDIR@/sysctl.conf @SYSCONFDIR@/sysctl.d/*.conf; do
|
for conf in @SYSCONFDIR@/sysctl.conf @SYSCONFDIR@/sysctl.d/*.conf; do
|
||||||
if [ -r "$conf" ]; then
|
if [ -r "$conf" ]; then
|
||||||
vebegin "applying $conf"
|
vebegin "applying $conf"
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ udhcpc_start()
|
|||||||
if ${sendhost}; then
|
if ${sendhost}; then
|
||||||
local hname="$(hostname)"
|
local hname="$(hostname)"
|
||||||
if [ "${hname}" != "(none)" ] && [ "${hname}" != "localhost" ]; then
|
if [ "${hname}" != "(none)" ] && [ "${hname}" != "localhost" ]; then
|
||||||
args="${args} --hostname='${hname}'"
|
args="${args} -x hostname:'${hname}'"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|||||||
Reference in New Issue
Block a user