~$ ansible all -i 127.0.0.1:2222, -a 'apt update' -u vagrant \
    --private-key=private_key
127.0.0.1 | FAILED | rc=100 >>
Reading package lists...
E: Could not open lock file /var/lib/apt/lists/lock - open (13: Permission denied)
~$ ansible all -i 127.0.0.1:2222, -a 'apt update' -u vagrant \
    --become --private-key=private_key
127.0.0.1 | FAILED | rc=-1 >>
Missing sudo password

~$ ansible all -i 127.0.0.1:2222, -a 'apt update' -u vagrant \
    --become –ask-become-pass --private-key=private_key
BECOME password: mypassword
127.0.0.1 | CHANGED | rc=0 >>
Hit:1 http://ppa.launchpad.net/ansible/ansible/ubuntu disco InRelease
