Gentoo Archives: gentoo-commits

From: "Chris Gianelloni (wolf31o2)" <wolf31o2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] catalyst r1354 - in trunk: . targets/support
Date: Wed, 05 Mar 2008 17:01:19
Message-Id: E1JWwxq-0002W1-F6@stork.gentoo.org
1 Author: wolf31o2
2 Date: 2008-03-05 16:59:33 +0000 (Wed, 05 Mar 2008)
3 New Revision: 1354
4
5 Modified:
6 trunk/ChangeLog
7 trunk/targets/support/livecdfs-update.sh
8 Log:
9 We need to put quotes around ${user_comment} or useradd gets confused.
10
11 Modified: trunk/ChangeLog
12 ===================================================================
13 --- trunk/ChangeLog 2008-03-05 16:54:45 UTC (rev 1353)
14 +++ trunk/ChangeLog 2008-03-05 16:59:33 UTC (rev 1354)
15 @@ -2,6 +2,10 @@
16 # $Id: $
17
18 05 Mar 2008; Chris Gianelloni <wolf31o2@g.o>
19 + targets/support/livecdfs-update.sh:
20 + We need to put quotes around ${user_comment} or useradd gets confused.
21 +
22 + 05 Mar 2008; Chris Gianelloni <wolf31o2@g.o>
23 targets/support/chroot-functions.sh:
24 Changed make_destpath to write out ROOT to make.conf, rather than (ab)using
25 the environment.
26
27 Modified: trunk/targets/support/livecdfs-update.sh
28 ===================================================================
29 --- trunk/targets/support/livecdfs-update.sh 2008-03-05 16:54:45 UTC (rev 1353)
30 +++ trunk/targets/support/livecdfs-update.sh 2008-03-05 16:59:33 UTC (rev 1354)
31 @@ -65,7 +65,7 @@
32 for x in ${clst_livecd_users}
33 do
34 useradd -G users,wheel,audio,plugdev,games,cdrom,disk,floppy,usb \
35 - -g 100 -c ${user_comment} -m ${x}
36 + -g 100 -c "${user_comment}" -m ${x}
37 chown -R ${x}:users /home/${x}
38 if [ -n "${clst_livecd_xdm}" -a -n "${clst_livecd_xsession}" ]
39 then
40
41 --
42 gentoo-commits@l.g.o mailing list