generated from roles-ansible/ansible_role_template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
[![Ansible Galaxy](https://ansible.l3d.space/svg/$namespace.$role.svg)](https://galaxy.ansible.com/ui/standalone/roles/$namespace/$role/) | ||
[![BSD-3 Clause](https://ansible.l3d.space/svg/$namespace.$role_license.svg)](LICENSE) | ||
[![MIT License](https://ansible.l3d.space/svg/$namespace.$role_license.svg)](LICENSE) | ||
[![Maintainance](https://ansible.l3d.space/svg/$namespace.$role_maintainance.svg)](https://ansible.l3d.space/#$namespace.$role) | ||
|
||
ansible role CWTV Telegram Jitsi bot | ||
======================= | ||
Work in Progress ansible role for a Chaoswest.TV Jitsi Telegram bot... | ||
|
||
There is a simple python Jitsi bot, that show the current Jitsi Status to a telegram chat. | ||
|
||
Have a look at [the code](templates/cwtv_bot.py.j2) for more details... | ||
|
||
LICENSE | ||
------- | ||
|
||
MIT Licnese | ||
|
||
Author | ||
------- | ||
|
||
L3D <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
- name: Make sure service is restarted | ||
listen: 'systemctl restart cwtv_telegram_bot.service' | ||
become: true | ||
ansible.builtin.systemd_service: | ||
name: 'cwtv_telegram_bot.service' | ||
state: 'started' | ||
daemon_reload: true | ||
enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ | |
create_home: false | ||
system: true | ||
shell: '/bin/bash' | ||
notify: 'systemctl restart cwtv_telegram_bot.service' |