1
0
Fork 0
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:
Alexei Znamensky 2023-04-09 04:20:28 +12:00 committed by GitHub
parent a64e36820f
commit 37cddb8c02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 3 deletions

View 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

View file

@ -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)
# SPDX-License-Identifier: GPL-3.0-or-later
- name: Install snapd
- name: Install snapd (default)
package:
name: "{{ snap_packages }}"
state: present

View file

@ -11,4 +11,3 @@ skip/freebsd
skip/osx
skip/macos
skip/docker
skip/ubuntu # FIXME!

View file

@ -53,7 +53,7 @@
- name: Check package has been installed correctly (hello-world)
command: hello-world
environment:
PATH: /var/lib/snapd/snap/bin/
PATH: /snap/bin/
- name: Remove package (hello-world) (check mode)
community.general.snap: