Syntax error fix
Fixed a syntax error in a conditional expression within the Plymouth section of the post-setup script (line 139).
This commit is contained in:
parent
d733f961b3
commit
ee9b77af8d
|
|
@ -136,7 +136,7 @@ PLYMOUTH_THEME="arch-glow" # can grab from config later if we allow selection
|
||||||
mkdir -p /usr/share/plymouth/themes
|
mkdir -p /usr/share/plymouth/themes
|
||||||
echo 'Installing Plymouth theme...'
|
echo 'Installing Plymouth theme...'
|
||||||
cp -rf ${PLYMOUTH_THEMES_DIR}/${PLYMOUTH_THEME} /usr/share/plymouth/themes
|
cp -rf ${PLYMOUTH_THEMES_DIR}/${PLYMOUTH_THEME} /usr/share/plymouth/themes
|
||||||
if [[ $FS == "luks"]]; then
|
if [[ ${FS} == "luks"]]; then
|
||||||
sed -i 's/HOOKS=(base udev*/& plymouth/' /etc/mkinitcpio.conf # add plymouth after base udev
|
sed -i 's/HOOKS=(base udev*/& plymouth/' /etc/mkinitcpio.conf # add plymouth after base udev
|
||||||
sed -i 's/HOOKS=(base udev \(.*block\) /&plymouth-/' /etc/mkinitcpio.conf # create plymouth-encrypt after block hook
|
sed -i 's/HOOKS=(base udev \(.*block\) /&plymouth-/' /etc/mkinitcpio.conf # create plymouth-encrypt after block hook
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue