You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
# let's check if support is there until installer-steps are dynamic
|
|
|
|
CONFIG="/usr/share/install2/installer-steps"
|
|
|
|
if ! grep -q '^luks$' "$CONFIG"; then
|
|
PKG="$(rpm -qf "$CONFIG")"
|
|
echo "** warning: luks step missing in ${PKG:-$CONFIG}" >&2
|
|
fi
|
|
|