Remove useless method file_path

This needs to be removed. This has been replaced with the class method.

Change-Id: I6f3e79b1ba5a3f7a4f320495f8df9f053bfd78f9
This commit is contained in:
zhangyangyang 2017-10-06 13:53:17 +08:00
parent e81ddb4c16
commit ffbd351569
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' '/etc/libvirt/libvirtd.conf'
end end
# this needs to be removed. This has been replaced with the class method
def file_path
self.class.file_path
end
end end

View File

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