summaryrefslogtreecommitdiff
path: root/src/conf_mode
AgeCommit message (Collapse)Author
2020-04-06util: T2226: rewrite system host-name to use cmdThomas Mangin
Previously any failure to set the hostname would have been ignored. Part of the convertion, if the change fail, the commit will fail too.
2020-04-06util: T2226: covert most calls from os.system to utilThomas Mangin
As little change a possible but the function call The behaviour should be totally unchanged.
2020-04-06ipsec: T2230: bugfix code cleanupChristian Poessinger
Commit dbc174d ("ipsec: T2230: move inlined templates to dedicated files") did not remove an inlined function.
2020-04-06lldp: use vyos.version over handcrafted open().read().split() codeChristian Poessinger
2020-04-06ipsec: T2230: bugfix rewriting Jinja2 codeChristian Poessinger
Commit dbc174d ("ipsec: T2230: move inlined templates to dedicated files") did not alter existing code which was used for template processing.
2020-04-05ipsec: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05salt-minion: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05pim: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05mpls: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05igmp: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05ipoe-server: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05pppoe-server: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05pptp: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05router-advert: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05system-login: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05wifi-regdom: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05vrrp: T2230: convert template from dos to unix line endingsChristian Poessinger
2020-04-05vrf: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05bfd: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05tftp-server: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05mdns-repeater: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05https: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05igmp-proxy: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05dynamic-dns: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05syslog: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05broadcast-relay: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05openvpn: improve value help on ipfixChristian Poessinger
2020-04-05flow-accounting: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05lldp: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05snmp: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05sstp: T2230: add Jinja2 trim_blocks Environment optionChristian Poessinger
2020-04-05ssh: T2230: add Jinja2 trim_blocks Environment optionChristian Poessinger
2020-04-05l2tp: T2230: add Jinja2 trim_blocks Environment optionChristian Poessinger
2020-04-05dns-forwarding: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05dhcp-server: T2230: rename template dir from dhcp -> dhcp-serverChristian Poessinger
2020-04-05dhcpv6-server: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05dhcpv6-relay: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05wireless: T2212: bugfix for BF-ANTENNA and SOUNDING-DIMENSION flagsalainlamar
VHT flags deal with many variables which depend on antenna count and supported features. BF-ANTENNA-(2|3|4) and SOUNDING-DIMENSION-(2|3|4) were not dealt with correctly. IEEE 802.11ac (VHT) supports at least 1 antenna and up to 8 antennas at most. The hsotapd VHT flags may support as many but most do not. Therefore, we need to be picky here...
2020-04-05ntp: T2230: fix wrong import statementChristian Poessinger
Commit 579275e ("ntp: T2230: move inlined templates to dedicated files") altered the import statements for forgot to adjust the code.
2020-04-05dhcp-relay: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05sstp: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05dhcp: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05l2tp: convert to PEP8 styleChristian Poessinger
2020-04-05ntp: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05ssh: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05T2230: confert dos to unix line endingsChristian Poessinger
2020-04-05l2tp: T2230: move inlined templates to dedicated filesChristian Poessinger
2020-04-05wireless: T1627: add imports from netaddrChristian Poessinger
Commit 3d978249b313 ("wireless: T1627: move Jinja2 templates to data/templates folder") remove a wildcard import statement which is required for MAC address modification for the AP.
2020-04-05wireguard: T2206: split endpoint node into address and portChristian Poessinger
WireGuard has been the only subsystem combining a remote ip address and a remote port number into a single node. This is bad as there is no possiblity for the XML based input validation for IP address and port numbers. That's the reason the peer endpoint node goets migrated into a peer address and a peer port node utilizing the embedded syntax node checking for IP addresses and port ranges.
2020-04-05wireless: T1627: add missing importChristian Poessinger
Commit 3d978249b313c ("wireless: T1627: move Jinja2 templates to data/templates folder") made use of a new library function (chown_file) from vyos.util, unfortunately the required import was somehow not added into the patch.