Skip to content
Snippets Groups Projects
Commit 1a52c6bd authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-core: remove sysconfig.sh

parent f73d727a
No related branches found
No related tags found
No related merge requests found
SYSCONFIGDIR=/lib/gluon/core/sysconfig
sysconfig() {
cat "$SYSCONFIGDIR/$1" 2>/dev/null
}
sysconfig_isset() {
test -e "$SYSCONFIGDIR/$1"
}
sysconfig_set() {
echo -n "$2" > "$SYSCONFIGDIR/$1"
}
sysconfig_unset() {
rm -f "$SYSCONFIGDIR/$1"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment