2018-01-28 23:16:22 +03:00
#!/bin/bash
#
# Copyright (C) 2017 Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
set -euo pipefail
. ${ commondir } /libtest.sh
. ${ commondir } /libvm.sh
set -x
osid = $( vm_cmd grep -E '^ID=' /etc/os-release)
if test " ${ osid } " != 'ID=fedora' ; then
echo " ok skip on OS ID= ${ osid } "
exit 0
fi
# Test that we can override the kernel. For ease of testing
2018-05-19 17:48:18 +03:00
# I just picked the "gold" F28 kernel.
2018-01-28 23:16:22 +03:00
current = $( vm_get_booted_csum)
vm_cmd rpm-ostree db list " ${ current } " > current-dblist.txt
2018-05-19 17:48:18 +03:00
assert_not_file_has_content current-dblist.txt 'kernel-4.16.3-301.fc28'
2018-01-28 23:16:22 +03:00
grep -E '^ kernel-4' current-dblist.txt | sed -e 's,^ *,,' > orig-kernel.txt
assert_streq " $( wc -l < orig-kernel.txt) " "1"
orig_kernel = $( cat orig-kernel.txt)
2018-08-18 00:34:02 +03:00
URL_ROOT = "https://dl.fedoraproject.org/pub/fedora/linux/releases/28/Everything/x86_64/os/Packages/k"
vm_rpmostree override replace \
" $URL_ROOT /kernel{,-core,-modules{,-extra}}-4.16.3-301.fc28.x86_64.rpm "
2018-01-28 23:16:22 +03:00
new = $( vm_get_pending_csum)
vm_cmd rpm-ostree db list " ${ new } " > new-dblist.txt
2018-05-19 17:48:18 +03:00
assert_file_has_content_literal new-dblist.txt 'kernel-4.16.3-301.fc28'
2018-01-28 23:16:22 +03:00
if grep -q -F -e " ${ orig_kernel } " new-dblist.txt; then
fatal " Found kernel: ${ line } "
fi
2018-04-23 19:59:57 +03:00
newroot = $( vm_get_deployment_root 0)
vm_cmd find ${ newroot } /usr/lib/modules -maxdepth 1 -type d > modules-dirs.txt
assert_streq " $( wc -l < modules-dirs.txt) " "2"
2018-05-19 17:48:18 +03:00
assert_file_has_content_literal modules-dirs.txt '4.16.3-301.fc28'
2018-04-23 19:59:57 +03:00
2018-01-28 23:16:22 +03:00
echo "ok override kernel"