1
0
Fork 0
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:
L3D 2021-03-12 00:30:28 +01:00
parent c615e8a83e
commit 9b5a2a1371
Signed by: l3d
GPG key ID: CD08445BFF4313D1
5 changed files with 62 additions and 26 deletions

View 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
View 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
View file

@ -33,7 +33,7 @@
url = https://github.com/roles-ansible/role_akku_warning.git
[submodule "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"]
path = roles/xrandr
url = https://github.com/chaos-bodensee/role-xrandr.git

@ -1 +1 @@
Subproject commit ee9709d0fcd563e54dd928655f5d0f0c285d5b31
Subproject commit 31fbb5b16c58e057b966c9f2371c50ab3e9160c8

View file

@ -1,36 +1,32 @@
---
- name: check if ansible is not to old
hosts: localhost
tags:
- default
- always
roles:
- ansible_version
gather_facts: no
- {role: ansible_version, tags: always, gather_facts: false}
- name: run base setup roles
hosts: localhost
roles:
- { role: base, tags: [default,packages,base]}
- { role: workstation_packages, tags: [default, workstation_packages, packages, setup]}
- { role: ntp, tags: ntp }
- { role: arch-fonts, tags: [font,fonts,arch-fonts]}
- {role: base, tags: [default, packages, base]}
- {role: workstation_packages, tags: [default, workstation_packages, packages, setup]}
- {role: ntp, tags: ntp}
- {role: arch-fonts, tags: [font, fonts, arch-fonts]}
- name: user specific setup
hosts: localhost
roles:
- { role: dotfiles, tags: [default,dotfiles,fancy]}
- { role: manage_users, tags: [ssh,manage,manage_users]}
- { role: authorized_keys, tags: [ssh,auth,authorized_keys]}
- { role: sshd, tags: [ssh, sshd]}
- { role: akku-warning, tags: [akku,akku_warning,akku-warning]}
- { role: pulseaudio, tags: pulseaudio }
- { role: networkmanager, tags: [nm, networkmanager]}
- { role: copy_files }
- { role: i3wm, tags: i3wm }
- { role: xrandr, tags: xrandr }
- { role: install-firefox, tags: firefox }
- { role: nextcloud, tags: nextcloud }
- { role: openvpn, tags: openvpn }
- { role: winehq, tags: [wine, winehq]}
- { role: no-sleep, tags: no_sleep }
- {role: dotfiles, tags: [default, dotfiles, fancy]}
- {role: manage_users, tags: [ssh, manage, manage_users]}
- {role: authorized_keys, tags: [ssh, auth, authorized_keys]}
- {role: sshd, tags: [ssh, sshd]}
- {role: akku-warning, tags: [akku, akku_warning, akku-warning]}
- {role: pulseaudio, tags: pulseaudio}
- {role: networkmanager, tags: [nm, networkmanager]}
- {role: copy_files}
- {role: i3wm, tags: i3wm}
- {role: xrandr, tags: xrandr}
- {role: install-firefox, tags: firefox}
- {role: nextcloud, tags: nextcloud}
- {role: openvpn, tags: openvpn}
- {role: winehq, tags: [wine, winehq]}
- {role: no-sleep, tags: no_sleep}