mirror of
https://github.com/DO1JLR/ansible_linux_desktop_setup.git
synced 2024-09-14 19:54:51 +02:00
update submodules and some actions that will fail
This commit is contained in:
parent
c615e8a83e
commit
9b5a2a1371
5 changed files with 62 additions and 26 deletions
18
.github/workflows/ansible-linting-check.yml
vendored
Normal file
18
.github/workflows/ansible-linting-check.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
name: Ansible Lint check
|
||||||
|
|
||||||
|
# yamllint disable-line rule:truthy
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Lint Ansible Playbook
|
||||||
|
uses: ansible/ansible-lint-action@master
|
||||||
|
with:
|
||||||
|
targets: "site.yml"
|
22
.github/workflows/yamllint.yaml
vendored
Normal file
22
.github/workflows/yamllint.yaml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
name: 'Yamllint GitHub Actions'
|
||||||
|
|
||||||
|
# yamllint disable-line rule:truthy
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
yamllint:
|
||||||
|
name: 'Yamllint'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
- name: 'Yamllint'
|
||||||
|
uses: karancode/yamllint-github-action@master
|
||||||
|
with:
|
||||||
|
yamllint_file_or_dir: '.'
|
||||||
|
yamllint_config_filepath: './.yamllint'
|
||||||
|
yamllint_strict: false
|
||||||
|
yamllint_comment: true
|
||||||
|
# env:
|
||||||
|
# GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }
|
2
.gitmodules
vendored
2
.gitmodules
vendored
|
@ -33,7 +33,7 @@
|
||||||
url = https://github.com/roles-ansible/role_akku_warning.git
|
url = https://github.com/roles-ansible/role_akku_warning.git
|
||||||
[submodule "roles/install-firefox"]
|
[submodule "roles/install-firefox"]
|
||||||
path = roles/install-firefox
|
path = roles/install-firefox
|
||||||
url = https://github.com/chaos-bodensee/role-firefox-installation.git
|
url = https://github.com/roles-ansible/ansible_role_install_firefox.git
|
||||||
[submodule "roles/xrandr"]
|
[submodule "roles/xrandr"]
|
||||||
path = roles/xrandr
|
path = roles/xrandr
|
||||||
url = https://github.com/chaos-bodensee/role-xrandr.git
|
url = https://github.com/chaos-bodensee/role-xrandr.git
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit ee9709d0fcd563e54dd928655f5d0f0c285d5b31
|
Subproject commit 31fbb5b16c58e057b966c9f2371c50ab3e9160c8
|
44
site.yml
44
site.yml
|
@ -1,36 +1,32 @@
|
||||||
---
|
---
|
||||||
- name: check if ansible is not to old
|
- name: check if ansible is not to old
|
||||||
hosts: localhost
|
hosts: localhost
|
||||||
tags:
|
|
||||||
- default
|
|
||||||
- always
|
|
||||||
roles:
|
roles:
|
||||||
- ansible_version
|
- {role: ansible_version, tags: always, gather_facts: false}
|
||||||
gather_facts: no
|
|
||||||
|
|
||||||
- name: run base setup roles
|
- name: run base setup roles
|
||||||
hosts: localhost
|
hosts: localhost
|
||||||
roles:
|
roles:
|
||||||
- { role: base, tags: [default,packages,base]}
|
- {role: base, tags: [default, packages, base]}
|
||||||
- { role: workstation_packages, tags: [default, workstation_packages, packages, setup]}
|
- {role: workstation_packages, tags: [default, workstation_packages, packages, setup]}
|
||||||
- { role: ntp, tags: ntp }
|
- {role: ntp, tags: ntp}
|
||||||
- { role: arch-fonts, tags: [font,fonts,arch-fonts]}
|
- {role: arch-fonts, tags: [font, fonts, arch-fonts]}
|
||||||
|
|
||||||
- name: user specific setup
|
- name: user specific setup
|
||||||
hosts: localhost
|
hosts: localhost
|
||||||
roles:
|
roles:
|
||||||
- { role: dotfiles, tags: [default,dotfiles,fancy]}
|
- {role: dotfiles, tags: [default, dotfiles, fancy]}
|
||||||
- { role: manage_users, tags: [ssh,manage,manage_users]}
|
- {role: manage_users, tags: [ssh, manage, manage_users]}
|
||||||
- { role: authorized_keys, tags: [ssh,auth,authorized_keys]}
|
- {role: authorized_keys, tags: [ssh, auth, authorized_keys]}
|
||||||
- { role: sshd, tags: [ssh, sshd]}
|
- {role: sshd, tags: [ssh, sshd]}
|
||||||
- { role: akku-warning, tags: [akku,akku_warning,akku-warning]}
|
- {role: akku-warning, tags: [akku, akku_warning, akku-warning]}
|
||||||
- { role: pulseaudio, tags: pulseaudio }
|
- {role: pulseaudio, tags: pulseaudio}
|
||||||
- { role: networkmanager, tags: [nm, networkmanager]}
|
- {role: networkmanager, tags: [nm, networkmanager]}
|
||||||
- { role: copy_files }
|
- {role: copy_files}
|
||||||
- { role: i3wm, tags: i3wm }
|
- {role: i3wm, tags: i3wm}
|
||||||
- { role: xrandr, tags: xrandr }
|
- {role: xrandr, tags: xrandr}
|
||||||
- { role: install-firefox, tags: firefox }
|
- {role: install-firefox, tags: firefox}
|
||||||
- { role: nextcloud, tags: nextcloud }
|
- {role: nextcloud, tags: nextcloud}
|
||||||
- { role: openvpn, tags: openvpn }
|
- {role: openvpn, tags: openvpn}
|
||||||
- { role: winehq, tags: [wine, winehq]}
|
- {role: winehq, tags: [wine, winehq]}
|
||||||
- { role: no-sleep, tags: no_sleep }
|
- {role: no-sleep, tags: no_sleep}
|
||||||
|
|
Loading…
Reference in a new issue