diff options
author | Pierre Labastie <pieere@linuxfromscratch.org> | 2020-05-30 18:14:52 +0000 |
---|---|---|
committer | Pierre Labastie <pieere@linuxfromscratch.org> | 2020-05-30 18:14:52 +0000 |
commit | 338c63fb69af72ca10964051da35539ff2ea8882 (patch) | |
tree | 58fa458e6ac7b547bf9fcc6d6891c1da4156de31 | |
parent | 9c5cdd8a537f193530d64c9dc0b2dc726ab8ace6 (diff) |
Fix groups for user tester, and a forgotten tester in sed tests
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11877 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter06/coreutils.xml | 4 | ||||
-rw-r--r-- | chapter06/createfiles.xml | 2 | ||||
-rw-r--r-- | chapter06/sed.xml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/chapter06/coreutils.xml b/chapter06/coreutils.xml index e3ab4a679..78309ba32 100644 --- a/chapter06/coreutils.xml +++ b/chapter06/coreutils.xml @@ -116,7 +116,7 @@ FORCE_UNSAFE_CONFIGURE=1 ./configure \ these tests are not skipped we'll add a temporary group and make the user <systemitem class="username">tester</systemitem> a part of it:</para> -<screen><userinput remap="test">echo "tester:x:1000:nogroup" >> /etc/group</userinput></screen> +<screen><userinput remap="test">echo "dummy:x:1000:tester" >> /etc/group</userinput></screen> <para>Fix some of the permissions so that the non-root user can compile and run the tests:</para> @@ -132,11 +132,11 @@ FORCE_UNSAFE_CONFIGURE=1 ./configure \ partially built system environment like the chroot environment here, but passes if run at the end of this chapter. The test program tty.sh is also known to fail.</para> +--> <para>Remove the temporary group:</para> <screen><userinput remap="test">sed -i '/dummy/d' /etc/group</userinput></screen> ---> <para>Install the package:</para> <screen><userinput remap="install">make install</userinput></screen> diff --git a/chapter06/createfiles.xml b/chapter06/createfiles.xml index 74a071df0..53c80e0a2 100644 --- a/chapter06/createfiles.xml +++ b/chapter06/createfiles.xml @@ -346,7 +346,7 @@ EOF</userinput></screen> user here and delete this account at the end of the chapter.</para> <screen><userinput>echo "tester:x:101:101::/home/tester:/bin/bash" >> /etc/passwd -echo "tester:x:101:dummy" >> /etc/group +echo "tester:x:101:" >> /etc/group install -o tester -d /home/tester</userinput></screen> <para>To remove the <quote>I have no name!</quote> prompt, start a new diff --git a/chapter06/sed.xml b/chapter06/sed.xml index 9dee31ed2..71bfc245f 100644 --- a/chapter06/sed.xml +++ b/chapter06/sed.xml @@ -56,7 +56,7 @@ make html</userinput></screen> <para>To test the results, issue:</para> <screen><userinput remap="test">chown -Rv tester . -su -c "PATH=$PATH make check"</userinput></screen> +su tester -c "PATH=$PATH make check"</userinput></screen> <para>Install the package and its documentation:</para> |