r81466 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r81465‎ | r81466 | r81467 >
Date:16:15, 3 February 2011
Author:laner
Status:deferred
Tags:
Comment:
Fixing puppetVal addition in LDAP. Puppet ignores variables in LDAP unless they are in the form "var=val", "var = val" is not valid (which is rediculous).
Modified paths:
  • /trunk/extensions/OpenStackManager/OpenStackNovaHost.php (modified) (history)

Diff [purge]

Index: trunk/extensions/OpenStackManager/OpenStackNovaHost.php
@@ -633,7 +633,7 @@
634634 }
635635 foreach ( $puppetinfo['variables'] as $variable => $value ) {
636636 if ( $value ) {
637 - $hostEntry['puppetvar'][] = $variable . ' = ' . $value;
 637+ $hostEntry['puppetvar'][] = $variable . '=' . $value;
638638 }
639639 }
640640 }

Status & tagging log