summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormischa <mischa@rx.high5.nl>2020-05-26 20:24:56 +0200
committermischa <mischa@rx.high5.nl>2020-05-26 20:24:56 +0200
commit6050bab4197c5e3cd51d6d2b1e6cc9d604f671e0 (patch)
treeec55d0f7418bd39d3f49502575939d939a245a46
parentab9f3da989c663a1752184cd5148a65a27f4c78b (diff)
minor wording changes
-rwxr-xr-xdeploy.pl2
-rwxr-xr-xremove.pl4
2 files changed, 3 insertions, 3 deletions
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;