[arch-projects] [netctl][PATCH] Add edit subcommand to netctl

2015-01-08 Thread Jouke Witteveen
--- contrib/bash-completion | 4 ++-- contrib/zsh-completion | 5 +++-- docs/netctl.1.txt | 10 +++--- src/netctl.in | 5 - 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/contrib/bash-completion b/contrib/bash-completion index 0e5804f..4f73fab 100644 --

[arch-projects] [netctl][PATCH] Don't look into routes if we have IP=no

2015-01-08 Thread Jouke Witteveen
For IP6=no this also implies we do not wait for DAD. For setting routes but no address, use --- IP=static Address=() Routes=(...) --- --- src/lib/ip | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ip b/src/lib/ip index b6692c3..e74c5bb 100644 --- a/src/lib/ip +++ b/

[arch-projects] [netctl][PATCH] Start DHCPv6 after DAD (FS#43183)

2015-01-08 Thread Jouke Witteveen
We need our link-local address to not be tentative. After DHCPv6 we do not need to do DAD again, as it is part of DHCPv6 per RFT 3315, section 18.1.8. --- src/lib/ip | 26 +- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/lib/ip b/src/lib/ip index b784

[arch-projects] [netctl][PATCH] Unify wired and wireless automatic profile selection (FS#35252)

2015-01-08 Thread Jouke Witteveen
The previous wired automatic profile selection procedure was not properly documented. Now both wired and wireless automatic profile selection use ExcludeAuto= and Priority= --- docs/netctl.profile.5.txt | 15 +++ src/ifplugd.action| 42 +++--