From b20d8b931cfe80600a073578a574884e5bb14d80 Mon Sep 17 00:00:00 2001 From: Sebastian Reitenbach Date: Thu, 26 Mar 2015 12:30:26 +0100 Subject: [PATCH] Fix breakage on OpenBSD in similar fashion as it is done for Windows. Broken since the switch from the shell script to the ruby script. --- manifests/setup.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/setup.pp b/manifests/setup.pp index 95cce4a16..eab59a32d 100644 --- a/manifests/setup.pp +++ b/manifests/setup.pp @@ -43,6 +43,7 @@ $script_command = $::osfamily? { 'windows' => "ruby.exe '${script_path}'", + 'openbsd' => "/usr/local/bin/ruby21 '${script_path}'", default => $script_path }