diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-08-08 19:46:35 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-08-08 19:46:35 -0300 |
commit | 36d7329bbee2d5841342686205190751fbf4e553 (patch) | |
tree | fbabad434219b7c673ed7ee4227e671c0072e33b | |
parent | 707ef6ac8bd8726a0b408d584a7e86318fad5b23 (diff) | |
download | hydra-36d7329bbee2d5841342686205190751fbf4e553.tar.gz hydra-36d7329bbee2d5841342686205190751fbf4e553.tar.bz2 |
Setup mountpoint before creating the filesystem
-rwxr-xr-x | share/hydractl/provision | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/hydractl/provision b/share/hydractl/provision index 455fe88..ca2092e 100755 --- a/share/hydractl/provision +++ b/share/hydractl/provision @@ -73,6 +73,11 @@ if [ "$garbage" == "y" ]; then dd if=/dev/urandom of="$device"1 fi +# Setup mountpoint and make sure it's not mounted due to a failed install. +mkdir -p /tmp/debootstrap +umount /tmp/debootstrap/proc &> /dev/null +umount /tmp/debootstrap/dev &> /dev/null + # Create root device. if [ "$encrypt" == "y" ]; then echo "Creating encrypted root device..." @@ -86,11 +91,6 @@ else install_device="/dev/vg/root" fi -# Setup mountpoint and make sure it's not mounted due to a failed install. -mkdir -p /tmp/debootstrap -umount /tmp/debootstrap/proc &> /dev/null -umount /tmp/debootstrap/dev &> /dev/null - # Initial system install. echo "Installing base system..." mount $install_device /tmp/debootstrap/ |