diff -up e-smith-backup-2.2.0/root/etc/e-smith/events/actions/workstation-backup-dar.workstation-backup-df e-smith-backup-2.2.0/root/etc/e-smith/events/actions/workstation-backup-dar --- e-smith-backup-2.2.0/root/etc/e-smith/events/actions/workstation-backup-dar.workstation-backup-df +++ e-smith-backup-2.2.0/root/etc/e-smith/events/actions/workstation-backup-dar @@ -99,7 +99,7 @@ # mounting backup directory -$report .= "Mounting backup shared directory $smbhost/$smbshare \n"; +$report .= "Mounting backup shared directory <$smbhost:$smbshare>\n"; # ping the SMB Host to see if it is awake @@ -143,12 +143,12 @@ if ($VFSType eq 'cifs') { $err = qx(/bin/mount -t cifs "$smbhost:$smbshare" $mntdir -o credentials=/etc/dar/CIFScredentials,nounix 2>&1); - ldie("Error while mounting $smbhost:$smbshare : \n" . $err) if $err; + ldie("Error while mounting <$smbhost:$smbshare>\n" . $err) if $err; } elsif ($VFSType eq 'nfs') { $err = qx(/bin/mount -t nfs -o nolock "$smbhost:/$smbshare" $mntdir 2>&1); - ldie("Error while mounting $smbhost:/$smbshare : \n" . $err) if $err; + ldie("Error while mounting <$smbhost:/$smbshare>\n" . $err) if $err; } elsif ($VFSType eq 'usb') { @@ -185,7 +185,7 @@ } else { - ldie("Error while mounting $smbhost/$smbshare : $VFSType not supported.\n"); + ldie("Error while mounting <$smbhost:$smbshare> $VFSType not supported.\n"); } $mntdone = 1;