* clixon_restconf daemon is installed in /usr/local/sbin (as clixon_backend), instead of /www-data
* `configure --with-wwwdir=<dir>` remains but only applies to fcgi socket and log
* New option `CLICON_RESTCONF_INSTALL_DIR` is set to where clixon_restconf is installed, with default `/usr/local/sbin/`
* Restconf drop privileges user is defined by `CLICON_RESTCONF_USER`
* `configure --with-wwwuser=<user>` is removed
* clixon_restconf drop of privileges is defined by `CLICON_RESTCONF_PRIVILEGES` option
* New clixon-restconf@2020-05-20.yang revision
* Added: restconf `log-destination`
16 lines
377 B
Bash
16 lines
377 B
Bash
#!/bin/sh
|
|
# A top-level configurer for clixon
|
|
set -eux
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "usage: $0 <restconf>"
|
|
echo " where <restconf> is fcgi or native"
|
|
exit -1
|
|
fi
|
|
restconf=$1
|
|
|
|
if [ $(uname) = "FreeBSD" ]; then
|
|
./configure --with-cligen=/usr/local --enable-optyangs --with-restconf=$restconf
|
|
else
|
|
./configure --enable-optyangs --with-restconf=$restconf
|
|
fi
|