]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/postgresql/resources/tablespace.rb
Merge remote-tracking branch 'tigerfell/pr257'
[chef.git] / cookbooks / postgresql / resources / tablespace.rb
index 82e901228e861f9c994723f4fc0952f83ec5dc1c..bfa0c4b8cd361ace35d030ae28f470c84314a609 100644 (file)
 # limitations under the License.
 #
 
+unified_mode true
+
 default_action :create
 
 property :tablespace, :kind_of => String, :name_property => true
 property :cluster, :kind_of => String, :required => true
-property :location, :kind_of => String, :required => true
+property :location, :kind_of => String, :required => [:create]
 
 action :create do
   unless cluster.tablespaces.include?(new_resource.tablespace)