Compare commits

...

11 Commits

Author SHA1 Message Date
Oleg Vinichenko
52f593062a FL-659: add support for building with ncurses[tinfo} enabled 2013-08-05 18:38:00 +00:00
William Hubbs
45209d7b95 firewalld: fix firewall-cmd dependency
This should be "program" instead of "program start".
2012-12-27 23:17:27 +02:00
Doug Goldstein
c9d06219c7 oldnet: add firewalld support 2012-12-27 23:17:20 +02:00
Daniel Robbins
6e6cf26b99 FL-227: add aliases variable for /etc/conf.d/hostname aliases 2012-11-25 19:19:35 +00:00
Daniel Robbins
58425a972c Merge branch '0.10-rebase' of git.funtoo.org:openrc into 0.10-rebase 2012-11-25 19:10:07 +00:00
Daniel Robbins
b9204e97a1 FL-157: check for /etc/hosts existing first before removing entries 2012-11-25 19:05:09 +00:00
Oleg Vinichenko
2cd47b3b4d FL-74: localmount, support filesystem mounting on openvz 2012-08-27 06:40:12 +03:00
Daniel Robbins
f07d8154a9 Add support for setting the NIS domain name. For FL-28 2012-06-12 02:22:03 +00:00
Daniel Robbins
173001713c FL-25: make sysctl shm settings not show up on boot 2012-06-11 17:13:55 +00:00
Daniel Robbins
875ee9529b auto-update /etc/hosts for issue FL-18 2012-06-10 05:10:34 +00:00
Daniel Robbins
b3f70ca20b address FL-25 and attempt to increase sysV shared memory limit to 25% of RAM by default 2012-06-10 02:28:38 +00:00
7 changed files with 87 additions and 3 deletions

View File

@@ -1111,6 +1111,13 @@
# Hypothetical network card that requires a change-eeprom toggle to enable flashing # Hypothetical network card that requires a change-eeprom toggle to enable flashing
#ethtool_order_eth0="change-eeprom flash change pause coalesce ring offload nfc rxfh-indir ntuple" #ethtool_order_eth0="change-eeprom flash change pause coalesce ring offload nfc rxfh-indir ntuple"
#-----------------------------------------------------------------------------
# Firewalld support
# If you are using the firewalld daemon to configure your firewall
# settings and you have specific zones you want to apply to your
# interfaces, you can do this here.
#firewalld_zone_eth0="myzone"
############################################################################## ##############################################################################
# ADVANCED CONFIGURATION # ADVANCED CONFIGURATION
# #

View File

@@ -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"

View File

@@ -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()

View File

@@ -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"

View File

@@ -1,5 +1,10 @@
ifeq (${MKTERMCAP},ncurses) ifeq (${MKTERMCAP},ncurses)
LTERMCAP:= $(shell pkg-config ncurses --libs 2> /dev/null)
ifeq ($(LTERMCAP),)
LIBTERMCAP?= -lncurses LIBTERMCAP?= -lncurses
else
LIBTERMCAP?= $(LTERMCAP)
endif
CPPFLAGS+= -DHAVE_TERMCAP CPPFLAGS+= -DHAVE_TERMCAP
LDADD+= ${LIBTERMCAP} LDADD+= ${LIBTERMCAP}
else ifeq (${MKTERMCAP},termcap) else ifeq (${MKTERMCAP},termcap)

View File

@@ -13,7 +13,7 @@ SRCS-Linux= iwconfig.sh.in
INC-Linux= adsl.sh apipa.sh arping.sh bonding.sh br2684ctl.sh bridge.sh \ INC-Linux= adsl.sh apipa.sh arping.sh bonding.sh br2684ctl.sh bridge.sh \
ccwgroup.sh clip.sh ethtool.sh iproute2.sh ifplugd.sh ip6to4.sh \ ccwgroup.sh clip.sh ethtool.sh iproute2.sh ifplugd.sh ip6to4.sh \
ipppd.sh iwconfig.sh netplugd.sh pppd.sh pump.sh tuntap.sh udhcpc.sh \ ipppd.sh iwconfig.sh netplugd.sh pppd.sh pump.sh tuntap.sh udhcpc.sh \
vlan.sh macvlan.sh ip6rd.sh vlan.sh macvlan.sh ip6rd.sh firewalld.sh
SRCS-NetBSD= SRCS-NetBSD=
INC-NetBSD= ifwatchd.sh INC-NetBSD= ifwatchd.sh

38
net/firewalld.sh Normal file
View File

@@ -0,0 +1,38 @@
# Copyright (c) 2012 Doug Goldstein <cardoe@cardoe.com>
# Released under the 2-clause BSD license.
firewalld_depend()
{
after interface
before dhcp
program firewall-cmd
[ "$IFACE" != "lo" ] && need firewalld
}
_config_vars="$_config_vars firewalld_zone"
firewalld_post_start()
{
local firewalld_zone=
eval firewalld_zone=\$firewalld_zone_${IFVAR}
_exists || return 0
if [ "${IFACE}" != "lo" ]; then
firewall-cmd --zone="${firewalld_zone}" \
--change-interface="${IFACE}" > /dev/null 2>&1
fi
return 0
}
firewalld_pre_stop()
{
_exists || return 0
if [ "${IFACE}" != "lo" ]; then
firewall-cmd --remove-interface="${IFACE}" > /dev/null 2>&1
fi
return 0
}