From 6050bab4197c5e3cd51d6d2b1e6cc9d604f671e0 Mon Sep 17 00:00:00 2001 From: mischa Date: Tue, 26 May 2020 20:24:56 +0200 Subject: [PATCH] minor wording changes --- deploy.pl | 2 +- remove.pl | 4 ++-- 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;