Ich versuche, einen einfachen Drush-Alias zu schreiben, um eine Verbindung zu einer Drupal-Site herzustellen, die auf einer lokalen Vagrant-Instanz ausgeführt wird.
Ich habe Folgendes in einer Datei namens ~/.drush/l.aliases.drushrc.php
:
$aliases['o'] = array(
'parent' => 'l',
'root' => '/vagrant/docroot',
'remote-host' => '127.0.0.1',
'remote-user' => 'vagrant',
'ssh-options' => '-p 2222 -i ~/.vagrant.d/insecure_private_key',
'uri' => '127.0.0.1:8080',
);
Der Alias wird gefunden. drush sa
kehrt zurück:
l
l.o
Allerdings, wenn ich drush @l.o status
es keine Verbindung zu der Remote - Host:
PHP executable : /usr/local/bin/php
PHP configuration : /usr/local/etc/php/5.3/php.ini
PHP OS : Darwin
Drush version : 6.1.0
Drush configuration :
Ich habe bestätigt, dass dieser Befehl erfolgreich eine Verbindung zu Vagrant herstellt:
ssh vagrant@127.0.0.1 -p 2222 -i ~/.vagrant.d/insecure_private_key
Das Debuggen der Ausgabe zeigt keinen SSH-Befehl an, soweit ich das beurteilen kann:
SIG-106:ilob justin$ drush --debug @l.o status
Bootstrap to phase 0. [0 sec, 3.78 MB] [bootstrap]
Drush bootstrap phase : _drush_bootstrap_drush() [0.01 sec, 3.98 MB] [bootstrap]
Loaded alias @l.o from file /Users/justin/.drush/l.aliases.drushrc.php [0.01 sec, 3.99 MB] [notice]
Cache MISS cid: 6.1.0-commandfiles-0-807b6772846e18b2741e8d5b7119b4cc [0.01 sec, 4 MB] [debug]
Cache SET cid: 6.1.0-commandfiles-0-807b6772846e18b2741e8d5b7119b4cc [0.01 sec, 4.02 MB] [debug]
Bootstrap to phase 0. [0.05 sec, 9.56 MB] [bootstrap]
Found command: core-status (commandfile=core) [0.08 sec, 9.56 MB] [bootstrap]
Loading outputformat engine. [0.13 sec, 9.6 MB] [notice]
Calling hook drush_core_status [0.14 sec, 9.65 MB] [debug]
Returned from hook drush_core_status [0.14 sec, 9.66 MB]
Ich weiß, dass ich etwas Dummes tun muss, aber ich kann es einfach nicht sehen.
drush --debug @l.o status
zeigt? Der genaue Befehl ssh sollte in der Ausgabe vergraben sein.