]> git.openstreetmap.org Git - chef.git/commitdiff
Fix up issues in dev server rails setup script
authorTom Hughes <tom@compton.nu>
Wed, 14 Aug 2013 18:12:56 +0000 (19:12 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 14 Aug 2013 18:14:52 +0000 (19:14 +0100)
cookbooks/dev/templates/default/rails.setup.rb.erb

index b49dbff4be87252cac10e089c9c00328cd15f7be..3902af477e9fd96fb4818d7ac7bde0d4fa11c1cf 100644 (file)
@@ -9,30 +9,31 @@ unless Object.const_defined?(:Rake) or Object.const_defined?(:POTLATCH2_KEY)
       webmaster.save!
     end
 
-    permissions = Hash[ClientApplication.all_permissions.map { |p| [ p, true ] }]
-
     unless id = webmaster.client_applications.find_by_name("iD")
-      id = ClientApplication.new
+      id = webmaster.client_applications.new
       id.name = "iD"
       id.url = "http://<%= @site %>/"
+      ClientApplication.all_permissions.each { |p| id[p] = true }
       id.save!
     end
 
     ID_KEY = id.key
 
     unless potlatch = webmaster.client_applications.find_by_name("Potlatch 2")
-      potlatch = ClientApplication.new
+      potlatch = webmaster.client_applications.new
       potlatch.name = "Potlatch 2"
       potlatch.url = "http://<%= @site %>/"
+      ClientApplication.all_permissions.each { |p| potlatch[p] = true }
       potlatch.save!
     end
 
     POTLATCH2_KEY = potlatch.key
 
     unless website = webmaster.client_applications.find_by_name("Web Site")
-      website = ClientApplication.new
+      website = webmaster.client_applications.new
       website.name = "Web Site"
       website.url = "http://<%= @site %>/"
+      ClientApplication.all_permissions.each { |p| website[p] = true }
       website.save!
     end