void-packages/srcpkgs/puppet/patches/0001-maint-Add-missing-require-singleton.patch
Nathan Owens c26e0dad41 puppet: Fix runtime
Added new dependencies that fixes runtime
Closes #17162

Signed-off-by: Nathan Owens <ndowens04@gmail.com>
2019-12-07 16:30:04 +01:00

25 lines
719 B
Diff

From 6ce9bee9e23010893952a5b2f6e8fbeb6c4b3628 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= <romain@blogreen.org>
Date: Mon, 25 Nov 2019 15:11:45 -1000
Subject: [PATCH] (maint) Add missing require: singleton
This file use the Singleton pattern implemented by Ruby's Singleton
class in the singleton module. Require the singleton module before
using the Singleton class.
---
lib/puppet/runtime.rb | 1 +
1 file changed, 1 insertion(+)
diff --git lib/puppet/runtime.rb lib/puppet/runtime.rb
index 1d52cec59b..73bd9eb07f 100644
--- lib/puppet/runtime.rb
+++ lib/puppet/runtime.rb
@@ -1,4 +1,5 @@
require 'puppet/http'
+require 'singleton'
class Puppet::Runtime
include Singleton
--
2.24.0