Import patches-unapplied version 2.148 to ubuntu/saucy-proposed

Imported using git-ubuntu import.

Changelog parent: f08f10f560

New changelog entries:
  [ Colin Watson ]
  * live-build/ubuntu-touch/hooks/02-add_user_to_groups.chroot: Delete
    redundant code to create global static groups, which are already created
    more correctly by base-passwd on every Ubuntu system.
  * live-build/ubuntu-touch/hooks/02-add_user_to_groups.chroot: Fix
    detection of existing groups not to misfire if there is an existing
    group with the desired group name as a prefix.
  [ Oliver Grawert ]
  * drop daily-build-next PPA, according to didrocks everything from there
    should be in the saucy archive now, yay.
impish
Oliver Grawert 12 years ago committed by usd-importer
parent f08f10f560
commit fad2ce5b70

16
debian/changelog vendored

@ -1,3 +1,19 @@
livecd-rootfs (2.148) saucy; urgency=low
[ Colin Watson ]
* live-build/ubuntu-touch/hooks/02-add_user_to_groups.chroot: Delete
redundant code to create global static groups, which are already created
more correctly by base-passwd on every Ubuntu system.
* live-build/ubuntu-touch/hooks/02-add_user_to_groups.chroot: Fix
detection of existing groups not to misfire if there is an existing
group with the desired group name as a prefix.
[ Oliver Grawert ]
* drop daily-build-next PPA, according to didrocks everything from there
should be in the saucy archive now, yay.
-- Oliver Grawert <ogra@ubuntu.com> Mon, 10 Jun 2013 12:33:32 +0200
livecd-rootfs (2.147) saucy; urgency=low livecd-rootfs (2.147) saucy; urgency=low
* sync ubuntu-touch customzation scripts with phablet build tree * sync ubuntu-touch customzation scripts with phablet build tree

@ -1,14 +0,0 @@
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: SKS 1.1.4
Comment: Hostname: keyserver.ubuntu.com
mI0EUKJp4AEEANqa4yLubhYUWP6NFignwYDXfSQDxD1K5m06SyuTuqI37zRI+GaFvaiNCwzK
7Qfx4TikrpNIIIc3c1+rYSsSQQadWqJRvrbs7MixcDQGRb+SQ+bglIdD+1hw9xSvMXGO/dOa
Zv6ZVlLxJiYWAKZuFXtugKQF2yyh0eug6/7wuRYxABEBAAG0MkxhdW5jaHBhZCBQUEEgZm9y
IFVidW50dSBVbml0eSBQUyBpbnRlZ3JhdGlvbiB0ZWFtiLgEEwECACIFAlCiaeACGwMGCwkI
BwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEEVRQo5S1i9FdDMEAKL25MjyO+W7+MJRiEzaV/gd
a41lQsqLFXDWdYFaF1FqrLNa6/E5Ph+oVV6tK8O/HSeXGVgDZeEL6iBX3SvwEgLyGr33z8IZ
22JNS5UIXmwSKO5PIx8Qs6LjOaQtAlZRDwj/5wQo9IqNclSA/hrFNH7XuHeglqITgccPCPEZ
MByN
=VBVL
-----END PGP PUBLIC KEY BLOCK-----

@ -1,2 +0,0 @@
deb http://ppa.launchpad.net/ubuntu-unity/daily-build-next/ubuntu @DISTRIBUTION@ main
# deb-src http://ppa.launchpad.net/ubuntu-unity/daily-build-next/ubuntu @DISTRIBUTION@ main

