You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
424 B
12 lines
424 B
6 years ago
|
#!/usr/bin/env sh
|
||
|
# Check the snap configuration to properly fill the YACY_DATA_PATH environment variable
|
||
|
|
||
|
DATA_VERSIONED="$(snapctl get data.versioned)"
|
||
|
if [ "$DATA_VERSIONED" = "false" ]; then
|
||
|
# YaCy data is in the Snap common (non versioned) user data
|
||
|
YACY_DATA_PATH="$SNAP_USER_COMMON/DATA"
|
||
|
else
|
||
|
# Defaults : YaCy data is in the Snap versioned user data
|
||
|
YACY_DATA_PATH="$SNAP_USER_DATA/DATA"
|
||
|
fi
|
||
|
export YACY_DATA_PATH
|