{"id":30740983,"url":"https://github.com/justwheel/ansible-role-teleirc","last_synced_at":"2026-05-05T15:35:10.082Z","repository":{"id":44645481,"uuid":"168760606","full_name":"justwheel/ansible-role-teleirc","owner":"justwheel","description":"Ansible role to deploy RITlug/teleirc chat bots to bridge IRC channels and Telegram groups","archived":false,"fork":false,"pushed_at":"2022-02-02T12:28:18.000Z","size":41,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-04T00:30:42.651Z","etag":null,"topics":["ansible","ansible-galaxy","ansible-role","irc","irc-bot","irc-channel","node","nodejs","relay-messages","rit","rochester","rochester-institute-of-technology","role","telegram","telegram-api","telegram-bot","telegram-chat","telegram-group","teleirc"],"latest_commit_sha":null,"homepage":"https://galaxy.ansible.com/jwflory/teleirc","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/justwheel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-02-01T21:10:10.000Z","updated_at":"2022-02-02T12:28:23.000Z","dependencies_parsed_at":"2022-09-13T11:51:10.456Z","dependency_job_id":null,"html_url":"https://github.com/justwheel/ansible-role-teleirc","commit_stats":null,"previous_names":["justjwheelin/ansible-role-teleirc","jwflory/ansible-role-teleirc","justwheel/ansible-role-teleirc"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/justwheel/ansible-role-teleirc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justwheel%2Fansible-role-teleirc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justwheel%2Fansible-role-teleirc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justwheel%2Fansible-role-teleirc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justwheel%2Fansible-role-teleirc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/justwheel","download_url":"https://codeload.github.com/justwheel/ansible-role-teleirc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justwheel%2Fansible-role-teleirc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32447019,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"ssl_error","status_checked_at":"2026-04-29T22:10:49.234Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","ansible-galaxy","ansible-role","irc","irc-bot","irc-channel","node","nodejs","relay-messages","rit","rochester","rochester-institute-of-technology","role","telegram","telegram-api","telegram-bot","telegram-chat","telegram-group","teleirc"],"created_at":"2025-09-04T00:18:30.065Z","updated_at":"2026-04-29T22:35:06.872Z","avatar_url":"https://github.com/justwheel.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"Ansible Role: teleirc\n=====================\n\n[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)\n\nDeploy RITlug/teleirc chat bots to bridge IRC channels and Telegram groups\n\n\n## Requirements\n\nNo special requirements.\nNote this role requires root access; either run it in a playbook with a global `become: yes` or invoke the role in your playbook:\n\n```yaml\n- hosts: servers\n  roles:\n    - role: jwflory.teleirc\n      become: yes\n```\n\n\n## Role Variables\n\nAvailable variables are listed below, along with default values (see `defaults/main.yml`):\n\n### `defaults/main.yml`\n\n```yaml\ndefault_irc_server: chat.freenode.net\ndefault_irc_nickserv_service: NickServ\ndefault_version: v2.0.0\n```\n\n* **`default_irc_server`**: Default IRC server to connect to (defaults to Freenode)\n* **`default_irc_nickserv_service`**: Default authentication service for IRC server (defaults to NickServ)\n* **`default_version`**: Default version of TeleIRC to deploy (corresponds to git tag releases in upstream project)\n\n### `vars/main.yml`\n\n```yaml\nbots:\n  my_example_bot:\n    cn: \"my-example-bot\"\n    irc_blacklist: \"noisy-irc-bot,ci-build-alerts\"\n    irc_bot_name: tg-my-example-bot\n    irc_channel: \"#ritlug-teleirc-sandbox\"\n    irc_server: \"{{ default_irc_server }}\"\n    irc_nickserv_service: \"{{ default_irc_nickserv_service }}\"\n    irc_nickserv_password: \"{{ vault_bots.my_example_bot.vault_irc_nickserv_password }}\"\n    teleirc_token: \"{{ vault_bots.my_example_bot.vault_teleirc_token }}\"\n    teleirc_chat_id: \"{{ vault_bots.my_example_bot.vault_teleirc_chat_id }}\"\n    imgur_client_id: \"{{ vault_default_imgur_client_id }}\"\n```\n\n* **`bots`**: List of all bots\n* **`bots.my_example_bot`**: Example of a single TeleIRC bot\n* **`bots.my_example_bot.cn`**: Common name. Used for directory names, systemd service name, and more.\n* **`bots.my_example_bot.irc_blacklist`**: Comma-separated string of IRC nicks to ignore\n* **`bots.my_example_bot.irc_bot_name`**: IRC nick of TeleIRC bridge bot\n* **`bots.my_example_bot.irc_channel`**: IRC channel for bot to join\n* **`bots.my_example_bot.irc_server`**: IRC server for bot to connect to (uses `defaults/main.yml`)\n* **`bots.my_example_bot.irc_nickserv_service`**: IRC account authentication method (uses `defaults/main.yml`)\n* **`bots.my_example_bot.irc_nickserv_password`**: _See below_\n* **`bots.my_example_bot.teleirc_token`**: _See below_\n* **`bots.my_example_bot.teleirc_chat_id`**: _See below_\n* **`bots.my_example_bot.imgur_client_id`**: _See below_\n\n### `vars/vault.yml`\n\n```yaml\n# encrypt this with Ansible Vault before committing!\n\nvault_default_imgur_client_id: \"000000000000000\"\n\nvault_bots:\n  my_example_bot:\n    vault_irc_nickserv_password: \"\"\n    vault_teleirc_token: \"000000000:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"\n    vault_teleirc_chat_id: \"-0000000000000\"\n```\n\n* **`default_imgur_client_id`**: Imgur API client ID to upload images from Telegram to Imgur\n* **`vault_bots`**: List of all bots\n* **`vault_bots.my_example_bot`**: Example of secrets for a single TeleIRC bot\n* **`vault_bots.my_example_bot.vault_irc_nickserv_password`**: Password to NickServ account on IRC server\n* **`vault_bots.my_example_bot.vault_teleirc_token`**: Telegram API bot token provided by the BotFather\n* **`vault_bots.my_example_bot.vault_teleirc_chat_id`**: Telegram chat ID of group for bridging to IRC\n\n\n## Dependencies\n\nNone.\n\n\n## Example Playbook\n\n```yaml\n- hosts: servers\n  roles:\n     - role: jwflory.teleirc\n```\n\n## License\n\n[BSD 3-Clause License](https://opensource.org/licenses/BSD-3-Clause).\n\n\n## Author Information\n\nThis role was first created in 2018 by [Justin W. Flory](https://jwf.io).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustwheel%2Fansible-role-teleirc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjustwheel%2Fansible-role-teleirc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustwheel%2Fansible-role-teleirc/lists"}