source: locker/deploy/bin/wordpress @ 469

Last change on this file since 469 was 469, checked in by andersk, 16 years ago
deploydev -> deploy
  • Property svn:executable set to *
File size: 726 bytes
Line 
1#!/usr/bin/perl
2use strict;
3use lib '/mit/scripts/deploy/bin';
4use onserver;
5
6setup();
7
8fetch_uri(
9    'wp-admin/setup-config.php',
10    {step => 2},
11    {dbhost => $sqlhost,
12     uname => $sqluser,
13     dbname => $sqldb,
14     pwd => $sqlpass,
15     prefix => '',
16     submit => 'Submit',
17     step => 2});
18
19my $html = fetch_uri(
20    'wp-admin/install.php',
21    {step => 2},
22    {weblog_title => 'My Blog',
23     admin_email => "$human\@mit.edu",
24     submit => 'Continue',
25     step => 2});
26while ($html =~ /<dd><code>(.*)<\/code><\/dd>/g) {
27    $admin_username = $admin_password;
28    $admin_password = $1;
29}
30
31print_login_info();
32print "You will also receive this login information at your MIT email address.\n";
33press_enter();
Note: See TracBrowser for help on using the repository browser.