task-ssh-server is removed (see #18).

This commit is contained in:
Jeremy Gardais 2017-12-08 16:06:42 +01:00
parent d03c3baad4
commit 87c22d65dc
2 changed files with 12 additions and 3 deletions

View File

@ -1,16 +1,17 @@
## Release 0.X ## Release 0.X
### Improvement ### Improvement
* Add an UEFI entry to manage specific partitions (see #16). * Add an UEFI entry to manage specific partitions (see #16).
* task-ssh-server is removed (see #18).
### Fix ### Fix
* Leave standart task in peace to be able to have a X session for user's nodes… (see #17). * Leave standard task in peace to be able to have a X session for user's nodes… (see #17).
* Update doc about Debian distribution name and remove useless entries (oldStable). * Update doc about Debian distribution name and remove useless entries (oldStable).
* No longer define zsh as default shell for root. * No longer define zsh as default shell for root.
* Installation of aptitude, puppet, tmux and zsh move to latecommand script (post.sh). * Installation of aptitude, puppet, tmux and zsh move to latecommand script (post.sh).
## Release 0.4.1 ## Release 0.4.1
### Improvement ### Improvement
* Standard task is no longer install for Debian Stretch with preseed (see #14). * Standard task is no longer install for Debian Stretch server with preseed (see #14).
* Ensure to install `python-apt`|Ansible dependencie (see #14). * Ensure to install `python-apt`|Ansible dependencie (see #14).
### Fix ### Fix

View File

@ -21,9 +21,17 @@ apt -y install aptitude tmux zsh
# Remove NFS and rpcbind # Remove NFS and rpcbind
aptitude -y remove nfs-common rpcbind aptitude -y remove nfs-common rpcbind
# Ensure to reinstall openssh-server ### SSH {{{
# Remove task-ssh-server
if [ "$(dpkg -l task-ssh-server)" ]; then
aptitude -y remove task-ssh-server
fi
# Ensure to install openssh-server
aptitude -y install openssh-server openssh-sftp-server aptitude -y install openssh-server openssh-sftp-server
### }}}
# Ansible dependencies # Ansible dependencies
aptitude -y install python-apt aptitude -y install python-apt