diff --git a/debian/changelog b/debian/changelog index 282a2725..9dd27cab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (2.174) UNRELEASED; urgency=low + + * make sure the bluetooth group has the right android GID on touch builds + + -- Oliver Grawert Fri, 16 Aug 2013 13:25:52 +0200 + livecd-rootfs (2.173) saucy; urgency=low [Michael Terry] diff --git a/live-build/ubuntu-touch/hooks/02-add_user_to_groups.chroot b/live-build/ubuntu-touch/hooks/02-add_user_to_groups.chroot index 2f4b20d3..875b23d6 100755 --- a/live-build/ubuntu-touch/hooks/02-add_user_to_groups.chroot +++ b/live-build/ubuntu-touch/hooks/02-add_user_to_groups.chroot @@ -36,7 +36,8 @@ else fi /bin/egrep -i "^bluetooth:" /etc/group if [ $? -eq 0 ]; then - echo "User bluetooth exists in /etc/group" + echo "User bluetooth exists in /etc/group changing ID to 1002" + groupmod -g 1002 bluetooth else echo "User bluetooth does not exist in /etc/group -- must create" groupadd -g 1002 bluetooth