summaryrefslogtreecommitdiffhomepage
path: root/pkg/rpm/rpmbuild/SOURCES/unit.saveconfig.sh
blob: dbed9a81dc2b0d1e7fabcf7919b367925b469638 (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
#!/bin/sh
#
# Legacy action script for "service unit saveconfig"

CONFIG=/etc/unit/config

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

curl -sS --unix-socket /var/run/control.unit.sock localhost >${CONFIG}.new

if [ $? -ne 0 ]; then
    echo "Could not retreive configuration" >&2
    rm -f ${CONFIG}.new
    exit 1
fi

mv ${CONFIG}.new ${CONFIG}

echo "The following configuration has been saved to ${CONFIG}:"
cat ${CONFIG}

exit 0