backuppc_client/client/install_backuppc_windows_ba...

31 lines
698 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# Automatisation d'installation et configuration de BackupPC pour Windows 10 {{{
# via Bash on Ubuntu
# Institut de Physique de Rennes UMR6251
# Jérémy Gardais Mail 2019
# }}}
# How-to use {{{
# With PowerShell
## This script can be launch with PowerShell:
## bash -c "./install_backuppc_windows_bash_on_linux.sh"
# }}}
SUCCESS=0
ERROR=1
# Gestion des paquets {{{
## Mettre à jour les dépôts
apt update
## Installer aptitude
### aptitude permet une meilleure résolution des dépendances/erreurs/... que apt
### apt-get est déprécié au profit de apt ou aptitude
apt install -y aptitude
## Mettre à jour le système
aptitude full-upgrade -y
# }}}
exit "${SUCCESS}"