From 66cec45960ce1d9c794e9399de15c138acb18aed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 18:03:42 +0200 Subject: Adding upstream version 7.3.0+dfsg. Signed-off-by: Daniel Baumann --- ansible_collections/community/sops/playbooks/install.yml | 12 ++++++++++++ .../community/sops/playbooks/install_localhost.yml | 14 ++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 ansible_collections/community/sops/playbooks/install.yml create mode 100644 ansible_collections/community/sops/playbooks/install_localhost.yml (limited to 'ansible_collections/community/sops/playbooks') diff --git a/ansible_collections/community/sops/playbooks/install.yml b/ansible_collections/community/sops/playbooks/install.yml new file mode 100644 index 00000000..faff3b99 --- /dev/null +++ b/ansible_collections/community/sops/playbooks/install.yml @@ -0,0 +1,12 @@ +--- +# Copyright (c) Ansible Project +# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) +# SPDX-License-Identifier: GPL-3.0-or-later + +- name: Install sops + gather_facts: true + hosts: all + tasks: + - name: Install sops on remote hosts + ansible.builtin.include_role: + name: community.sops.install diff --git a/ansible_collections/community/sops/playbooks/install_localhost.yml b/ansible_collections/community/sops/playbooks/install_localhost.yml new file mode 100644 index 00000000..55f65152 --- /dev/null +++ b/ansible_collections/community/sops/playbooks/install_localhost.yml @@ -0,0 +1,14 @@ +--- +# Copyright (c) Ansible Project +# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) +# SPDX-License-Identifier: GPL-3.0-or-later + +- name: Install sops on localhost + gather_facts: false + hosts: localhost + tasks: + - name: Install sops on localhost + ansible.builtin.include_role: + name: community.sops.install + vars: + sops_install_on_localhost: true -- cgit v1.2.3