]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/chef/libraries/persistent_token.rb
imagery: restart titiler service to workaround resource leak
[chef.git] / cookbooks / chef / libraries / persistent_token.rb
index 8299e8550716ec89cd2c6b4e8c1ffd118dd52f39..944f19363e8e8e4db618c46245768440ab5cf7b9 100644 (file)
@@ -1,6 +1,6 @@
 require "digest"
 
-class Chef
+module OpenStreetMap
   module Mixin
     module PersistentToken
       def persistent_token(*args)
@@ -13,8 +13,6 @@ class Chef
       end
     end
   end
-
-  class Recipe
-    include Chef::Mixin::PersistentToken
-  end
 end
+
+Chef::DSL::Recipe.include(OpenStreetMap::Mixin::PersistentToken)