Tim Landscheidt has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/102613


Change subject: Tools: Fix quoting error
......................................................................

Tools: Fix quoting error

$store is a Puppet variable that needs to be substituted by its value
before the command is executed.  This change fixes a regression
introduced by change I748652a44071a98c74637c92f6b66f81213c5b9a.

Change-Id: I9061177e18dc277cb596bd9e0d7db3713314f0a0
---
M modules/toollabs/manifests/init.pp
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/13/102613/1

diff --git a/modules/toollabs/manifests/init.pp 
b/modules/toollabs/manifests/init.pp
index d9d52b0..95f3271 100644
--- a/modules/toollabs/manifests/init.pp
+++ b/modules/toollabs/manifests/init.pp
@@ -44,7 +44,7 @@
     }
 
     exec { 'make_known_hosts':
-        command => '/bin/cat $store/hostkey-* >/etc/ssh/ssh_known_hosts~',
+        command => "/bin/cat $store/hostkey-* >/etc/ssh/ssh_known_hosts~",
         require => File[$store],
     }
 

-- 
To view, visit https://gerrit.wikimedia.org/r/102613
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9061177e18dc277cb596bd9e0d7db3713314f0a0
Gerrit-PatchSet: 1
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Tim Landscheidt <t...@tim-landscheidt.de>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to