Added missing and recently approved SPDX licenses
Package updated from fedora. Resolves: RHEL-34685 Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
This commit is contained in:
parent
609188a4a4
commit
7707db2649
51
ifdown-ppp
51
ifdown-ppp
@ -1,51 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
|
|
||||||
cd /etc/sysconfig/network-scripts
|
|
||||||
. ./network-functions
|
|
||||||
|
|
||||||
CONFIG=$1
|
|
||||||
source_config
|
|
||||||
|
|
||||||
if [ "$TYPE" = "xDSL" ] && [ -x /usr/sbin/adsl-stop ] ; then
|
|
||||||
adsl-stop /etc/sysconfig/network-scripts/$CONFIG
|
|
||||||
exit $?
|
|
||||||
fi
|
|
||||||
|
|
||||||
CONFIG=${CONFIG##ifcfg-}
|
|
||||||
|
|
||||||
if [ "${DEMAND}" = "yes" ] && [ -f /var/run/ppp-${CONFIG}.pid ] ; then
|
|
||||||
PID=$(head -1 /var/run/ppp-${CONFIG}.pid)
|
|
||||||
kill -TERM ${PID}
|
|
||||||
sleep 2
|
|
||||||
[ ! -d /proc/${PID} ] && exit 0
|
|
||||||
sleep 5
|
|
||||||
[ ! -d /proc/${PID} ] && exit 0
|
|
||||||
kill -TERM ${PID}
|
|
||||||
[ ! -d /proc/${PID} ] && exit 0
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
file=/var/run/pppwatch-${DEVICE}.pid
|
|
||||||
|
|
||||||
if [ ! -f $file ]; then
|
|
||||||
# ppp isn't running, or we didn't start it
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
PID=$(cat $file)
|
|
||||||
[ -n "${PID}" ] || exit 1
|
|
||||||
|
|
||||||
kill -TERM ${PID} > /dev/null 2>&1
|
|
||||||
[ ! -d /proc/${PID} ] && exit 0
|
|
||||||
sleep 2
|
|
||||||
[ ! -d /proc/${PID} ] && exit 0
|
|
||||||
sleep 5
|
|
||||||
[ ! -d /proc/${PID} ] && exit 0
|
|
||||||
sleep 10
|
|
||||||
[ ! -d /proc/${PID} ] && exit 0
|
|
||||||
|
|
||||||
# killing ppp-watch twice in a row causes it to send a SIGKILL to pppd pgrp
|
|
||||||
kill -TERM ${PID} > /dev/null 2>&1
|
|
||||||
[ ! -d /proc/${PID} ] && exit 0
|
|
||||||
|
|
||||||
exit 1
|
|
157
ifup-ppp
157
ifup-ppp
@ -1,157 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
|
|
||||||
. /etc/init.d/functions
|
|
||||||
|
|
||||||
cd /etc/sysconfig/network-scripts
|
|
||||||
. ./network-functions
|
|
||||||
|
|
||||||
# ifup-post for PPP is handled through /etc/ppp/ip-up
|
|
||||||
if [ "${1}" = daemon ] ; then
|
|
||||||
# we've been called from ppp-watch, so don't invoke it for persistence
|
|
||||||
shift
|
|
||||||
else
|
|
||||||
# just in case a full path to the configuration file is passed in
|
|
||||||
CONFIG=${1##*/} # CONFIG=$(basename $1)
|
|
||||||
[ -f "${CONFIG}" ] || CONFIG=ifcfg-${1}
|
|
||||||
source_config
|
|
||||||
# don't start ppp-watch by xDSL
|
|
||||||
if [ "${DEMAND}" != yes -a "$TYPE" != "xDSL" ] ; then
|
|
||||||
# let ppp-watch do the right thing
|
|
||||||
exec /sbin/ppp-watch "${CONFIG##ifcfg-}" "$2"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
CONFIG=$1
|
|
||||||
[ -f "${CONFIG}" ] || CONFIG=ifcfg-${1}
|
|
||||||
source_config
|
|
||||||
|
|
||||||
if [ -z "${DISCONNECTTIMEOUT}" ]; then
|
|
||||||
DISCONNECTTIMEOUT=2
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "${RETRYTIMEOUT}" ]; then
|
|
||||||
RETRYTIMEOUT=30
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "${IDLETIMEOUT}" ]; then
|
|
||||||
IDLETIMEOUT=600
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "${2}" = "boot" -a "${ONBOOT}" = "no" ]; then
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
[ -x /usr/sbin/pppd ] || {
|
|
||||||
echo $"pppd does not exist or is not executable"
|
|
||||||
echo $"ifup-ppp for ${DEVICE} exiting"
|
|
||||||
/usr/bin/logger -p daemon.info -t ifup-ppp \
|
|
||||||
$"pppd does not exist or is not executable for ${DEVICE}"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# check that xDSL connection
|
|
||||||
if [ "$TYPE" = "xDSL" ] ; then
|
|
||||||
if [ -x /usr/sbin/adsl-start ] ; then
|
|
||||||
adsl-start /etc/sysconfig/network-scripts/$CONFIG
|
|
||||||
exit $?
|
|
||||||
else
|
|
||||||
/usr/bin/logger -p daemon.info -t ifup-ppp \
|
|
||||||
$"adsl-start does not exist or is not executable for ${DEVICE}"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
PEERCONF=/etc/ppp/peers/${DEVNAME}
|
|
||||||
|
|
||||||
if [ "${DEBUG}" = "yes" ]; then
|
|
||||||
CHATDBG="-v"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -f ${PEERCONF} ]; then
|
|
||||||
if [ -z "${WVDIALSECT}" ] ; then
|
|
||||||
CHATSCRIPT=/etc/sysconfig/network-scripts/chat-${DEVNAME}
|
|
||||||
[ -f ${CHATSCRIPT} ] || {
|
|
||||||
echo $"/etc/sysconfig/network-scripts/chat-${DEVNAME} does not exist"
|
|
||||||
echo $"ifup-ppp for ${DEVNAME} exiting"
|
|
||||||
/usr/bin/logger -p daemon.info -t ifup-ppp \
|
|
||||||
$"/etc/sysconfig/network-scripts/chat-${DEVNAME} does not exist for ${DEVICE}"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
/usr/bin/logger -s -p daemon.notice -t ifup-ppp \
|
|
||||||
$"Setting up a new ${PEERCONF} config file"
|
|
||||||
if [ -f /etc/ppp/peers/${DEVICE} ]; then
|
|
||||||
cp -f /etc/ppp/peers/${DEVICE} ${PEERCONF}
|
|
||||||
else
|
|
||||||
touch ${PEERCONF}
|
|
||||||
fi
|
|
||||||
if [ "${WVDIALSECT}" ]; then
|
|
||||||
echo "connect \"/usr/bin/wvdial --remotename ${DEVNAME} --chat '${WVDIALSECT}'\"" >> ${PEERCONF}
|
|
||||||
else
|
|
||||||
echo "connect \"/usr/sbin/chat ${CHATDBG} -f ${CHATSCRIPT}\"" >> ${PEERCONF}
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
opts="lock"
|
|
||||||
if [ "${HARDFLOWCTL}" != no ] ; then
|
|
||||||
opts="$opts modem crtscts"
|
|
||||||
fi
|
|
||||||
if [ "${ESCAPECHARS}" != yes ] ; then
|
|
||||||
opts="$opts asyncmap 00000000"
|
|
||||||
fi
|
|
||||||
if [ "${DEFROUTE}" != no ] ; then
|
|
||||||
# pppd will no longer delete an existing default route
|
|
||||||
# so we have to help it out a little here.
|
|
||||||
DEFRT=$(ip route list match 0.0.0.0/0)
|
|
||||||
[ -n "${DEFRT}" ] && echo "$DEFRT" > /etc/default-routes
|
|
||||||
echo "$DEFRT" | while read spec; do
|
|
||||||
ip route del $spec;
|
|
||||||
done
|
|
||||||
opts="$opts defaultroute"
|
|
||||||
fi
|
|
||||||
if [ "${PEERDNS}" != no ] ; then
|
|
||||||
cp -f /etc/resolv.conf /etc/resolv.conf.save
|
|
||||||
opts="$opts usepeerdns"
|
|
||||||
fi
|
|
||||||
if [ -n "${MRU}" ] ; then
|
|
||||||
opts="$opts mru ${MRU}"
|
|
||||||
fi
|
|
||||||
if [ -n "${MTU}" ] ; then
|
|
||||||
opts="$opts mtu ${MTU}"
|
|
||||||
fi
|
|
||||||
if [ -n "${IPADDR}${REMIP}" ] ; then
|
|
||||||
# if either IP address is set, the following will work.
|
|
||||||
opts="$opts ${IPADDR}:${REMIP}"
|
|
||||||
fi
|
|
||||||
if [ -n "${PAPNAME}" ] ; then
|
|
||||||
opts="$opts user ${PAPNAME} remotename ${DEVNAME}"
|
|
||||||
fi
|
|
||||||
if [ "${DEBUG}" = yes ] ; then
|
|
||||||
opts="$opts debug"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ${DEMAND} = yes ] ; then
|
|
||||||
opts="$opts demand ktune idle ${IDLETIMEOUT} holdoff ${RETRYTIMEOUT}"
|
|
||||||
exec=
|
|
||||||
else
|
|
||||||
opts="$opts nodetach"
|
|
||||||
exec=exec
|
|
||||||
fi
|
|
||||||
|
|
||||||
/usr/bin/logger -p daemon.info -t ifup-ppp \
|
|
||||||
$"pppd started for ${DEVNAME} on ${MODEMPORT} at ${LINESPEED}"
|
|
||||||
|
|
||||||
$exec pppd $opts ${MODEMPORT} ${LINESPEED} \
|
|
||||||
ipparam ${DEVNAME} linkname ${DEVNAME} call ${DEVNAME}\
|
|
||||||
noauth \
|
|
||||||
${PPPOPTIONS} || exit
|
|
||||||
|
|
||||||
if [ "${DEMAND}" = "yes" ] ; then
|
|
||||||
# pppd is a tad slow to write the pid-file.
|
|
||||||
sleep 2
|
|
||||||
if [ -f /var/run/ppp-${DEVNAME}.pid ] ; then
|
|
||||||
REALDEVICE=$(tail -1 /var/run/ppp-${DEVNAME}.pid)
|
|
||||||
/etc/sysconfig/network-scripts/ifup-routes ${REALDEVICE} ${DEVNAME}
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
58
ipv6-down
58
ipv6-down
@ -6,65 +6,9 @@
|
|||||||
#
|
#
|
||||||
# This file should not be modified -- make local changes to
|
# This file should not be modified -- make local changes to
|
||||||
# /etc/ppp/ipv6-down.local instead
|
# /etc/ppp/ipv6-down.local instead
|
||||||
#
|
|
||||||
#
|
|
||||||
# Taken from:
|
|
||||||
# (P) & (C) 2001-2006 by Peter Bieringer <pb@bieringer.de>
|
|
||||||
#
|
|
||||||
# You will find more information on the initscripts-ipv6 homepage at
|
|
||||||
# http://www.deepspace6.net/projects/initscripts-ipv6.html
|
|
||||||
#
|
|
||||||
# RHL integration assistance by Pekka Savola <pekkas@netcore.fi>
|
|
||||||
#
|
|
||||||
# Calling parameters:
|
|
||||||
# $1: interface name
|
|
||||||
# $6: logical interface name (set by pppd option ipparam)
|
|
||||||
#
|
|
||||||
# Version 2006-08-02
|
|
||||||
#
|
|
||||||
# Uses following information from /etc/sysconfig/network-scripts/ifcfg-$1:
|
|
||||||
# IPV6INIT=yes|no: controls IPv6 configuration for this interface
|
|
||||||
#
|
|
||||||
|
|
||||||
|
[ -f /etc/sysconfig/network-scripts/network-functions-ipv6 ] && /etc/ppp/ipv6-down.initscripts "$@"
|
||||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin
|
|
||||||
export PATH
|
|
||||||
|
|
||||||
LOGDEVICE=$6
|
|
||||||
REALDEVICE=$1
|
|
||||||
|
|
||||||
[ -f /etc/sysconfig/network ] || exit 0
|
|
||||||
. /etc/sysconfig/network
|
|
||||||
|
|
||||||
cd /etc/sysconfig/network-scripts
|
|
||||||
. ./network-functions
|
|
||||||
|
|
||||||
CONFIG=$LOGDEVICE
|
|
||||||
[ -f "$CONFIG" ] || CONFIG=ifcfg-$CONFIG
|
|
||||||
source_config
|
|
||||||
|
|
||||||
[ -f /etc/sysconfig/network-scripts/network-functions-ipv6 ] || exit 1
|
|
||||||
. /etc/sysconfig/network-scripts/network-functions-ipv6
|
|
||||||
|
|
||||||
[ -x /etc/ppp/ipv6-down.local ] && /etc/ppp/ipv6-down.local "$@"
|
[ -x /etc/ppp/ipv6-down.local ] && /etc/ppp/ipv6-down.local "$@"
|
||||||
|
|
||||||
|
|
||||||
if [ "$IPV6_CONTROL_RADVD" = "yes" ]; then
|
|
||||||
# Control running radvd
|
|
||||||
ipv6_trigger_radvd down "$IPV6_RADVD_TRIGGER_ACTION" $IPV6_RADVD_PIDFILE
|
|
||||||
fi
|
|
||||||
|
|
||||||
# IPv6 test, no module loaded, exit if system is not IPv6-ready
|
|
||||||
ipv6_test testonly || exit 0
|
|
||||||
|
|
||||||
# Test device status
|
|
||||||
ipv6_test_device_status $REALDEVICE
|
|
||||||
if [ $? != 0 -a $? != 11 ]; then
|
|
||||||
# device doesn't exist or other problem occurs
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Delete all current configured IPv6 addresses on this interface
|
|
||||||
ipv6_cleanup_device $REALDEVICE
|
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
56
ipv6-down.initscripts
Normal file
56
ipv6-down.initscripts
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Taken from:
|
||||||
|
# (P) & (C) 2001-2006 by Peter Bieringer <pb@bieringer.de>
|
||||||
|
#
|
||||||
|
# You will find more information on the initscripts-ipv6 homepage at
|
||||||
|
# http://www.deepspace6.net/projects/initscripts-ipv6.html
|
||||||
|
#
|
||||||
|
# RHL integration assistance by Pekka Savola <pekkas@netcore.fi>
|
||||||
|
#
|
||||||
|
# Calling parameters:
|
||||||
|
# $1: interface name
|
||||||
|
# $6: logical interface name (set by pppd option ipparam)
|
||||||
|
#
|
||||||
|
# Version 2006-08-02
|
||||||
|
#
|
||||||
|
# Uses following information from /etc/sysconfig/network-scripts/ifcfg-$1:
|
||||||
|
# IPV6INIT=yes|no: controls IPv6 configuration for this interface
|
||||||
|
#
|
||||||
|
PATH=/sbin:/usr/sbin:/bin:/usr/bin
|
||||||
|
export PATH
|
||||||
|
|
||||||
|
LOGDEVICE=$6
|
||||||
|
REALDEVICE=$1
|
||||||
|
|
||||||
|
[ -f /etc/sysconfig/network ] || exit 0
|
||||||
|
. /etc/sysconfig/network
|
||||||
|
|
||||||
|
cd /etc/sysconfig/network-scripts
|
||||||
|
. ./network-functions
|
||||||
|
|
||||||
|
CONFIG=$LOGDEVICE
|
||||||
|
[ -f "$CONFIG" ] || CONFIG=ifcfg-$CONFIG
|
||||||
|
source_config
|
||||||
|
|
||||||
|
[ -f /etc/sysconfig/network-scripts/network-functions-ipv6 ] || exit 1
|
||||||
|
. /etc/sysconfig/network-scripts/network-functions-ipv6
|
||||||
|
|
||||||
|
if [ "$IPV6_CONTROL_RADVD" = "yes" ]; then
|
||||||
|
# Control running radvd
|
||||||
|
ipv6_trigger_radvd down "$IPV6_RADVD_TRIGGER_ACTION" $IPV6_RADVD_PIDFILE
|
||||||
|
fi
|
||||||
|
|
||||||
|
# IPv6 test, no module loaded, exit if system is not IPv6-ready
|
||||||
|
ipv6_test testonly || exit 0
|
||||||
|
|
||||||
|
# Test device status
|
||||||
|
ipv6_test_device_status $REALDEVICE
|
||||||
|
if [ $? != 0 -a $? != 11 ]; then
|
||||||
|
# device doesn't exist or other problem occurs
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Delete all current configured IPv6 addresses on this interface
|
||||||
|
ipv6_cleanup_device $REALDEVICE
|
99
ipv6-up
99
ipv6-up
@ -7,105 +7,8 @@
|
|||||||
# This file should not be modified -- make local changes to
|
# This file should not be modified -- make local changes to
|
||||||
# /etc/ppp/ipv6-up.local instead
|
# /etc/ppp/ipv6-up.local instead
|
||||||
#
|
#
|
||||||
# Taken from:
|
|
||||||
# (P) & (C) 2001-2006 by Peter Bieringer <pb@bieringer.de>
|
|
||||||
#
|
|
||||||
# You will find more information on the initscripts-ipv6 homepage at
|
|
||||||
# http://www.deepspace6.net/projects/initscripts-ipv6.html
|
|
||||||
#
|
|
||||||
# RHL integration assistance by Pekka Savola <pekkas@netcore.fi>
|
|
||||||
#
|
|
||||||
# Calling parameters:
|
|
||||||
# $1: interface name
|
|
||||||
# $6: logical interface name (set by pppd option ipparam)
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# Version: 2006-08-02
|
|
||||||
#
|
|
||||||
# Uses following information from "/etc/sysconfig/network":
|
|
||||||
# IPV6_DEFAULTDEV=<device>: controls default route (optional)
|
|
||||||
#
|
|
||||||
# Uses following information from "/etc/sysconfig/network-scripts/ifcfg-$1":
|
|
||||||
# IPV6INIT=yes|no: controls IPv6 configuration for this interface
|
|
||||||
# IPV6ADDR=<IPv6 address>[/<prefix length>]: specify primary static IPv6 address
|
|
||||||
# IPV6ADDR_SECONDARIES="<IPv6 address>[/<prefix length>] ..." (optional)
|
|
||||||
# IPV6_MTU=<MTU for IPv6>: controls IPv6 MTU for this link (optional)
|
|
||||||
#
|
|
||||||
|
|
||||||
|
[ -f /etc/sysconfig/network-scripts/network-functions-ipv6 ] && /etc/ppp/ipv6-up.initscripts "$@"
|
||||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin
|
|
||||||
export PATH
|
|
||||||
|
|
||||||
LOGDEVICE=$6
|
|
||||||
REALDEVICE=$1
|
|
||||||
|
|
||||||
[ -f /etc/sysconfig/network ] || exit 0
|
|
||||||
. /etc/sysconfig/network
|
|
||||||
|
|
||||||
cd /etc/sysconfig/network-scripts
|
|
||||||
. ./network-functions
|
|
||||||
. ./network-functions-ipv6
|
|
||||||
|
|
||||||
CONFIG=$LOGDEVICE
|
|
||||||
[ -f "$CONFIG" ] || CONFIG=ifcfg-$CONFIG
|
|
||||||
source_config
|
|
||||||
|
|
||||||
# Test whether IPv6 configuration is disabled for this interface
|
|
||||||
[[ "$IPV6INIT" = [nN0]* ]] && exit 0
|
|
||||||
|
|
||||||
[ -f /etc/sysconfig/network-scripts/network-functions-ipv6 ] || exit 1
|
|
||||||
. /etc/sysconfig/network-scripts/network-functions-ipv6
|
|
||||||
|
|
||||||
# IPv6 test, module loaded, exit if system is not IPv6-ready
|
|
||||||
ipv6_test || exit 1
|
|
||||||
|
|
||||||
# Test device status
|
|
||||||
ipv6_test_device_status $REALDEVICE
|
|
||||||
if [ $? != 0 -a $? != 11 ]; then
|
|
||||||
# device doesn't exist or other problem occurs
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Setup IPv6 address on specified interface
|
|
||||||
if [ -n "$IPV6ADDR" ]; then
|
|
||||||
ipv6_add_addr_on_device $REALDEVICE $IPV6ADDR || exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Set IPv6 MTU, if given
|
|
||||||
if [ -n "$IPV6_MTU" ]; then
|
|
||||||
ipv6_set_mtu $REALDEVICE $IPV6_MTU
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Setup additional IPv6 addresses from list, if given
|
|
||||||
if [ -n "$IPV6ADDR_SECONDARIES" ]; then
|
|
||||||
for ipv6addr in $IPV6ADDR_SECONDARIES; do
|
|
||||||
ipv6_add_addr_on_device $REALDEVICE $ipv6addr
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Setup default IPv6 route through device
|
|
||||||
if [ "$IPV6_DEFAULTDEV" = "$LOGDEVICE" ]; then
|
|
||||||
ipv6_set_default_route "" "$REALDEVICE" "$REALDEVICE"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Setup additional static IPv6 routes on specified interface, if given
|
|
||||||
if [ -f /etc/sysconfig/static-routes-ipv6 ]; then
|
|
||||||
LC_ALL=C grep -w "^$LOGDEVICE" /etc/sysconfig/static-routes-ipv6 | while read device args; do
|
|
||||||
ipv6_add_route $args $REALDEVICE
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Setup additional static IPv6 routes (newer config style)
|
|
||||||
if [ -f "/etc/sysconfig/network-scripts/route6-$DEVICE" ]; then
|
|
||||||
sed -ne 's/#.*//' -e '/[^[:space:]]/p' "/etc/sysconfig/network-scripts/route6-$DEVICE" | while read line; do
|
|
||||||
/sbin/ip -6 route add $line
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$IPV6_CONTROL_RADVD" = "yes" ]; then
|
|
||||||
# Control running radvd
|
|
||||||
ipv6_trigger_radvd up "$IPV6_RADVD_TRIGGER_ACTION" $IPV6_RADVD_PIDFILE
|
|
||||||
fi
|
|
||||||
|
|
||||||
[ -x /etc/ppp/ipv6-up.local ] && /etc/ppp/ipv6-up.local "$@"
|
[ -x /etc/ppp/ipv6-up.local ] && /etc/ppp/ipv6-up.local "$@"
|
||||||
|
|
||||||
|
99
ipv6-up.initscripts
Normal file
99
ipv6-up.initscripts
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Taken from:
|
||||||
|
# (P) & (C) 2001-2006 by Peter Bieringer <pb@bieringer.de>
|
||||||
|
#
|
||||||
|
# You will find more information on the initscripts-ipv6 homepage at
|
||||||
|
# http://www.deepspace6.net/projects/initscripts-ipv6.html
|
||||||
|
#
|
||||||
|
# RHL integration assistance by Pekka Savola <pekkas@netcore.fi>
|
||||||
|
#
|
||||||
|
# Calling parameters:
|
||||||
|
# $1: interface name
|
||||||
|
# $6: logical interface name (set by pppd option ipparam)
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Version: 2006-08-02
|
||||||
|
#
|
||||||
|
# Uses following information from "/etc/sysconfig/network":
|
||||||
|
# IPV6_DEFAULTDEV=<device>: controls default route (optional)
|
||||||
|
#
|
||||||
|
# Uses following information from "/etc/sysconfig/network-scripts/ifcfg-$1":
|
||||||
|
# IPV6INIT=yes|no: controls IPv6 configuration for this interface
|
||||||
|
# IPV6ADDR=<IPv6 address>[/<prefix length>]: specify primary static IPv6 address
|
||||||
|
# IPV6ADDR_SECONDARIES="<IPv6 address>[/<prefix length>] ..." (optional)
|
||||||
|
# IPV6_MTU=<MTU for IPv6>: controls IPv6 MTU for this link (optional)
|
||||||
|
#
|
||||||
|
|
||||||
|
PATH=/sbin:/usr/sbin:/bin:/usr/bin
|
||||||
|
export PATH
|
||||||
|
|
||||||
|
LOGDEVICE=$6
|
||||||
|
REALDEVICE=$1
|
||||||
|
|
||||||
|
[ -f /etc/sysconfig/network ] || exit 0
|
||||||
|
. /etc/sysconfig/network
|
||||||
|
|
||||||
|
cd /etc/sysconfig/network-scripts
|
||||||
|
. ./network-functions
|
||||||
|
. ./network-functions-ipv6
|
||||||
|
|
||||||
|
CONFIG=$LOGDEVICE
|
||||||
|
[ -f "$CONFIG" ] || CONFIG=ifcfg-$CONFIG
|
||||||
|
source_config
|
||||||
|
|
||||||
|
# Test whether IPv6 configuration is disabled for this interface
|
||||||
|
[[ "$IPV6INIT" = [nN0]* ]] && exit 0
|
||||||
|
|
||||||
|
[ -f /etc/sysconfig/network-scripts/network-functions-ipv6 ] || exit 1
|
||||||
|
. /etc/sysconfig/network-scripts/network-functions-ipv6
|
||||||
|
|
||||||
|
# IPv6 test, module loaded, exit if system is not IPv6-ready
|
||||||
|
ipv6_test || exit 1
|
||||||
|
|
||||||
|
# Test device status
|
||||||
|
ipv6_test_device_status $REALDEVICE
|
||||||
|
if [ $? != 0 -a $? != 11 ]; then
|
||||||
|
# device doesn't exist or other problem occurs
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Setup IPv6 address on specified interface
|
||||||
|
if [ -n "$IPV6ADDR" ]; then
|
||||||
|
ipv6_add_addr_on_device $REALDEVICE $IPV6ADDR || exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Set IPv6 MTU, if given
|
||||||
|
if [ -n "$IPV6_MTU" ]; then
|
||||||
|
ipv6_set_mtu $REALDEVICE $IPV6_MTU
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Setup additional IPv6 addresses from list, if given
|
||||||
|
if [ -n "$IPV6ADDR_SECONDARIES" ]; then
|
||||||
|
for ipv6addr in $IPV6ADDR_SECONDARIES; do
|
||||||
|
ipv6_add_addr_on_device $REALDEVICE $ipv6addr
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Setup default IPv6 route through device
|
||||||
|
if [ "$IPV6_DEFAULTDEV" = "$LOGDEVICE" ]; then
|
||||||
|
ipv6_set_default_route "" "$REALDEVICE" "$REALDEVICE"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Setup additional static IPv6 routes on specified interface, if given
|
||||||
|
if [ -f /etc/sysconfig/static-routes-ipv6 ]; then
|
||||||
|
LC_ALL=C grep -w "^$LOGDEVICE" /etc/sysconfig/static-routes-ipv6 | while read device args; do
|
||||||
|
ipv6_add_route $args $REALDEVICE
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Setup additional static IPv6 routes (newer config style)
|
||||||
|
if [ -f "/etc/sysconfig/network-scripts/route6-$DEVICE" ]; then
|
||||||
|
sed -ne 's/#.*//' -e '/[^[:space:]]/p' "/etc/sysconfig/network-scripts/route6-$DEVICE" | while read line; do
|
||||||
|
/sbin/ip -6 route add $line
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$IPV6_CONTROL_RADVD" = "yes" ]; then
|
||||||
|
# Control running radvd
|
||||||
|
ipv6_trigger_radvd up "$IPV6_RADVD_TRIGGER_ACTION" $IPV6_RADVD_PIDFILE
|
||||||
|
fi
|
49
ppp.spec
49
ppp.spec
@ -18,17 +18,9 @@ Name: ppp
|
|||||||
# These all need to be patched (if necessary) and rebuilt for new
|
# These all need to be patched (if necessary) and rebuilt for new
|
||||||
# versions of ppp.
|
# versions of ppp.
|
||||||
Version: 2.5.0
|
Version: 2.5.0
|
||||||
Release: 5%{?dist}
|
Release: 8%{?dist}
|
||||||
Summary: The Point-to-Point Protocol daemon
|
Summary: The Point-to-Point Protocol daemon
|
||||||
# Add licenses:
|
License: bsd-3-clause AND zlib AND licenseref-fedora-public-domain AND bsd-attribution-hpnd-disclaimer AND bsd-4.3tahoe AND bsd-4-clause-uc AND apache-2.0 AND lgpl-2.0-or-later AND (gpl-2.0-or-later OR bsd-2-clause OR bsd-3-clause OR bsd-4-clause) AND gpl-2.0-or-later AND xlock AND gpl-1.0-or-later AND mackerras-3-clause-acknowledgment AND mackerras-3-clause AND hpnd-fenneberg-Livingston AND sun-ppp AND hpnd-inria-imag AND sun-ppp-2000
|
||||||
# https://gitlab.com/fedora/legal/fedora-license-data/-/issues/441
|
|
||||||
# https://gitlab.com/fedora/legal/fedora-license-data/-/issues/442
|
|
||||||
# https://gitlab.com/fedora/legal/fedora-license-data/-/issues/443
|
|
||||||
# https://gitlab.com/fedora/legal/fedora-license-data/-/issues/444
|
|
||||||
# https://gitlab.com/fedora/legal/fedora-license-data/-/issues/445
|
|
||||||
# https://gitlab.com/fedora/legal/fedora-license-data/-/issues/446
|
|
||||||
# https://gitlab.com/fedora/legal/fedora-license-data/-/issues/447
|
|
||||||
License: bsd-3-clause AND zlib AND licenseref-fedora-public-domain AND bsd-attribution-hpnd-disclaimer AND bsd-4.3tahoe AND bsd-4-clause-uc AND apache-2.0 AND lgpl-2.0-or-later AND (gpl-2.0-or-later OR bsd-2-clause OR bsd-3-clause OR bsd-4-clause) AND gpl-2.0-or-later AND xlock AND gpl-1.0-or-later
|
|
||||||
URL: http://www.samba.org/ppp
|
URL: http://www.samba.org/ppp
|
||||||
|
|
||||||
Source0: https://github.com/paulusmack/ppp/archive/ppp-%{version}.tar.gz
|
Source0: https://github.com/paulusmack/ppp/archive/ppp-%{version}.tar.gz
|
||||||
@ -41,9 +33,9 @@ Source6: ip-up
|
|||||||
Source7: ip-up.ipv6to4
|
Source7: ip-up.ipv6to4
|
||||||
Source8: ipv6-down
|
Source8: ipv6-down
|
||||||
Source9: ipv6-up
|
Source9: ipv6-up
|
||||||
Source10: ifup-ppp
|
|
||||||
Source11: ifdown-ppp
|
|
||||||
Source12: ppp-watch.tar.xz
|
Source12: ppp-watch.tar.xz
|
||||||
|
Source13: ipv6-up.initscripts
|
||||||
|
Source14: ipv6-down.initscripts
|
||||||
|
|
||||||
# Fedora-specific
|
# Fedora-specific
|
||||||
Patch0: ppp-2.5.0-use-change-resolv-function.patch
|
Patch0: ppp-2.5.0-use-change-resolv-function.patch
|
||||||
@ -72,6 +64,9 @@ Requires: systemd
|
|||||||
Requires(pre): /usr/bin/getent
|
Requires(pre): /usr/bin/getent
|
||||||
Requires(pre): /usr/sbin/groupadd
|
Requires(pre): /usr/sbin/groupadd
|
||||||
|
|
||||||
|
# Subpackage removed and obsoleted in F40
|
||||||
|
Obsoletes: network-scripts-ppp < %{version}-%{release}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The ppp package contains the PPP (Point-to-Point Protocol) daemon and
|
The ppp package contains the PPP (Point-to-Point Protocol) daemon and
|
||||||
documentation for PPP support. The PPP protocol provides a method for
|
documentation for PPP support. The PPP protocol provides a method for
|
||||||
@ -79,15 +74,6 @@ transmitting datagrams over serial point-to-point links. PPP is
|
|||||||
usually used to dial in to an ISP (Internet Service Provider) or other
|
usually used to dial in to an ISP (Internet Service Provider) or other
|
||||||
organization over a modem and phone line.
|
organization over a modem and phone line.
|
||||||
|
|
||||||
%package -n network-scripts-%{name}
|
|
||||||
Summary: PPP legacy network service support
|
|
||||||
Requires: network-scripts
|
|
||||||
Supplements: (%{name} and network-scripts)
|
|
||||||
|
|
||||||
%description -n network-scripts-%{name}
|
|
||||||
This provides the ifup and ifdown scripts for use with the legacy network
|
|
||||||
service.
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Headers for ppp plugin development
|
Summary: Headers for ppp plugin development
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
@ -136,10 +122,8 @@ install -p %{SOURCE6} %{buildroot}%{_sysconfdir}/ppp/ip-up
|
|||||||
install -p %{SOURCE7} %{buildroot}%{_sysconfdir}/ppp/ip-up.ipv6to4
|
install -p %{SOURCE7} %{buildroot}%{_sysconfdir}/ppp/ip-up.ipv6to4
|
||||||
install -p %{SOURCE8} %{buildroot}%{_sysconfdir}/ppp/ipv6-down
|
install -p %{SOURCE8} %{buildroot}%{_sysconfdir}/ppp/ipv6-down
|
||||||
install -p %{SOURCE9} %{buildroot}%{_sysconfdir}/ppp/ipv6-up
|
install -p %{SOURCE9} %{buildroot}%{_sysconfdir}/ppp/ipv6-up
|
||||||
|
install -p %{SOURCE13} %{buildroot}%{_sysconfdir}/ppp/ipv6-down.initscripts
|
||||||
install -d %{buildroot}%{_sysconfdir}/sysconfig/network-scripts/
|
install -p %{SOURCE14} %{buildroot}%{_sysconfdir}/ppp/ipv6-up.initscripts
|
||||||
install -p %{SOURCE10} %{buildroot}%{_sysconfdir}/sysconfig/network-scripts/ifup-ppp
|
|
||||||
install -p %{SOURCE11} %{buildroot}%{_sysconfdir}/sysconfig/network-scripts/ifdown-ppp
|
|
||||||
|
|
||||||
# ghosts
|
# ghosts
|
||||||
mkdir -p %{buildroot}%{_rundir}/ppp
|
mkdir -p %{buildroot}%{_rundir}/ppp
|
||||||
@ -164,7 +148,9 @@ mkdir -p %{buildroot}%{_rundir}/ppp
|
|||||||
%{_sysconfdir}/ppp/ip-up.ipv6to4
|
%{_sysconfdir}/ppp/ip-up.ipv6to4
|
||||||
%{_sysconfdir}/ppp/ip-down.ipv6to4
|
%{_sysconfdir}/ppp/ip-down.ipv6to4
|
||||||
%{_sysconfdir}/ppp/ipv6-up
|
%{_sysconfdir}/ppp/ipv6-up
|
||||||
|
%{_sysconfdir}/ppp/ipv6-up.initscripts
|
||||||
%{_sysconfdir}/ppp/ipv6-down
|
%{_sysconfdir}/ppp/ipv6-down
|
||||||
|
%{_sysconfdir}/ppp/ipv6-down.initscripts
|
||||||
%{_sysconfdir}/ppp/openssl.cnf
|
%{_sysconfdir}/ppp/openssl.cnf
|
||||||
%{_mandir}/man8/chat.8*
|
%{_mandir}/man8/chat.8*
|
||||||
%{_mandir}/man8/pppd.8*
|
%{_mandir}/man8/pppd.8*
|
||||||
@ -187,16 +173,21 @@ mkdir -p %{buildroot}%{_rundir}/ppp
|
|||||||
%config(noreplace) %{_sysconfdir}/logrotate.d/ppp
|
%config(noreplace) %{_sysconfdir}/logrotate.d/ppp
|
||||||
%{_tmpfilesdir}/ppp.conf
|
%{_tmpfilesdir}/ppp.conf
|
||||||
|
|
||||||
%files -n network-scripts-%{name}
|
|
||||||
%{_sysconfdir}/sysconfig/network-scripts/ifdown-ppp
|
|
||||||
%{_sysconfdir}/sysconfig/network-scripts/ifup-ppp
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_includedir}/pppd
|
%{_includedir}/pppd
|
||||||
%doc PLUGINS
|
%doc PLUGINS
|
||||||
%{_libdir}/pkgconfig/pppd.pc
|
%{_libdir}/pkgconfig/pppd.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Apr 14 2024 Jaroslav Škarvada <jskarvad@redhat.com> - 2.5.0-8
|
||||||
|
- Added missing and recently approved SPDX licenses
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Kalev Lember <klember@redhat.com> - 2.5.0-7
|
||||||
|
- Obsolete dropped network-scripts-ppp subpackage
|
||||||
|
|
||||||
|
* Tue Feb 13 2024 Jaroslav Škarvada <jskarvad@redhat.com> - 2.5.0-6
|
||||||
|
- Dropped network scripts
|
||||||
|
|
||||||
* Wed Jan 24 2024 Jaroslav Škarvada <jskarvad@redhat.com> - 2.5.0-5
|
* Wed Jan 24 2024 Jaroslav Škarvada <jskarvad@redhat.com> - 2.5.0-5
|
||||||
- Converted license to SPDX
|
- Converted license to SPDX
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user