When my script starts, the shell asks me for the password for the module apt-get, and then again for ansible, because it has the option --ask-get-pass.
How do I enter the password only once for this script?
sudo apt-add-repository -y ppa:ansible/ansible &&
sudo apt-get update &&
sudo apt-get install -y ansible &&
ansible-playbook --ask-become-pass playbook.yml
read?apt-getcalls?