8 lines
181 B
Bash
Executable file
8 lines
181 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "x$1" = xremove ]; then
|
|
update-alternatives \
|
|
--remove default.plymouth /lib/plymouth/themes/trisquel-logo/trisquel-logo.plymouth
|
|
fi
|