Files
@ f6887f13cc15
Branch filter:
Location: ChaosStuff/cnc-dashboard/roles/python/tasks/main.yml - annotation
f6887f13cc15
897 B
text/x-yaml
Remove useless lines breaks from README
c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac c3309581c2ac | # $DATE is host time, which we force set on the target machine.
# Allows downloading stuff without TLS errors
- name: Pacman keyring + Python installation
delegate_to: localhost
ansible.builtin.shell: |
DATE=$(date "+%F %T")
expect <<EOD
set timeout 600
spawn sshpass -p alarm ssh \
-o UserKnownHostsFile=/dev/null \
-o StrictHostKeyChecking=no \
-o PubkeyAuthentication=false \
alarm@{{ ansible_host }}
expect "$ "
send "su\r"
expect "Password: "
send "root\r"
expect "alarm alarm]# "
send -- "date --set=\"$DATE\"\; "
send -- "pacman-key --init\; "
send -- "pacman-key --populate archlinuxarm\; "
send -- "pacman -q --noconfirm -Sy python\r"
expect "alarm alarm]# "
interact
EOD
register: cmd_reg
- debug: msg="{{ cmd_reg.stdout }}"
|