diff options
author | Munechika SUMIKAWA <sumikawa@FreeBSD.org> | 2009-07-21 07:38:28 +0000 |
---|---|---|
committer | Munechika SUMIKAWA <sumikawa@FreeBSD.org> | 2009-07-21 07:38:28 +0000 |
commit | 4866947d9edb5ca30e6246c114e2ef31f2fddb83 (patch) | |
tree | d8582ab67428de87e442d7f73aa1d68b9c3d9ca4 /net/miredo/files/patch-misc-client-hook.bsd | |
parent | Repo-copied from mysql51-scripts. (diff) |
Upgrade to 1.1.7.
Notes
Notes:
svn path=/head/; revision=238151
Diffstat (limited to 'net/miredo/files/patch-misc-client-hook.bsd')
-rw-r--r-- | net/miredo/files/patch-misc-client-hook.bsd | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/net/miredo/files/patch-misc-client-hook.bsd b/net/miredo/files/patch-misc-client-hook.bsd deleted file mode 100644 index 45980442de54..000000000000 --- a/net/miredo/files/patch-misc-client-hook.bsd +++ /dev/null @@ -1,28 +0,0 @@ ---- misc/client-hook.bsd.orig 2009-04-10 01:34:15.000000000 +0900 -+++ misc/client-hook.bsd 2009-06-23 17:15:54.000000000 +0900 -@@ -18,21 +18,13 @@ - - "$IFCONFIG" "$IFACE" "$STATE" - --# FIXME: untested, certainly syntaxically incorrect --"$ROUTE" flush dev "$IFACE" 2>/dev/null --"$IFCONFIG" "$IFACE" flush 2>/dev/null -- - case "$STATE" in - up) -- # FIXME: untested, most likely syntaxically incorrect -- "$IFCONFIG" "$IFACE" inet6 add "${LLADDRESS}/64" -- "$IFCONFIG" "$IFACE" inet6 add "${ADDRESS}/32" -- "$ROUTE" add -inet6 default "${LLADDRESS}%${IFACE}" -+ "$IFCONFIG" "$IFACE" inet6 "${LLADDRESS}/64" -+ "$IFCONFIG" "$IFACE" inet6 "${ADDRESS}/128" -+ "$ROUTE" delete -inet6 default -+ "$ROUTE" add -inet6 default -iface "$IFACE" - ;; - esac - --# TODO: MacOS X should probably gets its fork of the script --# MacOS X DNS resolver must be reloaded when IPv6 availability changes --#/sbin/killall -HUP something -- - exit 0 |