blob: df4d44224d105366f2070c8742d3dd8939bff96e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
update-desktop-database -q
echo ""
echo "======================================================================"
echo "Important: To access the serial console add yourself to the uucp group"
echo "To add yourself to uucp use: sudo usermod -aG uucp \$(whoami)"
echo "======================================================================"
echo ""
}
post_upgrade() {
post_install
}
post_remove() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
update-desktop-database -q
}
|