diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-24 07:45:40 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-24 07:45:40 +0000 |
commit | 6fe5193725af0c70fe78f08e5d519d28d008bb02 (patch) | |
tree | f5c0282749cab9239341f5dc48dd81a97879e23f /scripts | |
parent | b375fd2a488ce62c8b24ea599f73d2143daaf5ba (diff) | |
download | bootsplash-6fe5193725af0c70fe78f08e5d519d28d008bb02.tar bootsplash-6fe5193725af0c70fe78f08e5d519d28d008bb02.tar.gz bootsplash-6fe5193725af0c70fe78f08e5d519d28d008bb02.tar.bz2 bootsplash-6fe5193725af0c70fe78f08e5d519d28d008bb02.tar.xz bootsplash-6fe5193725af0c70fe78f08e5d519d28d008bb02.zip |
look for bootloader-config where it really is (bugzilla #16568)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/remove-theme | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/remove-theme b/scripts/remove-theme index 29b105d..9263b1b 100644 --- a/scripts/remove-theme +++ b/scripts/remove-theme @@ -31,8 +31,8 @@ function remove_theme () { } function update_boot () { - if [[ -x /usr/bin/bootloader-config ]]; then - /usr/bin/bootloader-config --action remove-splash --kernel-version $(uname -r) + if [[ -x /usr/sbin/bootloader-config ]]; then + /usr/sbin/bootloader-config --action remove-splash --kernel-version $(uname -r) fi } |