diff options
author | Roy Marples <uberlord@gentoo.org> | 2006-08-13 19:33:48 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2006-08-13 19:33:48 +0000 |
commit | a8d78582e005177003cd23277b9ab3d7191f6fce (patch) | |
tree | d2aff9bf4f93b0e156af28c3def8151dcc7777bb /net-misc/dhcpcd/files | |
parent | Fix #139086, #139973, #140679, #143804. (diff) | |
download | gentoo-2-a8d78582e005177003cd23277b9ab3d7191f6fce.tar.gz gentoo-2-a8d78582e005177003cd23277b9ab3d7191f6fce.tar.bz2 gentoo-2-a8d78582e005177003cd23277b9ab3d7191f6fce.zip |
Ensure that interface is always up as future dhcpcd's will do this
automatically and probably drop the -o option. Punt old versions
(Portage version: 2.1.1_pre4-r4)
Diffstat (limited to 'net-misc/dhcpcd/files')
-rw-r--r-- | net-misc/dhcpcd/files/dhcpcd-2.0.0-alwaysup.patch | 11 | ||||
-rw-r--r-- | net-misc/dhcpcd/files/dhcpcd-2.0.8-alwaysup.patch | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/net-misc/dhcpcd/files/dhcpcd-2.0.0-alwaysup.patch b/net-misc/dhcpcd/files/dhcpcd-2.0.0-alwaysup.patch new file mode 100644 index 000000000000..71356383bdbf --- /dev/null +++ b/net-misc/dhcpcd/files/dhcpcd-2.0.0-alwaysup.patch @@ -0,0 +1,11 @@ +--- src/dhcpcd.c (revision 69) ++++ src/dhcpcd.c (working copy) +@@ -75,7 +75,7 @@ + char *ConfigDir = CONFIG_DIR; + int SetDHCPDefaultRoutes= 1; + int Persistent = 0; +-int DownIfaceOnStop = 1; ++int DownIfaceOnStop = 0; + + #if 0 + unsigned char ClientMACaddr[ETH_ALEN]; diff --git a/net-misc/dhcpcd/files/dhcpcd-2.0.8-alwaysup.patch b/net-misc/dhcpcd/files/dhcpcd-2.0.8-alwaysup.patch new file mode 100644 index 000000000000..5a33a3ec7e2d --- /dev/null +++ b/net-misc/dhcpcd/files/dhcpcd-2.0.8-alwaysup.patch @@ -0,0 +1,11 @@ +--- src/dhcpcd.c (revision 69) ++++ src/dhcpcd.c (working copy) +@@ -76,7 +76,7 @@ + char *ConfigDir = CONFIG_DIR; + int SetDHCPDefaultRoutes= 1; + int Persistent = 0; +-int DownIfaceOnStop = 1; ++int DownIfaceOnStop = 0; + int DoARP = 1; + + #if 0 |