diff --git a/roles/jira_config/molecule/default/molecule.yml b/roles/jira_config/molecule/default/molecule.yml index 3941903..7f9d61a 100644 --- a/roles/jira_config/molecule/default/molecule.yml +++ b/roles/jira_config/molecule/default/molecule.yml @@ -12,6 +12,8 @@ platforms: image: ubuntu:bionic provisioner: name: ansible + options: + skip-tags: runtime_pkg lint: name: ansible-lint inventory: diff --git a/roles/jira_download/molecule/default/molecule.yml b/roles/jira_download/molecule/default/molecule.yml index 908624c..e79e3ff 100644 --- a/roles/jira_download/molecule/default/molecule.yml +++ b/roles/jira_download/molecule/default/molecule.yml @@ -12,6 +12,8 @@ platforms: image: ubuntu:bionic provisioner: name: ansible + options: + skip-tags: runtime_pkg lint: name: ansible-lint inventory: diff --git a/roles/jira_download/molecule/version_override/molecule.yml b/roles/jira_download/molecule/version_override/molecule.yml index 908624c..e79e3ff 100644 --- a/roles/jira_download/molecule/version_override/molecule.yml +++ b/roles/jira_download/molecule/version_override/molecule.yml @@ -12,6 +12,8 @@ platforms: image: ubuntu:bionic provisioner: name: ansible + options: + skip-tags: runtime_pkg lint: name: ansible-lint inventory: diff --git a/roles/product_common/tasks/amazon.yml b/roles/product_common/tasks/amazon.yml index f72fb53..a37e1d4 100644 --- a/roles/product_common/tasks/amazon.yml +++ b/roles/product_common/tasks/amazon.yml @@ -5,9 +5,13 @@ name: - java-{{ java_version }}-openjdk-devel - git-{{ git_version }} + tags: + - runtime_pkg # Amazon Linux 2 supplies extra packages via a special command. - name: Enable Postgresql from 'extras' command: amazon-linux-extras install -y "postgresql{{ postgres_version }}" args: creates: /usr/bin/psql + tags: + - runtime_pkg diff --git a/roles/product_common/tasks/ubuntu.yml b/roles/product_common/tasks/ubuntu.yml index 1fa8807..9cf5643 100644 --- a/roles/product_common/tasks/ubuntu.yml +++ b/roles/product_common/tasks/ubuntu.yml @@ -6,3 +6,5 @@ - openjdk-{{ java_major_version }}-jdk-headless - postgresql-client - git + tags: + - runtime_pkg