diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-02-28 17:59:37 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-02-28 17:59:37 -0300 |
commit | 6117486e7e3c853269872d3cd4a68e791b5250d2 (patch) | |
tree | f68275a60b46436893b33f3eee915162f1082b61 | |
parent | 43be1b93b34f40aad82e973390fba6bf7a746332 (diff) | |
download | hydra-6117486e7e3c853269872d3cd4a68e791b5250d2.tar.gz hydra-6117486e7e3c853269872d3cd4a68e791b5250d2.tar.bz2 |
Minor cosmetic changes
-rwxr-xr-x | share/hydractl/provision | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/share/hydractl/provision b/share/hydractl/provision index 6fc60dc..59f9e4f 100755 --- a/share/hydractl/provision +++ b/share/hydractl/provision @@ -162,16 +162,16 @@ if ! vgdisplay $vg &> /dev/null; then hydra_safe_run vgcreate $vg $syst_device fi -# Create root partition +# Create root partition. hydra_safe_run vgchange -a y $vg hydra_provision_lvcreate root $root_size -# Create home partition +# Create home partition. if [ "$home_size" != "0" ]; then hydra_provision_lvcreate home $home_size fi -# Create var partition +# Create var partition. if [ "$var_size" != "0" ]; then hydra_provision_lvcreate var $var_size fi @@ -205,20 +205,20 @@ done # Create root fs hydra_provision_create_volume root -# Create home fs +# Create home fs. if [ "$home_size" != "0" ]; then hydra_provision_create_volume home fi -# Create var fs +# Create var fs. if [ "$var_size" != "0" ]; then hydra_provision_create_volume var fi -# Mount root volume +# Mount root volume. hydra_safe_run mount $install_device /tmp/debootstrap/ -# Mount additional volumes +# Mount additional volumes. if [ "$home_size" != "0" ]; then mkdir /tmp/debootstrap/home |