2019-09-30 15:29:28 +02:00
|
|
|
#!/bin/bash
|
2019-09-30 16:13:26 +02:00
|
|
|
# Executes the import script in reverse mode
|
|
|
|
|
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
2019-10-01 12:30:27 +02:00
|
|
|
# shellcheck source=/dev/null # Deactivate SC1090
|
2020-05-02 12:39:00 +02:00
|
|
|
source "$(dirname "$(readlink -f "${0}")")/../base.sh" || (echo "Loading base.sh failed." && exit 1)
|
2020-05-03 20:32:57 +02:00
|
|
|
bash "$SCRIPT_PATH""data/import-from-system.sh" reverse
|