Changeset 473 for locker/deploy
- Timestamp:
- Oct 14, 2007, 3:54:38 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
locker/deploy/bin/joomla
r472 r473 3 3 use lib '/mit/scripts/deploy/bin'; 4 4 use onserver; 5 use Cwd; 5 6 6 7 setup(); … … 22 23 DBSample => 1}); 23 24 24 my $pwd = `pwd`;25 chomp($pwd);26 27 print "=== $base_uri ===\n";28 29 25 fetch_uri( 30 26 'installation/install4.php', … … 37 33 sitename => $title, 38 34 siteUrl => $base_uri, 39 absolutePath => $pwd,35 absolutePath => getcwd(), 40 36 adminEmail => "$human\@mit.edu", 41 37 adminPassword => $admin_password, … … 43 39 dirPerms => 0}); 44 40 45 `rm -rf installation`;41 system('rm', '-rf', 'installation');
Note: See TracChangeset
for help on using the changeset viewer.