X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage0%2Fpre-install;h=5ff17d2e93e761b156c724317d2fed6f04fa5ba3;hb=324f856b770e4fe16d10ffcd069f2f7b70585589;hp=5183a23de045bde50f84e8fe2fa30990e53cb122;hpb=3605ab38ca7604b1fe43c3bce5e4963730a85d39;p=hvlinux.git diff --git a/stage0/pre-install b/stage0/pre-install index 5183a23..5ff17d2 100755 --- a/stage0/pre-install +++ b/stage0/pre-install @@ -1,16 +1,7 @@ #!/bin/bash set -o errexit -# Reading system configuration informations, functions and package versions. -source ../sysinfos -source ../functions -source ../packages-list - -# Making sure that this script was executed by the root user -if [ "x${USER}" != "xroot" ]; then - echo "You must be the superuser to install hvlinux." - exit 1 -fi +source ../functions/main # Making sure that the LFS directory is accessible if [ ! -d ${LFS} ]; then @@ -19,19 +10,18 @@ if [ ! -d ${LFS} ]; then fi # Testing for the presence of the lfs user -# We cannot always automatically create the user 'lfs' because the installation media -# can be a CD-ROM (read-only) -# If installing from some kind of live-CD, simply install as root without the LFS -# user :) -if ! grep "lfs" /etc/passwd 1> /dev/null 2>&1; then +# We cannot always automatically create the user 'lfs' because the installation +# media can be a CD-ROM (read-only) If installing from some kind of live-CD, +# simply install as root without the LFS user :) +if ! grep -q "lfs" /etc/passwd; then + groupadd -f lfs # The option '-k /dev/null' prevents possible copying of files from a # skeleton directory (default is /etc/skel). - groupadd lfs useradd -s /bin/bash -g lfs -m -k /dev/null lfs fi # Creating basic directories -for subdir in tmp var tools cross-tools; do +for subdir in etc tmp var tools cross-tools; do dir=${LFS}/${subdir} if [ ! -d ${dir} ]; then install -dv ${dir}