13 lines
173 B
Plaintext
13 lines
173 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
config='/etc/config'
|
||
|
|
||
|
if [ -f "$config" ]; then
|
||
|
source "$config"
|
||
|
echo "$cfg_glued_version"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
echo "ERROR: failed to load '$config'."
|
||
|
exit 1
|