- Timestamp:
- Dec 15, 2008 10:19:47 PM (16 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
- Children:
- fe157b9
- Parents:
- f3d72f7
- Location:
- fedkit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
fedkit/fed-tun.pl
rf3d72f7 rb09f346 370 370 sub setup_tunnel_cfg { 371 371 my (%opts) = @_; 372 my $tunnel_iface = "em0"; # XXX 372 #my $tunnel_iface = "em0"; # XXX 373 my $tunnel_iface = $opts{'interface'} || "em0"; 373 374 my $tunnel_ip; 374 375 my $tunnel_mask; … … 410 411 my $config_succeeded = 0; 411 412 my $tries = 0; 412 my $max_retries = 30 ;413 my $max_retries = 300; 413 414 414 415 do { -
fedkit/federate.sh
rf3d72f7 rb09f346 76 76 SMBPROJECT=`$PERL -ne '/ProjectName:\s+(.*)/i && print "$1\n";' $CONFIGDIR/client.conf` 77 77 78 # If this is empty confusion reigns. Set a default. 79 if [-z "$SHARE" ]; then 80 SHARE="USERS" 81 fi 82 78 83 # XXX: modified seer daemon to read a config file. Not in the tarfile yet. If 79 84 # we see one, and there's a /usr/seer/backend/daemon.py, replace that one with … … 93 98 fi 94 99 95 GWIP=`host -N 10 $GATEWAY | $PERL -ne 's/.* has address // && print;'` 100 while [ -z "$GWIP"]; do 101 GWIP=`host -N 10 $GATEWAY | $PERL -ne 's/.* has address // && print;'` 102 echo "GWIP is $GWIP" 103 sleep 10 104 done 96 105 # Copy the global hostnames file into /etc/hosts so this node can address 97 106 # others in the experiment on other testbeds. The extra steps preserves teh
Note: See TracChangeset
for help on using the changeset viewer.