13 lines
198 B
Bash
Executable File
13 lines
198 B
Bash
Executable File
#! /bin/sh
|
|
|
|
config='/etc/config'
|
|
|
|
if [ -f "$config" ]; then
|
|
source "$config"
|
|
echo "$cfg_glued_version ($cfg_glued_git_version)"
|
|
exit 0
|
|
fi
|
|
|
|
echo "ERROR: failed to load '$config'."
|
|
exit 1
|