mirror of
https://github.com/naruxde/revpipyload.git
synced 2025-11-08 15:13:52 +01:00
This program will activate/deactivate XML-RPC, bind it to localhost or your network adapter, install ACL lists, which you can modify via RevPiPyControl
8 lines
192 B
Bash
Executable File
8 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
if [ -d /usr/local/share/revpipyload ]
|
|
then
|
|
exec "/usr/local/share/revpipyload/secure_installation.py" "$@"
|
|
else
|
|
exec "/usr/share/revpipyload/secure_installation.py" "$@"
|
|
fi
|