8 lines
100 B
Bash
8 lines
100 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
. $1 # source the apps.config file with then env vars
|
||
|
|
|
||
|
|
echo "$RESTIC_PASSWORD"
|