blob: aaa2cb9b8d16a80d809d184ae64f86532a435451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo ":: Add yourself to the uucp group to access the serial ports:"
echo " sudo usermod -a -G uucp \$USER"
echo " sudo udevadm control --reload-rules"
echo " wiki: https://docs.petoi.com"
echo ":: Firmwares are installed at /usr/share/petoicamp-opencat/pyUI/release/"
}
pre_upgrade() {
post_install
}
|