Hi All.
With your help i made an script to create a list of clients.
File Client.param.sql
create type:NSR client;
name:server01;
server:legatoserver;
comment:"Backup Windows 2000 Backup SQL";
schedule:BackupW2KDepartFull;
browse policy:Month;
retention policy:TwoMonths;
group:BackupW2KDepartSQL;
save set:"mssql:";
aliases:server01;
storage nodes:nsrserverhost;
Backup command:nsrsqlsv;
Script
VAR1=XXX
for i in `cat srvsql.txt`
do
VAR2=$VAR1
VAR1=$i
sed -e "s/$VAR2/$VAR1/g" client.param.sql > client.param2.sql
cp -p client.param2.sql client.param.sql
nsradmin -i client.param.sql
done
I want to know if there is a way to edit some properties of the clients, or i must recreate them
Thanks in advance
With your help i made an script to create a list of clients.
File Client.param.sql
create type:NSR client;
name:server01;
server:legatoserver;
comment:"Backup Windows 2000 Backup SQL";
schedule:BackupW2KDepartFull;
browse policy:Month;
retention policy:TwoMonths;
group:BackupW2KDepartSQL;
save set:"mssql:";
aliases:server01;
storage nodes:nsrserverhost;
Backup command:nsrsqlsv;
Script
VAR1=XXX
for i in `cat srvsql.txt`
do
VAR2=$VAR1
VAR1=$i
sed -e "s/$VAR2/$VAR1/g" client.param.sql > client.param2.sql
cp -p client.param2.sql client.param.sql
nsradmin -i client.param.sql
done
I want to know if there is a way to edit some properties of the clients, or i must recreate them
Thanks in advance