Skip to content

Commit

Permalink
Merge pull request #6 from bec-galaxy/develop
Browse files Browse the repository at this point in the history
Updated supported operating systems
  • Loading branch information
patbec authored Nov 1, 2023
2 parents 13ef6df + 80c211f commit 778dcde
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
5 changes: 5 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,8 @@ releases:
minor_changes:
- Updated incorrect path in documentation and unit test.
release_date: "2023-10-01"
1.1.2:
changes:
minor_changes:
- Debian Bookworm and Ubuntu Lunar added to supported versions.
release_date: "2023-11-01"
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace: bec
name: shell

version: 1.1.1
version: 1.1.2
readme: README.md
authors:
- Patrick Becker <[email protected]>
Expand Down
10 changes: 6 additions & 4 deletions molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ dependency:
driver:
name: docker
platforms:
- name: ubuntu-20.04
image: ubuntu:20.04
- name: ubuntu-23.04
image: ubuntu:23.04
- name: ubuntu-22.04
image: ubuntu:22.04
- name: ubuntu-20.04
image: ubuntu:20.04
- name: debian-12
image: debian:12
- name: debian-11
image: debian:11
- name: debian-10
image: debian:10
provisioner:
name: ansible
inventory:
Expand Down
3 changes: 2 additions & 1 deletion roles/zsh/meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ galaxy_info:
platforms:
- name: Debian
versions:
- bookworm
- bullseye
- buster
- name: Ubuntu
versions:
- lunar
- jammy
- focal

Expand Down
4 changes: 2 additions & 2 deletions roles/zsh/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
- zsh_system_config is defined

- name: Ensure zsh with dependencies are installed
ansible.builtin.apt:
ansible.builtin.package:
name: "{{ ['zsh'] + zsh_dependencies }}"
state: present
update_cache: true
update_cache: true # Unknown arguments will be passed to the underlying package module.
become: true
tags:
- zsh
Expand Down

0 comments on commit 778dcde

Please sign in to comment.