]> gitweb.fluxo.info Git - hydra.git/commitdiff
Minor cosmetic changes
authorSilvio Rhatto <rhatto@riseup.net>
Fri, 28 Feb 2014 20:59:37 +0000 (17:59 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Fri, 28 Feb 2014 20:59:37 +0000 (17:59 -0300)
share/hydractl/provision

index 6fc60dcde034803f042d2bd1242c8276ea83dee3..59f9e4ff71d8b537fb77436c86787febac3b16f4 100755 (executable)
@@ -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