Skip to content

Commit

Permalink
Replace kacst glob with the existing google-noto* packages glob
Browse files Browse the repository at this point in the history
kacst is not packaged / gragged anymore in RHEL10. [1]

[1] https://bugs.documentfoundation.org/show_bug.cgi?id=152376

Fixes: #1106
  • Loading branch information
KKoukiou committed May 15, 2024
1 parent 38fd954 commit 889ae56
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions packages-and-groups-1.ks.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ tmux
-tmux

# (3) Test that you can add packages with a glob.
kacst*
google-noto*

# (4) Test that you can remove packages with a glob.
-grub2-efi*
Expand Down Expand Up @@ -50,10 +50,10 @@ if [[ $? == 0 ]]; then
echo '*** tmux package should not have been installed' >> /root/RESULT
fi

# Testing #3 - kacst font stuff should be installed.
count=$(rpm -qa kacst\* | wc -l)
# Testing #3 - google-noto font stuff should be installed.
count=$(rpm -qa google-noto\* | wc -l)
if [[ $count -lt 5 ]]; then
echo '*** kacst* glob was not installed' >> /root/RESULT
echo '*** google-noto* glob was not installed' >> /root/RESULT
fi

# Testing #4 - grub2-efi stuff should not be installed.
Expand Down
2 changes: 1 addition & 1 deletion packages-and-groups-1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@

# Ignore unused variable parsed out by tooling scripts as test tags metadata
# shellcheck disable=SC2034
TESTTYPE="packaging gh1106"
TESTTYPE="packaging"

. ${KSTESTDIR}/functions.sh

0 comments on commit 889ae56

Please sign in to comment.