diff options
author | Liam McLoughlin <hexxeh@hexxeh.net> | 2011-06-04 19:51:21 +0100 |
---|---|---|
committer | Liam McLoughlin <hexxeh@hexxeh.net> | 2011-06-04 19:51:21 +0100 |
commit | d1aadbeda8cd4edd4eb79c5236af655ae3487c6b (patch) | |
tree | e3714b0b3bcdf0323eec01e02a412298ad133a1b | |
parent | Fixed mounting! We're now booting to a login prompt (diff) | |
download | gentoaster-d1aadbeda8cd4edd4eb79c5236af655ae3487c6b.tar.gz gentoaster-d1aadbeda8cd4edd4eb79c5236af655ae3487c6b.tar.bz2 gentoaster-d1aadbeda8cd4edd4eb79c5236af655ae3487c6b.zip |
Reenable hostname setting
-rwxr-xr-x | create_image.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/create_image.sh b/create_image.sh index 69cc84e..4f1d302 100755 --- a/create_image.sh +++ b/create_image.sh @@ -127,7 +127,7 @@ linux32 chroot . cp /usr/share/zoneinfo/${TIMEZONE} /etc/localtime &>> ${LOG_FIL echo "Setting hostname to ${HOSTNAME}" linux32 chroot . /bin/bash -c "echo 127.0.0.1 ${HOSTNAME}.local ${HOSTNAME} localhost > /etc/hosts" &>> ${LOG_FILE} -#linux32 chroot . hostname ${HOSTNAME} &>> ${LOG_FILE} +linux32 chroot . bin/hostname ${HOSTNAME} &>> ${LOG_FILE} echo "Copying new fstab" cp ../fstab etc/fstab &>> ${LOG_FILE} |