Ensure to install `python-apt`|Ansible dependencie (fix #14).

This commit is contained in:
Jeremy Gardais 2017-09-06 16:12:37 +02:00
parent 6d28c12b7f
commit 542fa4b286
3 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,7 @@
## Release 0.4.x ## Release 0.4.x
### Improvement ### Improvement
* Standard task is no longer install for Debian Stretch with preseed (see #14). * Standard task is no longer install for Debian Stretch with preseed (see #14).
* Ensure to install `python-apt`|Ansible dependencie (see #14).
## Release 0.4.0 ## Release 0.4.0
### Features ### Features

Binary file not shown.

View File

@ -72,6 +72,9 @@ fi
# Ensure to reinstall openssh-server # Ensure to reinstall openssh-server
aptitude -y install openssh-server openssh-sftp-server aptitude -y install openssh-server openssh-sftp-server
# Ansible dependencies
aptitude -y install python-apt
## }}} ## }}}
exit 0 exit 0