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 @@
634
634
}
635
635
foreach ( $puppetinfo['variables'] as $variable => $value ) {
636
636
if ( $value ) {
637
- $hostEntry['puppetvar'][] = $variable . ' = ' . $value;
637
+ $hostEntry['puppetvar'][] = $variable . '=' . $value;
638
638
}
639
639
}
640
640
}
Status & tagging log
14:15, 7 February 2011
Reedy
(
talk
|
contribs
)
changed the
status
of r81466
[
removed:
new
added:
deferred]