mirror of
https://github.com/armbian/autotests.git
synced 2026-01-06 10:31:09 -08:00
11 lines
342 B
Bash
Executable File
11 lines
342 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
# load user configuration
|
|
source userconfig/configuration.sh
|
|
sudo echo "[duts]" > /etc/ansible/hosts
|
|
sudo nmap --exclude $EXCLUDE --open -sn ${SUBNET} -oG - | awk '/Up$/{print $2}' | sort >> /etc/ansible/hosts
|
|
ansible duts -a "apt update " -u root
|
|
ansible duts -a "apt -y -qq upgrade " -u root
|
|
ansible duts -a "reboot " -u root
|