#!/bin/sh

set -e

if [ "x$1" = xremove ]; then
	update-alternatives \
		--remove text.plymouth /lib/plymouth/themes/ubuntu-text/ubuntu-text.plymouth

	rm -f /lib/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
fi


