Files
nginx-unit/pkg/rpm/rpmbuild/SOURCES/unit.saveconfig.sh
2017-10-19 18:23:31 +03:00

25 lines
430 B
Bash

#!/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