Skip to content

Commit

Permalink
edns: test passing of global dns configuration to installed system
Browse files Browse the repository at this point in the history
Related: INSTALLER-4097
  • Loading branch information
rvykydal committed Jan 23, 2025
1 parent 523470d commit 766e86f
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
31 changes: 31 additions & 0 deletions bootopts-global-dns.ks.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# The goal is to test options and configuration passing to installed system
# not the functionality of the name resolution.

# Use defaults, but no network
%ksappend common/common.ks
%ksappend repos/default.ks
%ksappend l10n/default.ks
%ksappend users/default.ks
%ksappend storage/default.ks
%ksappend payload/default_packages.ks

%post

# Check the arguments are passed to the installed system
grep "^GRUB_CMDLINE_LINUX=" /etc/default/grub | grep "rd.net.dns=tls://8.8.8.8#dns.google"
if [[ $? -ne 0 ]]; then
echo '*** Failed check: rd.net.dns option is missing' >> /root/RESULT
fi
grep "^GRUB_CMDLINE_LINUX=" /etc/default/grub | grep "rd.net.dns-global-mode=backup"
if [[ $? -ne 0 ]]; then
echo '*** Failed check: rd.net.dns-global-mode option is missing' >> /root/RESULT
fi

# Check the NM runtime global config file is passed to the installed system
if [[ ! -e /etc/NetworkManager/conf.d/16-global-dns.conf ]]; then
echo '*** Failed check: NetworkManger global dns configuration file is missing' >> /root/RESULT
fi

%ksappend validation/success_if_result_empty.ks

%end
29 changes: 29 additions & 0 deletions bootopts-global-dns.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#
# Copyright (C) 2025 Red Hat, Inc.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions of
# the GNU General Public License v.2, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY expressed or implied, including the implied warranties of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details. You should have received a copy of the
# GNU General Public License along with this program; if not, write to the
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the
# source code or documentation are not subject to the GNU General Public
# License and may only be used or replicated with the express permission of
# Red Hat, Inc.
#
# Red Hat Author(s): Radek Vykydal <[email protected]>

# Ignore unused variable parsed out by tooling scripts as test tags metadata
# shellcheck disable=SC2034
TESTTYPE=${TESTTYPE:-"network"}

. ${KSTESTDIR}/functions.sh

kernel_args() {
. ${tmpdir}/ks_url
echo ${DEFAULT_BOOTOPTS} rd.net.dns=tls://8.8.8.8\#dns.google rd.net.dns-global-mode=backup ip=${KSTEST_NETDEV1}:dhcp
}

0 comments on commit 766e86f

Please sign in to comment.