1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-23 06:50:21 +03:00

Eventscripts - use set_proc() rather than accessing /proc directly

Signed-off-by: Martin Schwenke <martin@meltin.net>

(This used to be ctdb commit bdb4cdaf2aed79c8de6a8db8c01685b242808310)
This commit is contained in:
Martin Schwenke 2012-03-20 16:20:10 +11:00
parent 4f65737809
commit 020c8190c5

View File

@ -286,8 +286,8 @@ case "$1" in
# make sure that we only respond to ARP messages from the NIC
# where a particular ip address is associated.
[ -f /proc/sys/net/ipv4/conf/all/arp_filter ] && {
echo 1 > /proc/sys/net/ipv4/conf/all/arp_filter
get_proc sys/net/ipv4/conf/all/arp_filter >/dev/null 2>&1 && {
set_proc sys/net/ipv4/conf/all/arp_filter 1
}
;;
@ -305,7 +305,7 @@ case "$1" in
add_routing_for_ip "$iface" "$ip"
# flush our route cache
echo 1 > /proc/sys/net/ipv4/route/flush
set_proc sys/net/ipv4/route/flush 1
ctdb gratiousarp "$ip" "$iface"
;;
@ -320,7 +320,7 @@ case "$1" in
add_routing_for_ip "$niface" "$ip"
# flush our route cache
echo 1 > /proc/sys/net/ipv4/route/flush
set_proc sys/net/ipv4/route/flush 1
ctdb gratiousarp "$ip" "$niface"
tickle_tcp_connections "$ip"