diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-01-27 18:20:19 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-01-27 18:20:19 -0800 |
commit | 96dcfb150bd33ba0f5c158c27d7077f27fa1223d (patch) | |
tree | aec10f3bf28b99ce8303210a15ecd0f1286f2d08 /lib | |
parent | f28891636d2ae361d35fd7d7f0a7fc5f63732034 (diff) | |
download | vyatta-cfg-system-96dcfb150bd33ba0f5c158c27d7077f27fa1223d.tar.gz vyatta-cfg-system-96dcfb150bd33ba0f5c158c27d7077f27fa1223d.zip |
Make message clearer
But I doub that anyone will ever read it...
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/Vyatta/Login/User.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Login/User.pm b/lib/Vyatta/Login/User.pm index cc28fd1e..11cf7f23 100755 --- a/lib/Vyatta/Login/User.pm +++ b/lib/Vyatta/Login/User.pm @@ -215,7 +215,7 @@ sub update { # did we see this user in configuration? next if defined $users{$user}; - warn "User $user not listed in current configuration\n"; + warn "removing $user not listed in current configuration\n"; # Remove user account but leave home directory to be safe system("sudo userdel $user") == 0 or die "Attempt to delete user $user failed: $!"; |