2023-02-06 13:29:00 +01:00
|
|
|
#!/bin/bash
|
2023-02-17 12:27:17 +01:00
|
|
|
# ajouter dans les scripts avec cette ligne:
|
|
|
|
#
|
|
|
|
# source ~/Nextcloud/ressources/workflow_nextcloud/workflow_variables.sh
|
|
|
|
#
|
|
|
|
#
|
2023-02-20 16:55:34 +01:00
|
|
|
export main_user="tykayn"
|
2023-02-22 15:52:26 +01:00
|
|
|
|
|
|
|
export main_archive_source_ssh_lan="tykayn@192.168.1.14"
|
|
|
|
export backup_laptop_archive_path="/home/poule/backup/encrypted"
|
|
|
|
|
|
|
|
|
2023-02-17 12:27:17 +01:00
|
|
|
export WORKFLOW_PATH=~/Nextcloud/ressources/workflow_nextcloud
|
2023-02-20 16:55:34 +01:00
|
|
|
export WORKFLOW_PATH_ROOT=/home/$main_user/Nextcloud/ressources/workflow_nextcloud
|
2023-02-17 12:27:17 +01:00
|
|
|
export ALIASES_PATH=$WORKFLOW_PATH/install/.bash_custom_aliases
|
|
|
|
# fichiers orgmode, wiki personnel
|
2023-02-06 13:29:00 +01:00
|
|
|
export orgmode_path=~/Nextcloud/textes/orgmode
|
2023-02-17 12:27:17 +01:00
|
|
|
export inbox_orgmode=$orgmode_path/incoming_inbox.org
|
2023-02-06 13:29:00 +01:00
|
|
|
export orgroam_path=~/Nextcloud/textes/orgmode/org-roam
|
2023-02-17 12:27:17 +01:00
|
|
|
export backup_texts_folder=~/archives/backup_automatique
|
|
|
|
export HOME_OF_SCRIPTS=$www_folder/scripts
|
|
|
|
|
|
|
|
# archives dans un pool zfs nommé poule
|
|
|
|
export stockage_syncable_folder=/home/poule/encrypted/stockage-syncable
|
|
|
|
|
|
|
|
# dossier où stocker les projets de dev
|
|
|
|
export www_folder=$HOME/areas/www
|
|
|
|
|
|
|
|
export node_version_expected=16
|
|
|
|
|
|
|
|
export today=`date` # to log current time
|
|
|
|
export ARCHIVE_SYNCABLE=$stockage_syncable_folder # place where we have our things sorted, other than home
|
|
|
|
export BORG_PASSCOMMAND="cat $ARCHIVE_SYNCABLE/.tk-borg-passphrase-light" # get the borg repo pass
|
|
|
|
export SPACESHIP_BORG_REPO="/home/poule/borg_archives/backup_land4to"
|
|
|
|
export LOG_FILE_BACKUP="$ARCHIVE_SYNCABLE/www/backup/log_backup.log"
|
|
|
|
# log dates of execution of the script
|
2023-02-22 15:52:26 +01:00
|
|
|
export LOG_FILE_BACKUP_DATES="$ARCHIVE_SYNCABLE/www/backup/summary_log_backup.log"
|
|
|
|
|
|
|
|
export main_archive_source_sftop_spaceship="/mnt/spaceship_poule"
|
|
|
|
export IP_DU_NAS="/mnt/spaceship_poule"
|
|
|
|
|
2023-02-27 09:48:52 +01:00
|
|
|
export CURRENT_YEAR=$(date +%Y)
|
|
|
|
|
2023-02-22 15:52:26 +01:00
|
|
|
# add custom workflow scripts
|
|
|
|
export PATH=$WORKFLOW_PATH:$PATH
|