]> Destination SSDIR The directory that will contain the srcsafe.ini file for the destination repostiory. if ( $ui->in_edit_mode ) { $default = $ui->dest->repo_server; $is_current_value = 1; } vss $ui->new_dest( $answer ); $ui->dest->repo_server( $answer ) unless empty $answer; Destination SSUSER Enter the SSUSER value needed to access the destination server. Defaults to the current environment's SSUSER or 'Admin'. if ( $ui->in_edit_mode ) { $default = $ui->dest->repo_user; $is_current_value = 1; } else { $default = empty( $ENV{SSUSER} ) ? "Admin" : $ENV{SSUSER} ; } $ui->dest->repo_user( $answer ) unless empty $answer; Destination SSPWD If a password (SSPWD) is needed to access the destination server, enter it here. Defaults to the current SSPWD if one is set. WARNING: entering a password will cause it to be echoed in plain text to the terminal. if ( $ui->in_edit_mode ) { unless ( empty $ui->dest->repo_password ) { $default = "** current password **"; $is_current_value = 1; } } else { $default = "** current SSPWD **" unless empty $ENV{SSPWD}; } if ( $ui->in_edit_mode ) { $answer = $ui->dest->repo_password if $answer eq "** current password **"; } else { $answer = $ENV{SSPWD} if $answer eq "** current SSPWD **"; } $ui->dest->repo_password( $answer ) unless empty $answer; Destination VSS filespec Enter the vss filespec of the destination directory, with or without a leading "$/" or "/" (all names are taken as absolute). if ( $ui->in_edit_mode ) { $default = $ui->dest->repo_filespec ; $is_current_value = 1; } $ui->dest->repo_filespec( $answer ); 'mkss' the destination SSDIR If the destination SSDIR is a local directory, should VCP use mkss to initialize a vss repository in it? if ($ui->in_edit_mode ) { $default = $ui->dest->{VSS_MKSS_SSDIR} ? "yes" : "no" ; $is_current_value = 1; } else { $default = "no"; } yes $ui->dest->{VSS_MKSS_SSDIR} = 1 ; no $ui->dest->{VSS_MKSS_SSDIR} = 0 ;