blob: 4cbbba722052cbb6aa968083da6baa75039614ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
echo -e "********************************************"
echo -e "* For Chromecast functionality: *"
echo -e "* *"
echo -e "* Verify avahi and nss-mdns are installed. *"
echo -e "* *"
echo -e "* Append \"mdns4\" to the end of the \"hosts\" *"
echo -e "* line in /etc/nsswitch.conf. *"
echo -e "* *"
echo -e "* Make sure both the avahi-daemon service *"
echo -e "* and socket are enabled and running. *"
echo -e "********************************************"
echo -e -n ""
}
post_upgrade() {
post_install
}
|