最佳答案
我正在尝试使用 Ansible 运行以下两个命令:
sudo apt-get update && sudo apt-get upgrade -y
我知道你可以用:
ansible all -m shell -u user -K -a "uptime"
运行以下命令可以吗? 或者我必须使用某种 raw
命令
ansible all -m shell -u user -K -a "sudo apt-get update && sudo apt-get upgrade -y"