task-french is removed (see #18).

This commit is contained in:
Jeremy Gardais 2017-12-08 16:17:05 +01:00
parent 87c22d65dc
commit 5587546a10
2 changed files with 15 additions and 0 deletions

View File

@ -2,6 +2,7 @@
### 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). * task-ssh-server is removed (see #18).
* task-french is removed (see #18).
### Fix ### Fix
* Leave standard 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).

View File

@ -21,6 +21,20 @@ 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
### Documentation {{{
# Remove task-french
if [ "$(dpkg -l task-french)" ]; then
# Move default wordlist to american before remove all packages
select-default-wordlist --set-default=american
aptitude -y remove task-french
# Reinstall useful french doc and move back to french dict
aptitude -y install aspell-fr doc-debian-fr doc-linux-fr-text ifrench-gut manpages-fr manpages-fr-extra wfrench
select-default-wordlist --set-default=".*(F|f)rench.*"
fi
### }}}
### SSH {{{ ### SSH {{{
# Remove task-ssh-server # Remove task-ssh-server
if [ "$(dpkg -l task-ssh-server)" ]; then if [ "$(dpkg -l task-ssh-server)" ]; then