Changeset 239


Ignore:
Timestamp:
Mar 20, 2007, 8:49:25 PM (17 years ago)
Author:
jbarnold
Message:
First attempt to fix autoinstaller bug
Using a subdir of web_scripts seems to be smarter
Location:
locker/deploy/bin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • locker/deploy/bin/onserver.pm

    r127 r239  
    6363  }
    6464 
    65   if(-e "$HOME/.sql/.$deploy.admin") {
    66     $admin_password=`cat $HOME/.sql/.$deploy.admin`;
     65  if(-e "$HOME/web_scripts/$addrend/.admin") {
     66    $admin_password=`cat $HOME/web_scripts/$addrend/.admin`;
    6767  }
    6868  chomp($admin_password);
    69   unlink "$HOME/.sql/.$deploy.admin";
     69  unlink "$HOME/web_scripts/$addrend/.admin";
    7070 
    7171  print "\nConfiguring $sname...\n";
  • locker/deploy/bin/prompt-password

    r127 r239  
    3636echo
    3737echo OK.  Continuing with the install...
    38 echo "$admin_pass1" > $HOME/.sql/.$deploy.admin
     38cat <<EOF > $HOME/web_scripts/$addrend/.admin
     39$admin_pass1
     40EOF
Note: See TracChangeset for help on using the changeset viewer.