Commit 841d8918 authored by Mikhail Efremov's avatar Mikhail Efremov Committed by Alexey Shabalin

bootloader: Fix %preun script

Well, rm is not a macro... This fixes commit 30b2d9fa3cdbe0836d74475dd022e8aaf6f52be8.
parent f3774c6a
...@@ -247,7 +247,7 @@ shell_config_set /etc/sysconfig/grub2 GRUB_COLOR_HIGHLIGHT %grub_high ...@@ -247,7 +247,7 @@ shell_config_set /etc/sysconfig/grub2 GRUB_COLOR_HIGHLIGHT %grub_high
%preun bootloader %preun bootloader
[ "$1" -eq 0 ] || exit 0 [ "$1" -eq 0 ] || exit 0
[ "`readlink /boot/splash/message`" != "%theme/message" ] || [ "`readlink /boot/splash/message`" != "%theme/message" ] ||
%rm -f /boot/splash/message rm -f /boot/splash/message
%endif %endif
%post indexhtml %post indexhtml
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment