mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-11 05:07:09 +00:00
11 lines
360 B
Bash
11 lines
360 B
Bash
#!/bin/sh
|
|
|
|
# make sure the phablet user is in the autopilot group
|
|
# (the user is not available when the package postinst
|
|
# adds all users of the sudo group to the autopilot one
|
|
# so we re-run the package configuration now
|
|
|
|
echo "making sure phablet user is in the autopilot group"
|
|
|
|
dpkg -l python-autopilot >/dev/null 2>&1 && dpkg-reconfigure python-autopilot
|