artwork/debian/lubuntu-grub-theme.postinst
Raman Sarda c7b5bed2ff Added lubuntu-grub-theme
Summary: Custom grub theme for lubuntu. Inspired from breeze theme.

Test Plan: Test whether theme gets installed by default.

Reviewers: tsimonq2, wxl

Subscribers: apt-ghetto

Maniphest Tasks: T30

Differential Revision: https://phab.lubuntu.me/D45
2019-10-08 11:40:10 -05:00

25 lines
287 B
Bash

#!/bin/sh
# postinst script for lubuntu-grub-theme
#DEBHELPER#
set -e
case "$1" in
configure)
update-grub
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
exit 0