summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-09-08 11:59:59 +0300
committerLars Wirzenius <liw@liw.fi>2020-09-08 11:59:59 +0300
commit4819295206d7e1ef2f384dd8b66259434181a3d7 (patch)
tree7a48861a816bee06d42e2e85481fc93920ba5f9c
parentf3f78de8039f7dda1abf4e277f5ee5f3665405d2 (diff)
downloaddebian-ansible-4819295206d7e1ef2f384dd8b66259434181a3d7.tar.gz
fix(sane_debian_system): install sudo
-rw-r--r--roles/sane_debian_system/tasks/apt.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/sane_debian_system/tasks/apt.yml b/roles/sane_debian_system/tasks/apt.yml
index 84c6420..d7c82d4 100644
--- a/roles/sane_debian_system/tasks/apt.yml
+++ b/roles/sane_debian_system/tasks/apt.yml
@@ -19,6 +19,10 @@
update_cache: yes
cache_valid_time: 0
+- name: install sudo
+ apt:
+ name: sudo
+
# Now install https transport for APT. This is installed before
# changing sources lists, so that if they happen to use https URLs apt
# will still work. apt-transport-https is in the main Debian archive,