On Thu, 2009-10-15 at 16:09 +0200, Marc Espie wrote:
> Even though I'm not a big fan of php, what's the point ?
> is it any better than drush.

If understand drush correctly, it enables one to admin Drupal on the
console locally on the server. With p5-Drupal-Admin one can do it
remotely, like putting a site offline:

  #!/usr/bin/perl -w

  use Drupal::Admin;

  my $admin = new Drupal::Admin(baseurl => 'http://bsdanywhere.org');
  $admin->login(user => 'root', password => 'xxxxxxx');
  $admin->offline;

... which then makes it possible to write programs that perform admin
actions on a number of sites on a number of remote servers.
I have to admit I never used drush before. Maybe it does the same.

Reply via email to