mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
snap: enable ubuntu in integration tests (#6299)
enable ubuntu in integration tests for snap
This commit is contained in:
parent
a64e36820f
commit
37cddb8c02
4 changed files with 21 additions and 3 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
|
||||||
|
|
|
@ -11,4 +11,3 @@ skip/freebsd
|
||||||
skip/osx
|
skip/osx
|
||||||
skip/macos
|
skip/macos
|
||||||
skip/docker
|
skip/docker
|
||||||
skip/ubuntu # FIXME!
|
|
||||||
|
|
|
@ -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