We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
So I am currently trying to automate the setup of telegram-send via ansible.
Is there are simple way to get the configuration done without having to interact with telegram-send --configure.
Thanks
The text was updated successfully, but these errors were encountered:
(I see this is an old issue but here's my 0.02)
If you already have a working configuration file........
I use ansible.builtin.copy to drop it into ~/.config/telegram-send.conf among other config files that my systems require.
ansible playbook: - name: Copy $HOME files not under version control ansible.builtin.copy: src: "{{ item.src }}" dest: "{{ item.dest }}" mode: "{{ item.mode }}" loop: "{{ config_files }}" changed_when: false
var file: config_files:
Sorry, something went wrong.
No branches or pull requests
Hi
So I am currently trying to automate the setup of telegram-send via ansible.
Is there are simple way to get the configuration done without having to interact with telegram-send --configure.
Thanks
The text was updated successfully, but these errors were encountered: