-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: Fix pam_adsys build #789
Conversation
And the proof: root@mantic-b4519d33:~# diff -u 0.13.0.txt 0.13.0ppa2.txt
--- 0.13.0.txt 2023-09-25 08:54:37.648222755 +0000
+++ 0.13.0ppa2.txt 2023-09-25 09:46:37.018948908 +0000
@@ -2,8 +2,8 @@
0
118 bytes, 2 lines conffiles
- 937 bytes, 17 lines control
- 5587 bytes, 72 lines md5sums
+ 959 bytes, 17 lines control
+ 5664 bytes, 73 lines md5sums
7075 bytes, 147 lines * postinst #!/bin/sh
872 bytes, 21 lines * postrm #!/bin/sh
811 bytes, 21 lines * prerm #!/bin/sh
@@ -11,7 +11,7 @@
13
Architecture: amd64
ubuntu
- Installed-Size: 27172
+ Installed-Size: 27236
34), libglib2
Recommends: ubuntu-advantage-desktop-daemon
Suggests: curlftpfs, ubuntu-proxy-manager, python3-cepces
@@ -43,6 +43,9 @@
/lib/systemd/system/adsysd
/lib/systemd/system/adsysd
/lib/systemd/system/run-adsys
+/lib/x86_64-linux-gnu/
+/lib/x86_64-linux-gnu/security/
+/lib/x86_64-linux-gnu/security/pam_adsys
/sbin/
/sbin/adsysd
/usr/ PPA build at: https://launchpad.net/~gabuscus/+archive/ubuntu/ppa/+sourcepub/15173272/+listing-archive-extra |
Codecov Report
@@ Coverage Diff @@
## main #789 +/- ##
=======================================
Coverage 86.07% 86.07%
=======================================
Files 77 77
Lines 8552 8552
=======================================
Hits 7361 7361
Misses 868 868
Partials 323 323 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for working and fixing this promptly!
I just have a small suggestion on commenting, then, feel free to merge :)
EDIT: if you didn’t notice, the vulnerability is due to us needing rebuilding with Go 1.21.1. Let me quickly do a PR with this.
f293785
to
8049a01
Compare
It looks like multiple -tags statements override each other so we must specify them in a comma separated way. This fixes the issue where pam_adsys is not built and shipped anymore.
8049a01
to
b7d2c3c
Compare
It looks like multiple
-tags
statements override each other so we must specify them in a comma separated way. This fixes the issue wherepam_adsys
is not built and shipped anymore.