ansible

    0熱度

    1回答

    我似乎無法訪問deepely嵌入式ansible_fact這個字符串: hostvars[inventory_hostname]['ansible_devices']['sda']['partitions']['sda2']['holders'] }} 這裏的事實,樹我想引用的一部分。 "ansible_devices": { "sda": { "holders"

    0熱度

    1回答

    我想在Ansible(2.4)上使用debops.nullmailer在我的主機上配置nullmailer。我想保留密碼在變量中加密,所以我希望使用保險庫功能來加密密碼。我的劇本是這樣的: --- - name: My baseline hosts: all become: true vars: nullmailer__default_remotes:

    0熱度

    1回答

    我自動部署Azure資源組和虛擬機。我希望有一個Ansible Controller能夠識別何時創建新虛擬機,以便它可以在其上運行劇本併爲我配置它們。 我怎麼Ansible認識到在Azure中

    0熱度

    1回答

    我正試圖在我的第一本劇本上進行設置。 Hovever ......不管我試圖測試哪些例子..我收到類似的錯誤: "xyz is not a valid attribute for a Play" 例如: $ cat a2.yml - name: Update and upgrade become: true apt: upgrade: yes upda

    -1熱度

    2回答

    我想列出一個目錄中的文件並將其複製到其他目錄。 這是我的劇本: --- - hosts: testserver become: true tasks: - name: list files command: " ls /root/" register: r - debug: var=r - debug: msg="item.

    -1熱度

    1回答

    當我運行以下命令 [[email protected]] $ ansible localhost -vvv -m setup Using /etc/ansible/ansible.cfg as config file 它提供了以下錯誤 ERROR! Unexpected Exception: dictionary update sequence element #0 has length 1

    2熱度

    1回答

    有沒有辦法將Ansible Playbook中的對象數組映射到不同的對象數組?比方說,我們有一個源陣列之中: arr: - value: a - value: b - value: c 而我們想要的是讓基於第一陣列中的對象不同的數組,讓我們說: arr2: - const: 1 var: a - const: 1 var:

    -2熱度

    1回答

    我想寫安裝Apache一個劇本,但我得到了以下錯誤: The offending line appears to be: tasks: - name: command to install apache ^here 這裏是我的YAML代碼: --- - hosts: all tasks: - name: command to install apa

    0熱度

    1回答

    我試圖連接到我的Windows 7機器使用Ansible使用credssp我收到錯誤如下。 tls_server_hello,wrong_ssl_version。 而當我嘗試同樣在我的Windows 10的機器,我能做到win_ping

    0熱度

    1回答

    我想使通過Ansible命令: curl -sL https://deb.nodesource.com/setup | sudo bash - 如何通過Ansible辦呢?現在我有: - name: Add repository command: curl -sL https://deb.nodesource.com/setup | sudo bash - 但它拋出錯誤: [WA