blob: f030cb0ac89be5ad3002fd7dd8a4449e0d698c4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
#!/bin/bash
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh
TEST_DESCRIPTION="rpm integrity after dracut and kernel install"
$TESTDIR
test_run() {
set -x
export rootdir=$TESTDIR/root
mkdir -p $rootdir
mkdir -p "$rootdir/proc"
mkdir -p "$rootdir/sys"
mkdir -p "$rootdir/dev"
trap 'ret=$?; [[ -d $rootdir ]] && { umount "$rootdir/proc"; umount "$rootdir/sys"; umount "$rootdir/dev"; rm -rf "$rootdir"; }; exit $ret;' EXIT
trap '[[ -d $rootdir ]] && { umount "$rootdir/proc"; umount "$rootdir/sys"; umount "$rootdir/dev"; rm -rf "$rootdir"; }; exit 1;' SIGINT
mount --bind /proc "$rootdir/proc"
mount --bind /sys "$rootdir/sys"
mount -t devtmpfs devtmpfs "$rootdir/dev"
yum --nogpgcheck --releasever=/ --installroot "$rootdir"/ install -y \
yum \
passwd \
rootfiles \
systemd \
kernel \
fedora-release \
device-mapper-multipath \
lvm2 \
mdadm \
bash \
iscsi-initiator-utils \
$basedir/dracut-[0-9]*.$(arch).rpm \
$basedir/dracut-network-[0-9]*.$(arch).rpm
cat >"$rootdir"/test.sh <<EOF
#!/bin/bash
set -x
export LC_MESSAGES=C
rpm -Va &> /test.output
find / -xdev -type f -not -path '/var/*' \
-not -path '/usr/lib/modules/*/modules.*' \
-not -path '/etc/*-' \
-not -path '/etc/.pwd.lock' \
-not -path '/run/mount/utab' \
-not -path '/test.sh' \
-not -path '/test.output' \
-not -path '/etc/nsswitch.conf.bak' \
-not -path '/etc/iscsi/initiatorname.iscsi' \
-not -path '/boot/*0-rescue*' \
-not -path '/dev/null' \
-exec rpm -qf '{}' ';' | \
fgrep 'not owned' &> /test.output
exit
EOF
chmod 0755 "$rootdir/test.sh"
chroot "$rootdir" /test.sh
if [[ -s "$rootdir"/test.output ]]; then
failed=1
echo TEST Failed >&2
cat "$rootdir"/test.output >&2
fi
umount "$rootdir/proc"
umount "$rootdir/sys"
umount "$rootdir/dev"
[[ $failed ]] && return 1
return 0
}
test_setup() {
return 0
}
test_cleanup() {
return 0
}
. $testdir/test-functions
|