From 0e37b6e920ffebf829bc24a748a70ebeddd77a02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Becker?= Date: Mon, 18 Dec 2017 15:12:00 +0100 Subject: [PATCH] fix typo The variable "glocal_hooks" does not exists, so it resulted in this error: "Error: is not a Hash" --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index 6a98c13c..b9f80ea6 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -487,7 +487,7 @@ validate_integer($backup_cron_hour,23) validate_array($backup_cron_skips) validate_hash($custom_hooks) - validate_hash($glocal_hooks) + validate_hash($global_hooks) class { '::gitlab::install': } -> class { '::gitlab::config': } ~>