Skip to content
Snippets Groups Projects
Commit 016db276 authored by Bob Mottram's avatar Bob Mottram
Browse files

Single quotes

parent af25e381
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ function matrix_nginx {
# append the matrix server to the web site config
matrix_nginx_site=/etc/nginx/sites-available/$DEFAULT_DOMAIN_NAME
if ! grep -q "# End of Matrix Server" $matrix_nginx_site; then
if ! grep -q '# End of Matrix Server' $matrix_nginx_site; then
if [[ $ONION_ONLY == "no" ]]; then
echo '# Matrix Server' >> $matrix_nginx_site
echo 'server {' >> $matrix_nginx_site
......
......@@ -65,7 +65,7 @@ function install_turn {
# append the matrix server to the web site config
turn_nginx_site=/etc/nginx/sites-available/$DEFAULT_DOMAIN_NAME
if ! grep -q "# End of TURN Server" $turn_nginx_site; then
if ! grep -q '# End of TURN Server' $turn_nginx_site; then
if [[ $ONION_ONLY == "no" ]]; then
echo '# TURN Server' >> $turn_nginx_site
echo 'server {' >> $turn_nginx_site
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment