From 91ad51389d15076c70eeb0c4e21a28e732bb5f6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Albertin?= Date: Mon, 6 May 2019 21:46:37 +0200 Subject: [PATCH] Update implementation artifacts Just like `tosca.artifacts.Implementation.Bash` and `tosca.artifacts.Implementation.Python` it makes sens to make `org.alien4cloud.artifacts.BatchScript` and `org.alien4cloud.artifacts.AnsiblePlaybook` derive from `tosca.artifacts.Implementation` This allows to detect them as implementation artifacts. --- alien-base-types/alien-base-types.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alien-base-types/alien-base-types.yml b/alien-base-types/alien-base-types.yml index 6265f65..a3c49bf 100644 --- a/alien-base-types/alien-base-types.yml +++ b/alien-base-types/alien-base-types.yml @@ -12,11 +12,11 @@ description: Types supported by alien 4 cloud that extends the TOSCA specificati artifact_types: org.alien4cloud.artifacts.BatchScript: - derived_from: tosca.artifacts.Root + derived_from: tosca.artifacts.Implementation description: A Windows batch script (.bat or .cmd) file_ext: [ bat, cmd] org.alien4cloud.artifacts.AnsiblePlaybook: - derived_from: tosca.artifacts.Root + derived_from: tosca.artifacts.Implementation mime_type: application/zip file_ext: [ ansible ]