mirror of
https://github.com/naruxde/revpipyload.git
synced 2025-11-08 23:23:52 +01:00
26 lines
466 B
Bash
Executable File
26 lines
466 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin
|
|
|
|
case "$1" in
|
|
configure)
|
|
cat <<-END
|
|
|
|
========== Important RevPiPyLoad post-installation note ==========
|
|
|
|
The XML-RPC service is bind to localhost, only. To access the
|
|
daemon via RevPiCommander from your network, please change the
|
|
bindip in /etc/revpipyload/revpipyload.conf or execute:
|
|
|
|
sudo revpipyload_secure_installation
|
|
|
|
END
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|