Fix sed for irc port changes
This commit is contained in:
parent
066a5c762b
commit
b25f9b1de8
|
@ -7452,9 +7452,9 @@ function install_irc_server {
|
||||||
sed -i 's|;DHFile = /etc/ngircd/dhparams.pem|DHFile = /etc/ssl/certs/ngircd.dhparam|g' /etc/ngircd/ngircd.conf
|
sed -i 's|;DHFile = /etc/ngircd/dhparams.pem|DHFile = /etc/ssl/certs/ngircd.dhparam|g' /etc/ngircd/ngircd.conf
|
||||||
sed -i 's|;KeyFile = /etc/ssl/private/server.key|KeyFile = /etc/ssl/private/ngircd.key|g' /etc/ngircd/ngircd.conf
|
sed -i 's|;KeyFile = /etc/ssl/private/server.key|KeyFile = /etc/ssl/private/ngircd.key|g' /etc/ngircd/ngircd.conf
|
||||||
if [[ $ONION_ONLY != 'yes' ]]; then
|
if [[ $ONION_ONLY != 'yes' ]]; then
|
||||||
sed -i ":a;N;\$!ba;s/;Ports =.*/;Ports = $IRC_PORT, $IRC_ONION_PORT/1" /etc/ngircd/ngircd.conf
|
sed -i "s/;Ports =.*/;Ports = $IRC_PORT, $IRC_ONION_PORT/1" /etc/ngircd/ngircd.conf
|
||||||
else
|
else
|
||||||
sed -i ":a;N;\$!ba;s/;Ports =.*/Ports = $IRC_PORT, $IRC_ONION_PORT/1" /etc/ngircd/ngircd.conf
|
sed -i "s/;Ports =.*/Ports = $IRC_PORT, $IRC_ONION_PORT/1" /etc/ngircd/ngircd.conf
|
||||||
fi
|
fi
|
||||||
sed -i ":a;N;\$!ba;s/;Ports =.*/Ports = $IRC_PORT/2" /etc/ngircd/ngircd.conf
|
sed -i ":a;N;\$!ba;s/;Ports =.*/Ports = $IRC_PORT/2" /etc/ngircd/ngircd.conf
|
||||||
sed -i "s/;Name = #ngircd/Name = #${PROJECT_NAME}/g" /etc/ngircd/ngircd.conf
|
sed -i "s/;Name = #ngircd/Name = #${PROJECT_NAME}/g" /etc/ngircd/ngircd.conf
|
||||||
|
|
|
@ -589,14 +589,14 @@ function irc_via_onion {
|
||||||
255) return;;
|
255) return;;
|
||||||
esac
|
esac
|
||||||
if [[ $irc_onion == 'no' ]]; then
|
if [[ $irc_onion == 'no' ]]; then
|
||||||
sed -i ":a;N;\$!ba;s/;Ports =.*/;Ports = $IRC_PORT, $IRC_ONION_PORT/1" /etc/ngircd/ngircd.conf
|
sed -i "s/;Ports =.*/;Ports = $IRC_PORT, $IRC_ONION_PORT/1" /etc/ngircd/ngircd.conf
|
||||||
sed -i ":a;N;\$!ba;s/;Ports =.*/Ports = $IRC_PORT/2" /etc/ngircd/ngircd.conf
|
sed -i "s/;Ports =.*/Ports = $IRC_PORT/2" /etc/ngircd/ngircd.conf
|
||||||
systemctl restart ngircd
|
systemctl restart ngircd
|
||||||
dialog --title $"IRC Server" \
|
dialog --title $"IRC Server" \
|
||||||
--msgbox $"The IRC server can now be accessed via SSL at your main domain name" 8 50
|
--msgbox $"The IRC server can now be accessed via SSL at your main domain name" 8 50
|
||||||
else
|
else
|
||||||
sed -i ":a;N;\$!ba;s/;Ports =.*/Ports = $IRC_PORT, $IRC_ONION_PORT/1" /etc/ngircd/ngircd.conf
|
sed -i "s/;Ports =.*/Ports = $IRC_PORT, $IRC_ONION_PORT/1" /etc/ngircd/ngircd.conf
|
||||||
sed -i ":a;N;\$!ba;s/;Ports =.*/Ports = $IRC_PORT/2" /etc/ngircd/ngircd.conf
|
sed -i "s/;Ports =.*/Ports = $IRC_PORT/2" /etc/ngircd/ngircd.conf
|
||||||
systemctl restart ngircd
|
systemctl restart ngircd
|
||||||
dialog --title $"IRC Server" \
|
dialog --title $"IRC Server" \
|
||||||
--msgbox $"The IRC server can now be accessed via its onion address without SSL" 8 50
|
--msgbox $"The IRC server can now be accessed via its onion address without SSL" 8 50
|
||||||
|
|
Loading…
Reference in New Issue