From 71327a16af53084391023e16fa714400d9bebd19 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sun, 23 Dec 2018 20:32:37 +0000 Subject: [PATCH] Adding local chat option --- roles/shell/files/chat | 3 +++ roles/shell/tasks/packages.yml | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100755 roles/shell/files/chat diff --git a/roles/shell/files/chat b/roles/shell/files/chat new file mode 100755 index 0000000..5bbec92 --- /dev/null +++ b/roles/shell/files/chat @@ -0,0 +1,3 @@ +#!/bin/bash + +weechat-curses -r "/set irc.look.temporary_servers on; /connect irc://`whoami`@irc.tilde.chat:6697/#thunix -ssl" diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index dd81f2c..19e6702 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -24,3 +24,11 @@ - pandoc - python-certbot-apache - zsh + +- name: Install locally created bins + copy: + src: ../files/chat + dest: /usr/local/bin + owner: root + group: root + mode: 0755