@ -4,42 +4,14 @@ USER=phablet
DEFGROUPS="tty,admin,adm,dialout,cdrom,plugdev,audio,dip,video,gps,radio,bluetooth,android_net,android_net2,android_net3,android_graphics,android_input,sdcard_rw" DEFGROUPS="tty,admin,adm,dialout,cdrom,plugdev,audio,dip,video,gps,radio,bluetooth,android_net,android_net2,android_net3,android_graphics,android_input,sdcard_rw"
/bin/egrep -i "^admin" /etc/group /bin/egrep -i "^admin:" /etc/group
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "User admin exists in /etc/group" echo "User admin exists in /etc/group"
else else
echo "User admin does not exists in /etc/group must create" echo "User admin does not exists in /etc/group must create"
groupadd admin groupadd admin
fi fi
/bin/egrep -i "^tty" /etc/group /bin/egrep -i "^audio:" /etc/group
if [ $? -eq 0 ]; then
echo "User tty exists in /etc/group"
else
echo "User tty does not exists in /etc/group must create"
groupadd tty
fi
/bin/egrep -i "^dialout" /etc/group
if [ $? -eq 0 ]; then
echo "User dialout exists in /etc/group"
else
echo "User dialout does not exists in /etc/group must create"
groupadd dialout
fi
/bin/egrep -i "^cdrom" /etc/group
if [ $? -eq 0 ]; then
echo "User cdrom exists in /etc/group"
else
echo "User cdrom does not exists in /etc/group must create"
groupadd cdrom
fi
/bin/egrep -i "^plugdev" /etc/group
if [ $? -eq 0 ]; then
echo "User plugdev exists in /etc/group"
else
echo "User plugdev does not exists in /etc/group must create"
groupadd plugdev
fi
/bin/egrep -i "^audio" /etc/group
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
# Needed to change group id as audio is already created by ubuntu # Needed to change group id as audio is already created by ubuntu
echo "User audio exists in /etc/group, changing gid to be android compatible" echo "User audio exists in /etc/group, changing gid to be android compatible"
@ -48,84 +20,63 @@ else
echo "User audio does not exists in /etc/group must create" echo "User audio does not exists in /etc/group must create"
groupadd -g 1005 audio groupadd -g 1005 audio
fi fi
/bin/egrep -i "^dip" /etc/group /bin/egrep -i "^gps:" /etc/group
if [ $? -eq 0 ]; then
echo "User dip exists in /etc/group"
else
echo "User dip does not exists in /etc/group must create"
groupadd dip
fi
/bin/egrep -i "^video" /etc/group
if [ $? -eq 0 ]; then
echo "User video exists in /etc/group"
else
echo "User video does not exists in /etc/group must create"
groupadd video
fi
/bin/egrep -i "^adm" /etc/group
if [ $? -eq 0 ]; then
echo "User adm exists in /etc/group"
else
echo "User adm does not exists in /etc/group must create"
groupadd adm
fi
/bin/egrep -i "^gps" /etc/group
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "User gps exists in /etc/group" echo "User gps exists in /etc/group"
else else
echo "User gps does not exist in /etc/group -- must create" echo "User gps does not exist in /etc/group -- must create"
groupadd -g 1021 gps groupadd -g 1021 gps
fi fi
/bin/egrep -i "^radio" /etc/group /bin/egrep -i "^radio:" /etc/group
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "User radio exists in /etc/group" echo "User radio exists in /etc/group"
else else
echo "User radio does not exist in /etc/group -- must create" echo "User radio does not exist in /etc/group -- must create"
groupadd -g 1001 radio groupadd -g 1001 radio
fi fi
/bin/egrep -i "^bluetooth" /etc/group /bin/egrep -i "^bluetooth:" /etc/group
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "User bluetooth exists in /etc/group" echo "User bluetooth exists in /etc/group"
else else
echo "User bluetooth does not exist in /etc/group -- must create" echo "User bluetooth does not exist in /etc/group -- must create"
groupadd -g 1002 bluetooth groupadd -g 1002 bluetooth
fi fi
/bin/egrep -i "^android_net" /etc/group /bin/egrep -i "^android_net:" /etc/group
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "User android_net exists in /etc/group" echo "User android_net exists in /etc/group"
else else
echo "User android_net does not exist in /etc/group -- must create" echo "User android_net does not exist in /etc/group -- must create"
groupadd -g 3003 android_net groupadd -g 3003 android_net
fi fi
/bin/egrep -i "^android_net2" /etc/group /bin/egrep -i "^android_net2:" /etc/group
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "User android_net2 exists in /etc/group" echo "User android_net2 exists in /etc/group"
else else
echo "User android_net2 does not exist in /etc group -- must create" echo "User android_net2 does not exist in /etc group -- must create"
groupadd -g 3004 android_net2 groupadd -g 3004 android_net2
fi fi
/bin/egrep -i "^android_net3" /etc/group /bin/egrep -i "^android_net3:" /etc/group
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "User android_net3 exists in /etc/group" echo "User android_net3 exists in /etc/group"
else else
echo "User android_net3 does not exist in /etc group -- must create" echo "User android_net3 does not exist in /etc group -- must create"
groupadd -g 3002 android_net3 groupadd -g 3002 android_net3
fi fi
/bin/egrep -i "^android_graphics" /etc/group /bin/egrep -i "^android_graphics:" /etc/group
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "User android_graphics exists in /etc/group" echo "User android_graphics exists in /etc/group"
else else
echo "User android_graphics does not exist in /etc group -- must create" echo "User android_graphics does not exist in /etc group -- must create"
groupadd -g 1003 android_graphics groupadd -g 1003 android_graphics
fi fi
/bin/egrep -i "^android_input" /etc/group /bin/egrep -i "^android_input:" /etc/group
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "User android_input exists in /etc/group" echo "User android_input exists in /etc/group"
else else
echo "User android_input does not exist in /etc group -- must create" echo "User android_input does not exist in /etc group -- must create"
groupadd -g 1004 android_input groupadd -g 1004 android_input
fi fi
/bin/egrep -i "^sdcard_rw" /etc/group /bin/egrep -i "^sdcard_rw:" /etc/group
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "User sdcard_rw exists in /etc/group" echo "User sdcard_rw exists in /etc/group"
else else

Loading…
Cancel
Save