Index: trunk/extensions/OpenStackManager/OpenStackNovaHost.php |
— | — | @@ -635,7 +635,7 @@ |
636 | 636 | $hostEntry['puppetclass'][] = $class; |
637 | 637 | } |
638 | 638 | foreach ( $wgOpenStackManagerPuppetOptions['defaultvariables'] as $variable => $value ) { |
639 | | - $hostEntry['puppetvar'][] = $variable . '="' . $value . '"'; |
| 639 | + $hostEntry['puppetvar'][] = $variable . '=' . $value; |
640 | 640 | } |
641 | 641 | if ( $puppetinfo ) { |
642 | 642 | if ( isset( $puppetinfo['classes'] ) ) { |
— | — | @@ -646,7 +646,7 @@ |
647 | 647 | if ( isset( $puppetinfo['variables'] ) ) { |
648 | 648 | foreach ( $puppetinfo['variables'] as $variable => $value ) { |
649 | 649 | if ( $value ) { |
650 | | - $hostEntry['puppetvar'][] = $variable . '="' . $value . '"'; |
| 650 | + $hostEntry['puppetvar'][] = $variable . '=' . $value; |
651 | 651 | } |
652 | 652 | } |
653 | 653 | } |