update dependencies
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-04-24 10:09:28 +02:00
parent f47b5fbf87
commit 9211f792db
2 changed files with 1 additions and 27 deletions

View File

@@ -26,6 +26,7 @@ pkgs_to_install:
# gtimelog
- gtimelog
- gawk
- dos2unix
# chat clients
- element-desktop
- dino-im

View File

@@ -54,33 +54,6 @@
state: directory
mode: "755"
- name: Get activities
ansible.builtin.pause:
prompt: To download the activities for gtimelog, activate SSH access to git.fsfe.org and run the activities.yml playbook.
- name: Download overtime calc
become: false
ansible.builtin.shell: git clone -b master https://git.fsfe.org/max.mehl/overtime-calc.git "{{ user_home }}/overtime-calc"
- name: Install overtime calc
become: true
file:
src: "{{ user_home }}/overtime-calc/overtime-calc.sh"
dest: /usr/local/bin/overtime-calc
state: link
- name: Copy overtime config file
become: false
ansible.builtin.copy:
src: "{{ user_home }}/overtime-calc/config.cfg.sample"
dest: "{{ user_home }}/overtime-calc/config.cfg"
- name: Make overtime executeable
become: false
file:
dest: "{{ user_home }}/overtime-calc/overtime-calc.sh"
mode: a+x
- name: Download gtimelog utils
become: false
ansible.builtin.shell: git clone -b master https://git.fsfe.org/FSFE/gtimelog-utils.git "{{ user_home }}/gtimelog-utils"