gluon-core: remove sysconfig.sh

This commit is contained in:
Matthias Schiffer 2014-07-10 23:45:03 +02:00
parent e80dbda64a
commit 25b6cc6088
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
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"
}