Merge "Remove useless method file_path"

This commit is contained in:
Jenkins 2017-10-07 21:33:19 +00:00 committed by Gerrit Code Review
commit 6e0dbe4272
3 changed files with 4 additions and 10 deletions

View File

@ -19,9 +19,4 @@ Puppet::Type.type(:libvirtd_config).provide(
'/etc/libvirt/libvirtd.conf'
end
# this needs to be removed. This has been replaced with the class method
def file_path
self.class.file_path
end
end

View File

@ -19,9 +19,4 @@ Puppet::Type.type(:nova_paste_api_ini).provide(
'/etc/nova/api-paste.ini'
end
# this needs to be removed. This has been replaced with the class method
def file_path
self.class.file_path
end
end

View File

@ -0,0 +1,4 @@
---
upgrade:
- Remove useless method file_path
This needs to be removed. This has been replaced with the class method.