Skip to content

Commit

Permalink
Rename collection to hifis.toolkit
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Ziegner <n.ziegner@hzdr.de>
  • Loading branch information
Normo committed May 7, 2024
1 parent 7e5f408 commit 791481e
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prepare-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ runs:
- name: "Install dependencies via pipenv."
run: "pipenv install --dev"
shell: "bash"
working-directory: "ansible_collections/hifis/software_services"
working-directory: "ansible_collections/hifis/toolkit"
6 changes: 3 additions & 3 deletions .github/workflows/unattended_upgrades.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
- name: "Check out the codebase."
uses: "actions/checkout@v4"
with:
path: "ansible_collections/hifis/software_services"
path: "ansible_collections/hifis/toolkit"

- name: "Prepare the job environment."
uses: "./ansible_collections/hifis/software_services/.github/workflows/prepare-action"
uses: "./ansible_collections/hifis/toolkit/.github/workflows/prepare-action"

- name: "Install modern podman"
run: |
Expand All @@ -72,4 +72,4 @@ jobs:
run: "pipenv run molecule test -s unattended_upgrades"
env:
MOLECULE_IMAGE: "${{ matrix.image }}"
working-directory: "ansible_collections/hifis/software_services"
working-directory: "ansible_collections/hifis/toolkit"
8 changes: 4 additions & 4 deletions .github/workflows/zammad.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ jobs:
- name: "Check out the codebase."
uses: "actions/checkout@v4"
with:
path: "ansible_collections/hifis/software_services"
path: "ansible_collections/hifis/toolkit"

- name: "Prepare the job environment."
uses: "./ansible_collections/hifis/software_services/.github/workflows/prepare-action"
uses: "./ansible_collections/hifis/toolkit/.github/workflows/prepare-action"

# https://github.com/ansible/molecule/issues/3806
- name: "Help molecule to find the dependencies"
run: |
mkdir -p /home/runner/.ansible
ln -s /home/runner/work/ansible-role-unattended-upgrades/ansible-role-unattended-upgrades/ansible_collections/hifis/software_services/roles \
ln -s /home/runner/work/ansible-role-unattended-upgrades/ansible-role-unattended-upgrades/ansible_collections/hifis/toolkit/roles \
/home/runner/.ansible/roles
- name: "Install modern podman"
Expand All @@ -75,4 +75,4 @@ jobs:
run: "XDG_RUNTIME_DIR=/run/user/$UID pipenv run molecule test -s zammad"
env:
MOLECULE_IMAGE: "${{ matrix.image }}"
working-directory: "ansible_collections/hifis/software_services"
working-directory: "ansible_collections/hifis/toolkit"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SPDX-FileCopyrightText: Helmholtz-Zentrum Dresden-Rossendorf (HZDR)
SPDX-License-Identifier: Apache-2.0
-->

# Ansible Collection - hifis.software_services
# Ansible Collection - hifis.toolkit

[![Latest release](https://img.shields.io/github/v/release/hifis-net/ansible-role-unattended-upgrades)](https://github.com/hifis-net/ansible-role-unattended-upgrades/releases)
[![hifis.unattended_upgrades](https://github.com/hifis-net/ansible-role-unattended-upgrades/actions/workflows/unattended_upgrades.yml/badge.svg)](https://github.com/hifis-net/ansible-role-unattended-upgrades/actions/workflows/unattended_upgrades.yml)
Expand Down Expand Up @@ -39,7 +39,7 @@ software engineers, but not exclusively. The following use cases are supported:
Install the collection via ansible-galaxy:

```shell
ansible-galaxy collection install hifis.software_services
ansible-galaxy collection install hifis.toolkit
```

## License
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0

namespace: 'hifis'
name: 'software_services'
name: 'toolkit'
version: '4.0.0'
readme: 'README.md'
authors:
Expand Down
2 changes: 1 addition & 1 deletion molecule/unattended_upgrades/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
tasks:
- name: "Include unattended_upgrades role"
ansible.builtin.include_role:
name: "hifis.software_services.unattended_upgrades"
name: "hifis.toolkit.unattended_upgrades"

...
2 changes: 1 addition & 1 deletion molecule/zammad/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@

- name: "Include ansible-role-zammad"
ansible.builtin.include_role:
name: "hifis.software_services.zammad"
name: "hifis.toolkit.zammad"
4 changes: 2 additions & 2 deletions roles/unattended_upgrades/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ Example for Ubuntu, with custom [origins patterns](#patterns-examples), blacklis
```yaml
- hosts: all
roles:
- role: hifis.software_services.unattended_upgrades
- role: hifis.toolkit.unattended_upgrades
unattended_origins_patterns:
- 'origin=Ubuntu,archive=${distro_codename}-security'
- 'o=Ubuntu,a=${distro_codename}-updates'
Expand All @@ -229,7 +229,7 @@ systems. You can [use `when` conditional with role](https://docs.ansible.com/ans
```yaml
- hosts: all
roles:
- role: hifis.software_services.unattended_upgrades
- role: hifis.toolkit.unattended_upgrades
when: ansible_facts['os_family'] == 'Debian'
```

Expand Down
2 changes: 1 addition & 1 deletion roles/zammad/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ This role has been successfully tested together with the following roles:
```yaml
- hosts: servers
roles:
- role: hifis.software_services.zammad
- role: hifis.toolkit.zammad
become: yes
```

Expand Down

0 comments on commit 791481e

Please sign in to comment.