mirror of
https://github.com/kevinveenbirkenbach/linux-image-manager.git
synced 2024-11-10 01:51:03 +01:00
Implemented general backup script
This commit is contained in:
parent
6ce2ab8a31
commit
022269c189
@ -48,6 +48,7 @@ $HOME/Documents/certificates/ | Contains certificates to authenticate via [certi
|
|||||||
| Order | Description |
|
| Order | Description |
|
||||||
|---|---|
|
|---|---|
|
||||||
| ```bash ./scripts/system-setup.sh``` | Setup the customized software on the system on which you execute it. |
|
| ```bash ./scripts/system-setup.sh``` | Setup the customized software on the system on which you execute it. |
|
||||||
|
| ```bash ./scripts/backup.sh``` | Executes all setup scripts. |
|
||||||
| ```bash ./scripts/import-data-from-system.sh``` | Import data from the host system.|
|
| ```bash ./scripts/import-data-from-system.sh``` | Import data from the host system.|
|
||||||
| ```bash ./scripts/export-data-to-system.sh``` | Export data to the host system.|
|
| ```bash ./scripts/export-data-to-system.sh``` | Export data to the host system.|
|
||||||
| ```bash ./scripts/unlock.sh``` | Unlock the stored data.|
|
| ```bash ./scripts/unlock.sh``` | Unlock the stored data.|
|
||||||
|
6
scripts/backup.sh
Normal file
6
scripts/backup.sh
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Executes all scripts which are necessary to backup data
|
||||||
|
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
||||||
|
source "$(dirname "$(readlink -f "${0}")")/base.sh"
|
||||||
|
bash "$SCRIPT_PATH/import-data-from-system.sh"
|
||||||
|
bash "$SCRIPT_PATH/push-local-repositories.sh"
|
Loading…
Reference in New Issue
Block a user