blob: f4d3c30801a51905450aae7a4db3526e03686cd1 (
plain)
1
2
3
4
5
6
7
8
9
|
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"
}
pre_upgrade() {
post_install
}
|