{
# Where to store roving profiles
# %L substitutes for this logon servers name
# %N substitutes for this servers netbios name
# %U is username
# WinNT/W2K uses logon path
# Win9x uses logon home

    return "" unless ($SMB_DomainMaster eq "yes");

    my $default = (db_get_prop($confref, 'smb', 'RoamingProfiles') eq "yes")
		? '\\\%L\Profiles\%U' : '';

    my $logonPath = db_get_prop($confref, "smb", "LogonPath") || $default;

    return "logon path = $logonPath";
}
