diff --git a/deploy.pl b/deploy.pl index 5a81aca..67c618c 100755 --- a/deploy.pl +++ b/deploy.pl @@ -233,7 +233,7 @@ sub create_accounts { my %conf = %{$_[0]}; my %vms = %{$_[1]}; - printf "useradd(8) creation:\n"; + printf "useradd(8) users:\n"; for my $vm_name (sort keys %vms) { my $_instance = $vms{$vm_name}{'instance'} || $vm_name; my $_owner = $vms{$vm_name}{'owner'} || $vms{$vm_name}{'username'}; diff --git a/remove.pl b/remove.pl index ae9f482..47939a7 100755 --- a/remove.pl +++ b/remove.pl @@ -71,7 +71,7 @@ sub remove_accounts { my %conf = %{$_[0]}; my %vms = %{$_[1]}; - printf "userdel(8) removal:\n"; + printf "userdel(8) user:\n"; for my $vm_name (sort keys %vms) { my $_instance = $vms{$vm_name}{'instance'} || $vm_name; my $_owner = $vms{$vm_name}{'owner'} || $vms{$vm_name}{'username'}; @@ -116,7 +116,7 @@ sub backup_vm_files { my %conf = %{$_[0]}; my %vms = %{$_[1]}; - printf "vmXX.txt files:\n"; + printf "vmXX.txt file:\n"; for my $vm_name (sort keys %vms) { my $_instance = $vms{$vm_name}{'instance'} || $vm_name; my $filename = $conf{'conf'}{'VMS'} . "/" . $vmid;