Guillaume Lefranc
Guillaume Lefranc
OK, it seems this issue is due to privilege escalation turned on, because Ansible will effectively run as root and the files won't be readable. So maybe that should be...
That has nothing to do with Rundeck, but with Ansible. If Ansible is run as root (e.g. privilege escalation turned on in `/etc/ansible.conf`) it will cause those files to be...
@linuxmail make sure you have the following setup in ansible.cfg: ``` [privilege_escalation] become=False become_method=sudo become_user=root become_ask_pass=False ```
It will not work with such a configuration, because su always prompts for a password. Please look at "ansible-become-password-option" in rundeck ansible plugin
@sowmian the answer is in the error message, you need to import the key first: ``` gpg --no-default-keyring --keyring trustedkeys.gpg --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32 871920D1991BC93C ``` Then creating the mirror...
Hello, please consider merging this as for many users it will cause Redis to have performance issues...
I would say this mostly occurs because of `nss-resolve` man page misleading suggestion to set `nsswitch.conf` to `hosts: resolve [!UNAVAIL=return]`. If you do so, it means that all status cases...
We don't support packages for intermediary versions of Ubuntu, only LTS is supported. If you want to use non-LTS I suggest compiling from source.
Password on the command line is insecure, it can be grabbed by any user account from `ps` output. Please consider adding file configuration for it (or I can write a...
It seems that in 2.3.20 there were some changes related to topology discovery, https://github.com/signal18/replication-manager/compare/v2.3.19...v2.3.20#diff-86cbfc045d9b3441a4f4c2235e276915275698f1e70a42e38e74a846cb9bdcc4L652 notably in `cluster/cluster.go` line 652, getTopology was removed and moved earlier in the process (I dont...