-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Julien Fortin <[email protected]>
- Loading branch information
1 parent
8ebee96
commit 223ba5a
Showing
68 changed files
with
12,806 additions
and
9,723 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ dist/ | |
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
/lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,22 @@ | ||
ifupdown2 (1.2.9-1) unstable; urgency=medium | ||
|
||
* | ||
|
||
-- Julien Fortin <[email protected]> Thu, 11 Jul 2019 23:42:42 +0200 | ||
ifupdown2 (2.0.0-1) unstable; urgency=medium | ||
|
||
* Introduction of the live netlink cache | ||
* Refactoring and PEP8 fixes | ||
* Install systemd ifupdown2.netowrking.service and ifup.service | ||
* Addons: bond: bond-primary attributes (closes: #9) | ||
* Addons: address-virtual: vrrp support | ||
* Addons: address: add arp-accept option | ||
* Addons: tunnel: adding "tunnel-" prefix to every attributes | ||
* Loopback interface won't go down (unless link-down yes) | ||
* Macvlans (address-virtual) can now be configured without ips | ||
* Add support for vxlan multicast group (vxlan-mcastgrp) | ||
* New sets of poliicies: | ||
- bridge polcy for vxlan port: bridge-vxlan-arp-nd-suppres (ON/off) | ||
- bridge policy for vxlan port: bridge_vxlan_port_learning (ON/off) | ||
- bridge policy for vxlan port: | ||
vxlan_bridge_igmp_snooping_enable_port_mcrouter (1/0) | ||
|
||
-- Julien Fortin <[email protected]> Tue, 01 Oct 2019 23:42:42 +0200 | ||
|
||
ifupdown2 (1.2.8-1) unstable; urgency=medium | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,21 +2,23 @@ Source: ifupdown2 | |
Section: admin | ||
Priority: optional | ||
Maintainer: Julien Fortin <[email protected]> | ||
Build-Depends: debhelper (>= 9.20160709), | ||
Build-Depends: debhelper (>=9), | ||
dh-systemd, | ||
dh-python, | ||
python-all, | ||
python-setuptools, | ||
python-docutils | ||
Standards-Version: 4.2.1 | ||
Homepage: https://github.com/cumulusnetworks/ifupdown2 | ||
X-Python-Version: >= 2.7 | ||
|
||
Package: ifupdown2 | ||
Architecture: all | ||
Provides: ifupdown | ||
Conflicts: ifupdown | ||
Replaces: ifupdown | ||
Depends: ${python:Depends}, ${misc:Depends}, iproute2, python-argcomplete, python-ipaddr | ||
Suggests: isc-dhcp-client, bridge-utils, ethtool, python-gvgen, python-mako, python-pkg-resources | ||
Suggests: isc-dhcp-client, bridge-utils, ethtool, python-gvgen, python-mako | ||
Description: Network Interface Management tool similar to ifupdown | ||
ifupdown2 is ifupdown re-written in Python. It replaces ifupdown and provides | ||
the same user interface as ifupdown for network interface configuration. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[Unit] | ||
Description=ifup for %I | ||
After=local-fs.target network-pre.target networking.service systemd-sysctl.service | ||
Before=network.target shutdown.target network-online.target | ||
Conflicts=shutdown.target | ||
BindsTo=sys-subsystem-net-devices-%i.device | ||
After=sys-subsystem-net-devices-%i.device | ||
DefaultDependencies=no | ||
IgnoreOnIsolate=yes | ||
|
||
[Service] | ||
# avoid stopping on shutdown via stopping system-ifup.slice | ||
Slice=system.slice | ||
ExecStart=/sbin/ifup --allow=hotplug %I | ||
ExecStop=/sbin/ifdown %I | ||
RemainAfterExit=true | ||
TimeoutStartSec=2min |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
etc/default/networking /etc/default/ | ||
etc/network/ifupdown2/addons.conf /etc/network/ifupdown2/ | ||
etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,17 @@ override_dh_installman: | |
./ifupdown2/man/genmanpages.sh ./ifupdown2/man ./man | ||
dh_installman | ||
|
||
override_dh_install: | ||
dh_install | ||
mkdir -p debian/ifupdown2/lib/systemd/system/ | ||
install --mode=644 debian/[email protected] debian/ifupdown2/lib/systemd/system/ | ||
|
||
|
||
override_dh_systemd_start: | ||
dh_systemd_start --name=networking --no-start | ||
|
||
override_dh_systemd_enable: | ||
dh_systemd_enable --name=networking | ||
|
||
override_dh_installinit: | ||
dh_installinit --name=networking --no-start | ||
|
||
override_dh_compress: | ||
dh_compress -X.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
version=3 |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.