blob: 30f0b75da97a51a7b7b96a4367af0e2cfdbe8774 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo '>>> IMPORTANT: If you changed /etc/homegear/main.conf, please check the .pacnew file'
echo '>>> and implement any new options to your configuration.'
echo
echo '>>> SSL on ports 2002 and 2003 is disabled by default.'
echo '>>> Run the following commands and then enable SSL in /etc/homegear/rpcservers.conf:'
echo '>>> # openssl genrsa -out /etc/homegear/homegear.key 2048'
echo '>>> # openssl req -new -key /etc/homegear/homegear.key -out /etc/homegear/homegear.csr'
echo '>>> # openssl x509 -req -in /etc/homegear/homegear.csr -signkey /etc/homegear/homegear.key -out /etc/homegear/homegear.crt'
}
|