irantu (#142)
flameshot dir unattended nach hinten calc docker regel extra programme vivaldi check flameshot Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#142 Co-Authored-By: mg <mg@noreply.git.mgrote.net> Co-Committed-By: mg <mg@noreply.git.mgrote.net>
This commit is contained in:
parent
406d4becad
commit
0926424da8
5 changed files with 14 additions and 5 deletions
|
@ -31,9 +31,5 @@
|
||||||
protocol: tcp
|
protocol: tcp
|
||||||
comment: 'munin'
|
comment: 'munin'
|
||||||
from_ip: 192.168.0.0/16
|
from_ip: 192.168.0.0/16
|
||||||
- rule: allow
|
|
||||||
to_port: 5000
|
|
||||||
protocol: tcp
|
|
||||||
comment: 'rss-feed-changedetection'
|
|
||||||
### geerlingguy.munin-node
|
### geerlingguy.munin-node
|
||||||
munin_node_allowed_cidrs: [192.168.0.0/16] # weil der munin-server aus einem anderen subnet zugreift
|
munin_node_allowed_cidrs: [192.168.0.0/16] # weil der munin-server aus einem anderen subnet zugreift
|
||||||
|
|
|
@ -15,6 +15,8 @@
|
||||||
local_path: "/home/mg/.bash_aliases"
|
local_path: "/home/mg/.bash_aliases"
|
||||||
- repo_path: "{{ dotfiles_repo_path}}/alacritty/alacritty.yml"
|
- repo_path: "{{ dotfiles_repo_path}}/alacritty/alacritty.yml"
|
||||||
local_path: "/home/mg/.config/alacritty/alacritty.yml"
|
local_path: "/home/mg/.config/alacritty/alacritty.yml"
|
||||||
|
- repo_path: "{{ dotfiles_repo_path}}/flameshot/flameshot.ini"
|
||||||
|
local_path: "/home/mg/.config/flameshot/flameshot.ini"
|
||||||
- repo_path: "{{ dotfiles_repo_path}}/.ssh/config"
|
- repo_path: "{{ dotfiles_repo_path}}/.ssh/config"
|
||||||
local_path: "/home/mg/.ssh/config"
|
local_path: "/home/mg/.ssh/config"
|
||||||
- repo_path: "/home/mg/Nextcloud/Rest/ssh-keys/heimserver/private_key" # smylink in .ssh-dir
|
- repo_path: "/home/mg/Nextcloud/Rest/ssh-keys/heimserver/private_key" # smylink in .ssh-dir
|
||||||
|
@ -24,6 +26,8 @@
|
||||||
- path: /home/mg/.config/polybar
|
- path: /home/mg/.config/polybar
|
||||||
- path: /home/mg/.config/alacritty
|
- path: /home/mg/.config/alacritty
|
||||||
- path: /home/mg/.config/.ssh
|
- path: /home/mg/.config/.ssh
|
||||||
|
- path: /home/mg/.config/flameshot
|
||||||
|
|
||||||
dotfiles_owner: mg
|
dotfiles_owner: mg
|
||||||
### mgrote.apt_install_packages
|
### mgrote.apt_install_packages
|
||||||
programs_extra:
|
programs_extra:
|
||||||
|
@ -39,6 +43,9 @@
|
||||||
- caja
|
- caja
|
||||||
- arandr
|
- arandr
|
||||||
- keepassxc
|
- keepassxc
|
||||||
|
- vlc
|
||||||
|
- libreoffice
|
||||||
|
- gnome-calculator
|
||||||
### mgrote.apt_manage_sources
|
### mgrote.apt_manage_sources
|
||||||
manage_sources_apt_proxy_url: ""
|
manage_sources_apt_proxy_url: ""
|
||||||
### mgrote.ntp_chrony_server
|
### mgrote.ntp_chrony_server
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
---
|
---
|
||||||
- import_playbook: base/apt_sources.yml
|
- import_playbook: base/apt_sources.yml
|
||||||
- import_playbook: base/install_packages.yml
|
- import_playbook: base/install_packages.yml
|
||||||
- import_playbook: base/unattended_upgrades.yml
|
|
||||||
- import_playbook: base/ntp_client.yml
|
- import_playbook: base/ntp_client.yml
|
||||||
- import_playbook: base/restic.yml
|
- import_playbook: base/restic.yml
|
||||||
- import_playbook: base/users.yml
|
- import_playbook: base/users.yml
|
||||||
|
@ -15,3 +14,4 @@
|
||||||
- import_playbook: base/f2b.yml
|
- import_playbook: base/f2b.yml
|
||||||
- import_playbook: base/monitoring.yml
|
- import_playbook: base/monitoring.yml
|
||||||
- import_playbook: base/remove_snapd.yml
|
- import_playbook: base/remove_snapd.yml
|
||||||
|
- import_playbook: base/unattended_upgrades.yml
|
||||||
|
|
|
@ -10,4 +10,5 @@
|
||||||
- feh # wallpaper
|
- feh # wallpaper
|
||||||
- rofi
|
- rofi
|
||||||
- xautolock #bildschirmsperre nach x min
|
- xautolock #bildschirmsperre nach x min
|
||||||
|
- flameshot #screenshots
|
||||||
state: present
|
state: present
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
---
|
---
|
||||||
|
- name: check if vivaldi is already installed
|
||||||
|
ansible.builtin.package_facts:
|
||||||
|
manager: apt
|
||||||
|
|
||||||
- name: download and install vivaldi
|
- name: download and install vivaldi
|
||||||
become: true
|
become: true
|
||||||
apt:
|
apt:
|
||||||
deb: "{{ xnview_deb_url }}"
|
deb: "{{ xnview_deb_url }}"
|
||||||
|
when: "'vivaldi' in ansible_facts.packages"
|
||||||
|
|
Loading…
Reference in a new issue