diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-20 20:39:34 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-20 20:39:34 +0200 |
commit | f6a22713708902cb564ceda50cd8a393fdfb84f0 (patch) | |
tree | 6771cc3bd21b1b523f246d19e4974f957c4a768d /data/live-build-config | |
parent | cfdae1abacb7e5689e36f8198b7cb92ca6542663 (diff) | |
parent | aa73538c199c60ccf7528f2b00c2c762c2a5c6f5 (diff) | |
download | vyos-build-f6a22713708902cb564ceda50cd8a393fdfb84f0.tar.gz vyos-build-f6a22713708902cb564ceda50cd8a393fdfb84f0.zip |
Merge branch 'debian-bullseye' into current
* debian-bullseye:
T3641: hooks: use Python3 interpreter
vmware: tools.conf is now provided via vyos-1x-vmware package
Docker: T3641: add libiptc-dev build time dependency required by strongSwan
FRR: T3641: fix package build on Bullseye (workaround)
Docker: T3641: update rtrlib version 0.6.3 -> 0.7.0
Debian: T3641: switch to new distro Debian 11 - Bullseye
Diffstat (limited to 'data/live-build-config')
6 files changed, 2 insertions, 95 deletions
diff --git a/data/live-build-config/archives/bullseye.list.chroot b/data/live-build-config/archives/bullseye.list.chroot deleted file mode 100644 index 16eb57e5..00000000 --- a/data/live-build-config/archives/bullseye.list.chroot +++ /dev/null @@ -1 +0,0 @@ -deb http://deb.debian.org/debian/ bullseye main diff --git a/data/live-build-config/archives/bullseye.pref.chroot b/data/live-build-config/archives/bullseye.pref.chroot deleted file mode 100644 index 7c7f38f3..00000000 --- a/data/live-build-config/archives/bullseye.pref.chroot +++ /dev/null @@ -1,47 +0,0 @@ -Package: libyang1 -Pin: release n=bullseye -Pin-Priority: 600 - -Package: ddclient -Pin: release n=bullseye -Pin-Priority: 600 - -Package: podman -Pin: release n=bullseye -Pin-Priority: 600 - -Package: conmon -Pin: release n=bullseye -Pin-Priority: 600 - -Package: containernetworking-plugins -Pin: release n=bullseye -Pin-Priority: 600 - -Package: golang-github-containers-image -Pin: release n=bullseye -Pin-Priority: 600 - -Package: golang-github-containers-common -Pin: release n=bullseye -Pin-Priority: 600 - -Package: libseccomp2 -Pin: release n=bullseye -Pin-Priority: 600 - -Package: runc -Pin: release n=bullseye -Pin-Priority: 600 - -Package: python3-cryptography -Pin: release n=bullseye -Pin-Priority: 600 - -Package: python3-paramiko -Pin: release n=bullseye -Pin-Priority: 600 - -Package: * -Pin: release n=bullseye -Pin-Priority: -10 diff --git a/data/live-build-config/archives/buster-backports.pref.chroot b/data/live-build-config/archives/buster-backports.pref.chroot deleted file mode 100644 index e6eee698..00000000 --- a/data/live-build-config/archives/buster-backports.pref.chroot +++ /dev/null @@ -1,31 +0,0 @@ -Package: nftables -Pin: release n=buster-backports -Pin-Priority: 600 - -Package: libnftables1 -Pin: release n=buster-backports -Pin-Priority: 600 - -Package: libnftnl11 -Pin: release n=buster-backports -Pin-Priority: 600 - -Package: conserver-server -Pin: release n=buster-backports -Pin-Priority: 600 - -Package: conserver-client -Pin: release n=buster-backports -Pin-Priority: 600 - -Package: keepalived -Pin: release n=buster-backports -Pin-Priority: 600 - -Package: wireguard-tools -Pin: release n=buster-backports -Pin-Priority: 600 - -Package: * -Pin: release n=buster-backports -Pin-Priority: -10 diff --git a/data/live-build-config/hooks/live/30-frr-configs.chroot b/data/live-build-config/hooks/live/30-frr-configs.chroot index 3180e36d..a5afed2d 100755 --- a/data/live-build-config/hooks/live/30-frr-configs.chroot +++ b/data/live-build-config/hooks/live/30-frr-configs.chroot @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # For FRR to work in VyOS as expected we need a few fixups # diff --git a/data/live-build-config/hooks/live/30-openvmtools-configs.chroot b/data/live-build-config/hooks/live/30-openvmtools-configs.chroot deleted file mode 100755 index e3762cc9..00000000 --- a/data/live-build-config/hooks/live/30-openvmtools-configs.chroot +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env python - -# open-vm-tools settings - -import re - -vmtools_config = """ -[guestinfo] - poll-interval=30 - -""" - -with open('/etc/vmware-tools/tools.conf', 'w') as f: - f.write(vmtools_config) diff --git a/data/live-build-config/hooks/live/30-strongswan-configs.chroot b/data/live-build-config/hooks/live/30-strongswan-configs.chroot index 59e000a9..a0efc126 100755 --- a/data/live-build-config/hooks/live/30-strongswan-configs.chroot +++ b/data/live-build-config/hooks/live/30-strongswan-configs.chroot @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # The Cisco Unity plugin, that implements a proprietary extension # for IPsec split tunneling, interfers with DMVPN |