From bb2097042864be47ba8a51eb6c6c22b9766d7a94 Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Wed, 25 Oct 2023 09:35:22 -0400 Subject: obs updates --- roles/obs/tasks/main.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'roles/obs/tasks/main.yml') diff --git a/roles/obs/tasks/main.yml b/roles/obs/tasks/main.yml index f88cc8f..249a0bb 100644 --- a/roles/obs/tasks/main.yml +++ b/roles/obs/tasks/main.yml @@ -6,6 +6,15 @@ apt_repository: repo: ppa:obsproject/obs-studio when: ansible_distribution == "Ubuntu" +- name: Add nodesource key + apt_key: + id: 2F59B5F99B1BE0B4 + keyserver: keyserver.ubuntu.com + state: present +- name: Add nodesource repository + ansible.builtin.apt_repository: + repo: deb https://deb.nodesource.com/node_20.x nodistro main + update_cache: yes - name: Add packages apt: name: @@ -19,6 +28,7 @@ - kitty - kitty-terminfo - alsa-utils + - nodejs - dbus-x11 - obs-studio - mumble @@ -58,13 +68,16 @@ replace: \1 {{ emacsconf_id }}-{{ item.id }} loop: "{{ emacsconf_tracks }}" - name: Set system timezone + tags: tz community.general.timezone: name: "{{ emacsconf_timezone }}" - name: Restart cron + tags: tz ansible.builtin.service: name: cron state: restarted - name: Set emacsconf_user timezone + tags: tz lineinfile: line: export TZ={{ emacsconf_timezone }} dest: "/home/{{ emacsconf_user }}/.bashrc" -- cgit v1.2.3