Ask to user for the main directory to backup
This commit is contained in:
parent
2342d87d7e
commit
181f06a8fd
|
@ -36,12 +36,31 @@ RESET='\033[0m'
|
||||||
## }}}
|
## }}}
|
||||||
# }}}
|
# }}}
|
||||||
# Fonctions {{{
|
# Fonctions {{{
|
||||||
|
function getMainBackupDir() ## {{{
|
||||||
|
{
|
||||||
|
local input_dir
|
||||||
|
local backup_dir
|
||||||
|
|
||||||
|
printf '%b' "${GREEN}Merci de saisir ici (copier/coller avec le clic droit), le chemin du dossier à sauvegarder :${RESET} "
|
||||||
|
read -r input_dir
|
||||||
|
|
||||||
|
### Transform Windows path to Unix path
|
||||||
|
backup_dir=$(wslpath "${input_dir}")
|
||||||
|
|
||||||
|
### Verify the directory exist
|
||||||
|
if [ ! -d "${backup_dir}" ]; then
|
||||||
|
printf '%b' "${BOLD}${input_dir} ne semble pas être un dossier. Merci de vérifier votre saisie.${RESET}\\n"
|
||||||
|
return "${ERROR}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
## }}}
|
||||||
|
|
||||||
function addUserForBackuppc() ## {{{
|
function addUserForBackuppc() ## {{{
|
||||||
{
|
{
|
||||||
local userLogin="${1}" ### eg. 'backuppc'
|
local userLogin="${1}" ### eg. 'backuppc'
|
||||||
local userHomedir="${2}" ### eg. '/var/lib/backuppc'
|
local userHomedir="${2}" ### eg. '/var/lib/backuppc'
|
||||||
if ! getent passwd "${userLogin}" > /dev/null 2>&1; then
|
if ! getent passwd "${userLogin}" > /dev/null 2>&1; then
|
||||||
printf '%b\n' "${BOLD}L'utilisateur ${userLogin} n'existe pas, tentative de création.${RESET}\\n"
|
printf '%b' "${BOLD}L'utilisateur ${userLogin} n'existe pas, tentative de création.${RESET}\\n"
|
||||||
useradd --system --shell /bin/sh --home-dir "${userHomedir}/" --create-home -- "${userLogin}"
|
useradd --system --shell /bin/sh --home-dir "${userHomedir}/" --create-home -- "${userLogin}"
|
||||||
fi
|
fi
|
||||||
chown -R -- "${userLogin}:" "${userHomedir}"
|
chown -R -- "${userLogin}:" "${userHomedir}"
|
||||||
|
@ -69,7 +88,7 @@ function ensureSshdIsInstalled() ## {{{
|
||||||
### `command -v sshd` still return old value even after openssh-server was removed
|
### `command -v sshd` still return old value even after openssh-server was removed
|
||||||
### So we can't be sure of openssh-server state.
|
### So we can't be sure of openssh-server state.
|
||||||
if ! hash sshd 2>/dev/null; then
|
if ! hash sshd 2>/dev/null; then
|
||||||
printf '%b\n' "${BOLD}openssh-server non installé, tentative d'installation.${RESET}\\n"
|
printf '%b' "${BOLD}openssh-server non installé, tentative d'installation.${RESET}\\n"
|
||||||
|
|
||||||
if [ $(command -v aptitude) ]; then aptitude install -y --quiet=5 -- openssh-server > /dev/null
|
if [ $(command -v aptitude) ]; then aptitude install -y --quiet=5 -- openssh-server > /dev/null
|
||||||
elif [ $(command -v apt) ]; then apt install -y openssh-server > /dev/null
|
elif [ $(command -v apt) ]; then apt install -y openssh-server > /dev/null
|
||||||
|
@ -91,6 +110,13 @@ function ensureSshdIsRunning() ## {{{
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
# Récupération des informations de l'utilisateur {{{
|
||||||
|
getMainBackupDir
|
||||||
|
if [ "$?" != "${SUCCESS}" ]; then
|
||||||
|
printf '%b' "${REDB}La récupération du dossier principal à sauvegarder a échouée, installation annulée.${RESET}\\n"
|
||||||
|
exit "${ERROR}"
|
||||||
|
fi
|
||||||
|
# }}}
|
||||||
# Gestion des paquets {{{
|
# Gestion des paquets {{{
|
||||||
## Mettre à jour les dépôts
|
## Mettre à jour les dépôts
|
||||||
apt update -- > /dev/null 2>&1
|
apt update -- > /dev/null 2>&1
|
||||||
|
|
Loading…
Reference in New Issue