This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Network control utility based on systemd".
The branch, master has been updated via 0b4246c76c37d45666f1a5b739bb3d1e1a371ea8 (commit) via 6d83ce0798af47143a9698847f05b272e3fcb7e0 (commit) via 23ae1791917d48da7237d918f19dfa55a6a13d8f (commit) via 965c476fd5cd10885a7708f0c111c51e697d6694 (commit) via e5ac40075728c92775ce974dcdaf1a60a9533e4b (commit) via 79ef3fb789375dfe4f191fd42d8cf7ff2dbb8cc5 (commit) via de8c80f6748f1202d5b28594f4b8195417f4e219 (commit) via 3b77f8666f19ca2ed1fc242d05d88706b8261863 (commit) via f64a2f25d435edd3507e477a25cb4c4e15297794 (commit) via 349f9b0360f6f7305475fca57656f9e187d859d2 (commit) via 58e8dd21f999357497bbbe5c914b2d50f0a07e1d (commit) via 7f497011aee03f141a5bd055222ca337383f43a3 (commit) from 03afcdce237b2dc52a6c1fea72b715cf6c34bf05 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 0b4246c76c37d45666f1a5b739bb3d1e1a371ea8 Author: Jouke Witteveen j.witteveen@gmail.com Date: Tue Dec 3 12:04:58 2013 -0600
Add macvlan connection support
commit 6d83ce0798af47143a9698847f05b272e3fcb7e0 Author: Jouke Witteveen j.witteveen@gmail.com Date: Sat Mar 1 21:44:34 2014 +0100
Minor improvements to bridge/vlan code
commit 23ae1791917d48da7237d918f19dfa55a6a13d8f Author: ajs124_desk ajs@online.de Date: Sat Mar 1 21:42:52 2014 +0100
port bonding from ifenslave to iproute2
Ifenslave is deprecated according to the kernel documentation: https://www.kernel.org/doc/Documentation/networking/bonding.txt It also added an additional, unnecessary dependency. I tried to update the documentation to reflect this change.
commit 965c476fd5cd10885a7708f0c111c51e697d6694 Author: Jouke Witteveen j.witteveen@gmail.com Date: Sat Mar 1 21:10:38 2014 +0100
Update bash-completion for netctl-auto
commit e5ac40075728c92775ce974dcdaf1a60a9533e4b Author: Matt Bray mattjbray@gmail.com Date: Thu Jan 9 16:45:27 2014 +0000
Update zsh-completion for netctl-auto
commit 79ef3fb789375dfe4f191fd42d8cf7ff2dbb8cc5 Author: Sebastian Wicki gandro@gmx.net Date: Sun Feb 2 18:32:14 2014 +0100
Prohibit user invocation of netctl-auto [start|stop]
Instead of using systemctl to manage the netctl-auto service, some users try to invoke the start/stop commands of netctl-auto directly. Although this behaviour is explicitly discouraged in the man page, this seems to be a source of confusion.
The changes introduced in de8c80f will cause other netctl-auto commands to fail if the netctl-auto service was not spawned by systemd. Therefore, this change emits an error message if netctl-auto [start|stop] is invoked from an interactive terminal.
commit de8c80f6748f1202d5b28594f4b8195417f4e219 Author: Sebastian Wicki gandro@gmx.net Date: Sun Feb 2 16:55:58 2014 +0100
Change how netctl-auto looks for active interfaces
Instead of searching for wpa_actiond pid files, the netctl-auto utility now looks for running systemd netctl-auto units.
commit 3b77f8666f19ca2ed1fc242d05d88706b8261863 Author: Jouke Witteveen j.witteveen@gmail.com Date: Thu Feb 27 13:58:57 2014 +0100
Introduce a new PPP connection type
This should at some point take care of most PPP use cases, but currently is just a frontend to pppoe. The main difference is that the new connection type keeps track of profiles by their 'dynamic' interface name. Hence it is not wise to use both pppoe and ppp profiles.
commit f64a2f25d435edd3507e477a25cb4c4e15297794 Author: Ivan Shapovalov intelfx100@gmail.com Date: Tue Feb 25 15:26:17 2014 +0100
wifi-menu: handle interface's rfkill switch
Temporarily enable the interface's rfkill (if specified) before issuing a scan and restore its state afterwards.
commit 349f9b0360f6f7305475fca57656f9e187d859d2 Author: Jouke Witteveen j.witteveen@gmail.com Date: Tue Feb 25 15:22:31 2014 +0100
wifi-menu: generate keys in proper quoting syntax
commit 58e8dd21f999357497bbbe5c914b2d50f0a07e1d Author: Lasse Dalegaard dalegaard@gmail.com Date: Tue Feb 25 14:31:31 2014 +0100
Make dhcpcd/dhclient pid files world readable
Needed since 8a41497.
commit 7f497011aee03f141a5bd055222ca337383f43a3 Author: Jouke Witteveen j.witteveen@gmail.com Date: Tue Feb 25 14:22:22 2014 +0100
Factor out DHCP client support
Support for additional DHCP clients is now easy to add.
-----------------------------------------------------------------------
Summary of changes: Makefile | 3 +- README | 2 - contrib/PKGBUILD.in | 1 - contrib/bash-completion | 9 ++- contrib/zsh-completion | 23 +++++--- docs/examples/macvlan-dhcp | 10 ++++ docs/examples/{vlan-static => macvlan-static} | 11 ++-- docs/netctl.profile.5.txt | 56 ++++++++++++++---- src/lib/connections/README | 2 +- src/lib/connections/bond | 8 +-- src/lib/connections/bridge | 2 +- src/lib/connections/macvlan | 31 ++++++++++ src/lib/connections/ppp | 28 +++++++++ src/lib/connections/vlan | 3 + src/lib/dhcp/README | 34 +++++++++++ src/lib/dhcp/dhclient | 28 +++++++++ src/lib/dhcp/dhcpcd | 29 ++++++++++ src/lib/ip | 83 ++++++++------------------- src/lib/network | 2 +- src/netctl-auto | 18 +++--- src/wifi-menu | 48 +++++++++++++--- 21 files changed, 321 insertions(+), 110 deletions(-) create mode 100644 docs/examples/macvlan-dhcp copy docs/examples/{vlan-static => macvlan-static} (54%) create mode 100644 src/lib/connections/macvlan create mode 100644 src/lib/connections/ppp create mode 100644 src/lib/dhcp/README create mode 100644 src/lib/dhcp/dhclient create mode 100644 src/lib/dhcp/dhcpcd
hooks/post-receive
arch-projects@lists.archlinux.org