Compare commits

...

9 Commits

16 changed files with 167 additions and 5 deletions

View File

@ -5,6 +5,7 @@
vars_files:
- vars/users.yml
- vars/home.yml
- vars/nas_secrets.yml
- vars/nas.yml
pre_tasks:

View File

@ -1,2 +1,23 @@
---
# defaults file for nut
nut_mode: "standalone"
upsd_users:
- name: upsmonitor
password: upsmonitorpass
type: master
upss:
- name: fooUPS
driver: usbhid-ups
port: auto
desc: "Foo UPS"
vendorid: 1111
productid: 1111
upsmon_servers:
- ups_name: fooUPS
address: localhost
user: upsmonitor
password: upsmonitorpass
type: "master"

View File

@ -4,3 +4,8 @@
service:
name: nut-server
state: restarted
- name: restart nut-monitor
service:
name: nut-monitor
state: restarted

View File

@ -7,9 +7,10 @@
lineinfile:
path: /etc/nut/nut.conf
regexp: '^MODE='
line: MODE=standalone
line: MODE=netserver
notify: restart nut-server
# List of connected ups
- name: Copy ups.conf
template:
src: ups.conf.j2
@ -18,3 +19,43 @@
group: root
mode: 0644
notify: restart nut-server
# Service that communicate with UPSs
- name: Copy upsd.conf
template:
src: upsd.conf.j2
dest: /etc/nut/upsd.conf
owner: root
group: root
mode: 0644
notify: restart nut-server
# List of users allowed to communicate with upsd through network
- name: Copy upsd.users
template:
src: upsd.users.j2
dest: /etc/nut/upsd.users
owner: root
group: root
mode: 0644
notify: restart nut-server
# Nut mode
- name: Copy nut.conf
template:
src: nut.conf.j2
dest: /etc/nut/nut.conf
owner: root
group: root
mode: 0644
notify: restart nut-server
# Service that interact with upsd to act
- name: Copy upsmon.conf
template:
src: upsmon.conf.j2
dest: /etc/nut/upsmon.conf
owner: root
group: root
mode: 0644
notify: restart nut-monitor

View File

@ -0,0 +1 @@
MODE={{ nut_mode }}

View File

@ -4,4 +4,7 @@ maxretry = 3
[{{ ups.name }}]
driver = {{ ups.driver }}
port = {{ ups.port }}
desc = {{ ups.desc }}
vendorid = {{ ups.vendorid }}
productid = {{ ups.productid }}
{% endfor %}

View File

@ -0,0 +1,7 @@
MAXAGE 3
{% if nut_mode == "standalone" %}
LISTEN 127.0.0.1 3493
{% else %}
LISTEN 0.0.0.0 3493
{% endif %}
MAXCONN 2

View File

@ -0,0 +1,6 @@
{% for user in upsd_users %}
[{{ user.name }}]
password = {{ user.password}}
upsmon {{ user.type }}
{% endfor %}

View File

@ -0,0 +1,24 @@
{% for server in upsmon_servers %}
MONITOR {{ server.ups_name }}@{{ server.address}} 1 {{ server.user }} {{ server.password }} "{{ server.type }}"
{% endfor %}
MINSUPPLIES 1
FINALDELAY 5
SHUTDOWNCMD "/sbin/shutdown -h +0"
------------------------------------------------
# POLLFREQ <n>
# Fréquence d'interrogation en secondes en fonctionnement normal de l'onduleur.
# La valeur par défaut est de 5 secondes.
POLLFREQ 5
------------------------------------------------
# POLLFREQALERT <n>
# Fréquence d'interrogation en secondes pendant que l'onduleur est sur batterie.
# La valeur par défaut est de 5 secondes.
POLLFREQALERT 5
------------------------------------------------
HOSTSYNC 15
DEADTIME 15
POWERDOWNFLAG /etc/killpower
RBWARNTIME 43200
NOCOMMWARNTIME 300

View File

@ -15,6 +15,10 @@
chdir: "/home/{{ user.username }}/.dotfiles"
with_items: "{{ user.config.stowing }}"
- name: init tmux
import_tasks: tmux.yml
when: '"tmux" in user.config.stowing'
- name: init neovim
import_tasks: neovim.yml
when: '"nvim" in user.config.stowing'

View File

@ -18,6 +18,7 @@
- xdg-desktop-portal-wlr
- wl-clipboard
- gobject-introspection # for avizo
- autotiling-rs
state: present
- name: Install sway AUR packages

20
roles/user/tasks/tmux.yml Normal file
View File

@ -0,0 +1,20 @@
---
- name: Install tmux
community.general.pacman:
name: tmux
state: present
when: ansible_os_family == "Archlinux"
- name: Install tmux
apt:
name: tmux
state: present
when: ansible_os_family == "Debian"
- name: Install tpm
ansible.builtin.git:
repo: "https://github.com/tmux-plugins/tpm"
dest: "/home/{{ user.username }}/.tmux/plugins/tpm"
depth: 1
become: true
become_user: "{{ user.username }}"

View File

@ -34,11 +34,16 @@ pacman_cli:
- moc
- pass
- task
- neomutt
- youtube-dl
- neovim
- python-pynvim
- dialog
- neomutt
- vdirsyncer
- khard
- khal
- offlineimap
- msmtp
pacman_terms:
- rxvt-unicode

View File

@ -18,9 +18,9 @@ borg_source_directories: "{{ nfs_shares | map(attribute='mount_point') }}"
borg_repository: /backup/borgmatic
borgmatic_hooks:
on_error:
- echo "`date` - Error while creating a backup."
- "curl -X POST -d '{\"body\": \"Erreur dans le backup\"}' -H \"Content-Type: application/json\" http://apprise.nas.lan/notify/backup"
before_backup:
- echo "`date` - Starting backup."
- "curl -X POST -d '{\"body\": \"Starting Backup\"}' -H \"Content-Type: application/json\" http://apprise.nas.lan/notify/backup"
after_backup:
- echo "`date` - Finished backup."
- "curl -X POST -d '{\"body\": \"Finished Backup\"}' -H \"Content-Type: application/json\" http://apprise.nas.lan/notify/backup"
- poweroff

View File

@ -13,10 +13,26 @@ pihole_docker_image: pihole/pihole:2022.05
pihole_ip: 192.168.2.202
# Nut
nut_mode: "netserver"
upsd_users:
- name: upsmonitor
password: "{{ ups_user_password }}"
type: master
upss:
- name: eaton650
driver: usbhid-ups
port: auto
vendorid: "0463"
productid: "FFFF"
desc: "UPS bureau"
upsmon_servers:
- ups_name: eaton650
address: localhost
user: upsmonitor
password: "{{ ups_user_password }}"
type: "master"
# minidlna
minidlna_friendly_name: "Nas dlna"

7
vars/nas_secrets.yml Normal file
View File

@ -0,0 +1,7 @@
$ANSIBLE_VAULT;1.1;AES256
62323338353830396465343361333965643662633066633137313939363934353430633662336134
6265363735393134646561333137376430646362303264370a353861636430613264336238306439
65343362323638333736363164333665393965363539643463663936656239396438663139393862
6435396666663066620a386665313135613863616437386433616662396638646265663465633834
38346436383033613338393536326536393230633866666565393137333430623839623965623761
3934636264626337653762386531353861633338343364643335