11 lines
94 B
Bash
Executable File
11 lines
94 B
Bash
Executable File
#! /bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = remove ]; then
|
|
rm -f /boot/grub/gfxblacklist.txt
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|