summaryrefslogtreecommitdiffhomepage
path: root/pkg/rpm/rpmbuild/SOURCES/unit.loadconfig.sh
blob: 3dd9074086581f1cecb3e2112f2b711cba0763c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
#
# Legacy action script for "service unit loadconfig"

CONFIG=/etc/unit/config

if [ -n "$1" ] ; then
    CONFIG=$1
fi

if [ ! -e ${CONFIG} ]; then
    echo "Could not find ${CONFIG} for loading" >&2
    exit 1
fi

echo "Loading configuration from ${CONFIG}..."

curl -sS -X PUT --data-binary @${CONFIG} --unix-socket /var/run/control.unit.sock localhost

if [ $? -ne 0 ]; then
    echo "Loading failed!" >&2
    exit 1
fi

exit 0