insert ansible

ansible
Peter Babič 3 years ago
parent b0cdb5e83c
commit 1c4407bdf2
Signed by: peter.babic
GPG Key ID: 4BB075BC1884BA40
  1. 88
      ansible/ansible.log
  2. 14
      ansible/inventory.cfg
  3. 58
      ansible/test.yml

@ -0,0 +1,88 @@
~/w/ansible-openwrt ❯❯❯ ansible-playbook -i inventory.cfg test.yml
PLAY [openwrt] *****************************************************************
TASK [Gathering Facts] *********************************************************
fatal: [192.168.1.1]: UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh: peterbabic@192.168.1.1: Permission denied (publickey,password).", "unreachable": true}
PLAY RECAP *********************************************************************
192.168.1.1 : ok=0 changed=0 unreachable=1 failed=0 skipped=0 rescued=0 ignored=0
~/w/ansible-openwrt ❯❯❯ fg ✘ 4
fg: no current job
~/w/ansible-openwrt ❯❯❯ gf ✘ 1
~/w/ansible-openwrt ❯❯❯ ansible-playbook -i inventory.cfg test.yml
[WARNING]: Found both group and host with same name: openwrt
PLAY [openwrt] *****************************************************************
TASK [Gathering Facts] *********************************************************
[WARNING]: sftp transfer mechanism failed on [openwrt]. Use ANSIBLE_DEBUG=1 to
see detailed information
ok: [openwrt]
TASK [gekmihesg.openwrt : pin defaults] ****************************************
ok: [openwrt]
TASK [gekmihesg.openwrt : install recommended packages] ************************
included: /home/peterbabic/.ansible/roles/gekmihesg.openwrt/tasks/packages.yml for openwrt
TASK [gekmihesg.openwrt : check whether opkg caches need update] ***************
ok: [openwrt]
TASK [gekmihesg.openwrt : get current system time] *****************************
skipping: [openwrt]
TASK [gekmihesg.openwrt : update opkg cache] ***********************************
changed: [openwrt]
TASK [gekmihesg.openwrt : check for openssl] ***********************************
ok: [openwrt]
TASK [gekmihesg.openwrt : include_tasks] ***************************************
included: /home/peterbabic/.ansible/roles/gekmihesg.openwrt/tasks/package.yml for openwrt => (item={'key': 'base64', 'value': 'coreutils-base64'})
included: /home/peterbabic/.ansible/roles/gekmihesg.openwrt/tasks/package.yml for openwrt => (item={'key': 'md5sum', 'value': 'coreutils-md5sum'})
included: /home/peterbabic/.ansible/roles/gekmihesg.openwrt/tasks/package.yml for openwrt => (item={'key': 'sha1sum', 'value': 'coreutils-sha1sum'})
TASK [gekmihesg.openwrt : check for command base64] ****************************
ok: [openwrt]
TASK [gekmihesg.openwrt : install coreutils-base64 to provide base64] **********
changed: [openwrt]
TASK [gekmihesg.openwrt : check for command md5sum] ****************************
ok: [openwrt]
TASK [gekmihesg.openwrt : install coreutils-md5sum to provide md5sum] **********
skipping: [openwrt]
TASK [gekmihesg.openwrt : check for command sha1sum] ***************************
ok: [openwrt]
TASK [gekmihesg.openwrt : install coreutils-sha1sum to provide sha1sum] ********
changed: [openwrt]
TASK [gekmihesg.openwrt : avoid re-checking of packages] ***********************
ok: [openwrt]
TASK [ping] ********************************************************************
ok: [openwrt]
PLAY RECAP *********************************************************************
openwrt : ok=16 changed=3 unreachable=0 failed=0 skipped=2 rescued=0 ignored=0
~/w/ansible-openwrt ❯❯❯ fg
fg: no current job
~/w/ansible-openwrt ❯❯❯ gf ✘ 1
~/w/ansible-openwrt ❯❯❯ ansible-playbook -i inventory.cfg test.yml
PLAY [openwrt] *****************************************************************
TASK [Gathering Facts] *********************************************************
[WARNING]: sftp transfer mechanism failed on [openwrt]. Use ANSIBLE_DEBUG=1 to
see detailed information
fatal: [openwrt]: FAILED! => {"ansible_facts": {}, "changed": false, "failed_modules": {"ansible.legacy.setup": {"ansible_facts": {"discovered_interpreter_python": "/usr/bin/python"}, "failed": true, "module_stderr": "Shared connection to openwrt closed.\r\n", "module_stdout": "/bin/sh: /usr/bin/python: not found\r\n", "msg": "The module failed to execute correctly, you probably need to set the interpreter.\nSee stdout/stderr for the exact error", "rc": 127, "warnings": ["No python interpreters found for host openwrt (tried ['/usr/bin/python', 'python3.7', 'python3.6', 'python3.5', 'python2.7', 'python2.6', '/usr/libexec/platform-python', '/usr/bin/python3', 'python'])"]}}, "msg": "The following modules failed to execute: ansible.legacy.setup\n"}
PLAY RECAP *********************************************************************
openwrt : ok=0 changed=0 unreachable=0 failed=1 skipped=0 rescued=0 ignored=0

@ -0,0 +1,14 @@
[aps]
# ap1.example.com
# ap2.example.com
# ap3.example.com
[routers]
openwrt ansible_user=root
[openwrt:children]
aps
routers
[openwrt:vars]
ansible_remote_tmp=/tmp/ansible # Reduce flash wear on target device

@ -0,0 +1,58 @@
- hosts: openwrt
roles:
- gekmihesg.openwrt
tasks:
- name: ping
ping:
# - name: copy openwrt image
# command: "{{ openwrt_scp }}" image.bin {{ openwrt_user_host|quote }}:/tmp/sysupgrade.bin"
# delegate_to: localhost
# - name: start sysupgrade
# nohup:
# command: sysupgrade -q /tmp/sysupgrade.bin
# - name: wait for reboot
# wait_for_connection:
# timeout: 300
# delay: 60
# - name: install mdns
# opkg:
# name: mdns
# state: present
# - name: enable and start mdns
# service:
# name: mdns
# state: started
# enabled: yes
# - name: copy authorized keys
# copy:
# src: authorized_keys
# dest: /etc/dropbear/authorized_keys
# - name: revert pending changes
# uci:
# command: revert
# - name: configure wifi device radio0
# uci:
# command: set
# key: wireless.radio0
# value:
# phy: phy0
# type: mac80211
# hwmode: 11g
# channel: auto
# - name: configure wifi interface
# uci:
# command: section
# config: wireless
# type: wifi-iface
# find_by:
# device: radio0
# mode: ap
# value:
# ssid: MySSID
# encryption: psk2+ccmp
# key: very secret
# - name: commit changes
# uci:
# command: commit
# notify: reload wifi
Loading…
Cancel
Save