mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[PR #6299/37cddb8c backport][stable-5] snap: enable ubuntu in integration tests (#6301)
snap: enable ubuntu in integration tests (#6299)
enable ubuntu in integration tests for snap
(cherry picked from commit 37cddb8c02
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
552e1e826c
commit
e113c8cf11
3 changed files with 21 additions and 2 deletions
19
tests/integration/targets/setup_snap/tasks/D-Ubuntu.yml
Normal file
19
tests/integration/targets/setup_snap/tasks/D-Ubuntu.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
---
|
||||||
|
# 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 snapd (ubuntu)
|
||||||
|
package:
|
||||||
|
name: "{{ snap_packages }}"
|
||||||
|
state: present
|
||||||
|
notify: Remove snapd
|
||||||
|
|
||||||
|
- name: Make sure that snapd is running
|
||||||
|
service:
|
||||||
|
name: snapd
|
||||||
|
state: started
|
||||||
|
|
||||||
|
- name: Inform that snap is installed
|
||||||
|
set_fact:
|
||||||
|
has_snap: true
|
|
@ -3,7 +3,7 @@
|
||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# 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
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
- name: Install snapd
|
- name: Install snapd (default)
|
||||||
package:
|
package:
|
||||||
name: "{{ snap_packages }}"
|
name: "{{ snap_packages }}"
|
||||||
state: present
|
state: present
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
- name: Check package has been installed correctly (hello-world)
|
- name: Check package has been installed correctly (hello-world)
|
||||||
command: hello-world
|
command: hello-world
|
||||||
environment:
|
environment:
|
||||||
PATH: /var/lib/snapd/snap/bin/
|
PATH: /snap/bin/
|
||||||
|
|
||||||
- name: Remove package (hello-world) (check mode)
|
- name: Remove package (hello-world) (check mode)
|
||||||
community.general.snap:
|
community.general.snap:
|
||||||
|
|
Loading…
Reference in a new issue