summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorAndrii Andrieiev <a.andrieiev@sentrium.io>2023-10-27 14:17:09 +0300
committerAndrii Andrieiev <a.andrieiev@sentrium.io>2023-10-27 14:17:09 +0300
commit9eea9958697e81c8b49d69ce9cbf4d5ffede0dbb (patch)
treede62d575f07c88645f8942a45e8456afee6e9df7 /packages
parentf2614bf9dcc8c600bb5f85a5026b1797bc2ae628 (diff)
downloadvyos-build-9eea9958697e81c8b49d69ce9cbf4d5ffede0dbb.tar.gz
vyos-build-9eea9958697e81c8b49d69ce9cbf4d5ffede0dbb.zip
pmacct: T5663: the garbage headers issue fix
Diffstat (limited to 'packages')
-rw-r--r--packages/pmacct/Jenkinsfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/pmacct/Jenkinsfile b/packages/pmacct/Jenkinsfile
index af767b32..19af2c9b 100644
--- a/packages/pmacct/Jenkinsfile
+++ b/packages/pmacct/Jenkinsfile
@@ -21,12 +21,12 @@
@Library('vyos-build@current')_
def package_name = 'pmacct'
-
+// "sudo apt-get remove git -y" is necessary for solving this issue https://vyos.dev/T5663
def pkgList = [
['name': "${package_name}",
'scmCommit': 'debian/1.7.7-1',
'scmUrl': 'https://salsa.debian.org/debian/pmacct.git',
- 'buildCmd': 'sudo mk-build-deps --install --tool "apt-get --yes --no-install-recommends"; ../build.py'],
+ 'buildCmd': 'sudo mk-build-deps --install --tool "apt-get --yes --no-install-recommends"; sudo apt-get remove git -y; ../build.py'],
]
// Start package build using library function from https://github.com/vyos/vyos-build