From 13e44b66610f8336b161bcc308d473861fbcc682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gardais=20J=C3=A9r=C3=A9my?= Date: Mon, 6 May 2019 11:36:11 +0200 Subject: [PATCH] Init install script for Windows and manage APT --- .../install_backuppc_windows_bash_on_linux.sh | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 client/install_backuppc_windows_bash_on_linux.sh diff --git a/client/install_backuppc_windows_bash_on_linux.sh b/client/install_backuppc_windows_bash_on_linux.sh new file mode 100755 index 0000000..734578d --- /dev/null +++ b/client/install_backuppc_windows_bash_on_linux.sh @@ -0,0 +1,30 @@ +#!/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}"