Skip to content
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

bugfix: packages: delim is comma #10559

Merged
merged 1 commit into from
May 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# packages = nfs-utils at
# packages = nfs-utils,at
#

# this test ensures that only the atd.service is matched, not for example the service rpc-statd
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# platform = Oracle Linux 7,Red Hat Enterprise Linux 7
# packages = openssh-7.4p1 openssh-clients-7.4p1 openssh-server-7.4p1
# packages = openssh-7.4p1,openssh-clients-7.4p1,openssh-server-7.4p1
#


Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/bin/bash
# packages = pcsc-lite pam_pkcs11 esc


# packages = pcsc-lite,pam_pkcs11,esc

systemctl disable pcscd.socket
systemctl disable pcscd.service
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/bin/bash
# packages = pcsc-lite pam_pkcs11 esc


# packages = pcsc-lite,pam_pkcs11,esc

systemctl enable pcscd.socket
systemctl start pcscd.socket
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# packages = pcsc-lite pam_pkcs11 esc
# packages = pcsc-lite,pam_pkcs11,esc

systemctl enable pcscd.socket
systemctl start pcscd.socket
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/bin/bash
# packages = pcsc-lite pam_pkcs11 esc


# packages = pcsc-lite,pam_pkcs11,esc

systemctl disable pcscd.socket

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# packages = pcsc-lite pam_pkcs11 esc
# packages = pcsc-lite,pam_pkcs11,esc

systemctl enable pcscd.socket
systemctl start pcscd.socket
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# packages = pcsc-lite pam_pkcs11 esc
# packages = pcsc-lite,pam_pkcs11,esc

systemctl enable pcscd.socket
systemctl start pcscd.socket
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# packages = pcsc-lite pam_pkcs11 esc
# packages = pcsc-lite,pam_pkcs11,esc

systemctl enable pcscd.socket
systemctl start pcscd.socket
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# packages = dracut-fips dracut-fips-aesni
# packages = dracut-fips,dracut-fips-aesni

if grep -q '^GRUB_CMDLINE_LINUX=.*fips=.*"' /etc/default/grub; then
sed -i 's/\(^GRUB_CMDLINE_LINUX=".*\)fips=[^[:space:]]*\(.*"\)/\1 fips=1 \2/' /etc/default/grub
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# packages = dracut-fips dracut-fips-aesni
# packages = dracut-fips,dracut-fips-aesni


if grep -q '^GRUB_CMDLINE_LINUX=.*fips=.*"' /etc/default/grub; then
Expand Down