forked from rhinstaller/kickstart-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autopart-encrypted-1.ks.in
49 lines (37 loc) · 989 Bytes
/
autopart-encrypted-1.ks.in
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
#test name: autopart-encrypted-1
%ksappend repos/default.ks
network --bootproto=dhcp
bootloader --timeout=1
zerombr
clearpart --all --initlabel
autopart --type=lvm --encrypted --passphrase="passphrase"
keyboard us
lang en
timezone America/New_York
rootpw qweqwe
shutdown
%packages
%end
%post
# Log the created partitioning.
lsblk
# Find the LUKS device.
crypted="$(blkid --match-token TYPE="crypto_LUKS" --output device)"
if [[ $? != 0 ]] ; then
echo "*** couldn't find a LUKS device" > /root/RESULT
exit 1
fi
# The LUKS device should be a parent of a root device.
lsblk ${crypted} --output mountpoint | grep -x /
if [[ $? != 0 ]] ; then
echo "*** ${crypted} doesn't contain a root device" > /root/RESULT
exit 1
fi
# Try to use the passphrase.
echo "passphrase" | cryptsetup luksOpen --test-passphrase "${crypted}"
if [[ $? != 0 ]] ; then
echo "*** cannot open ${crypted} with the passphrase" > /root/RESULT
exit 1
fi
echo 'SUCCESS' > /root/RESULT
%end