From 805f7a55d5adfc4cc3d7fd40d1e18f5936b70db7 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 10 Sep 2003 13:56:01 +0000 Subject: follow std explanations policy --- perl-install/network/netconnect.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'perl-install/network') diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index bd7d45ecc..00803a90a 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -276,27 +276,27 @@ fi sub set_profile { my ($netcnx) = @_; system("/sbin/set-netprofile $netcnx->{PROFILE}"); - log::explanations("current profile is $netcnx->{PROFILE}"); + log::explanations("Switching to \"$netcnx->{PROFILE}\" profile"); } sub save_profile { my ($netcnx) = @_; system("/sbin/save-netprofile $netcnx->{PROFILE}"); - log::explanations("saved $netcnx->{PROFILE} profile"); + log::explanations("Saving \"$netcnx->{PROFILE}\" profile"); } sub del_profile { my ($profile) = @_; return if !$profile || $profile eq "default"; rm_rf("$::prefix/etc/netprofile/profiles/$profile"); - log::explanations("deleted profile $profile"); + log::explanations("Deleting \"$profile\"profile "); } sub add_profile { my ($netcnx, $profile) = @_; return if !$profile || $profile eq "default" || member($profile, get_profiles()); system("/sbin/clone-netprofile $netcnx->{PROFILE} $profile"); - log::explanations("created $profile profile"); + log::explanations("Creating \"$profile\" profile"); } sub get_profiles() { -- cgit v1.2.1