Skip to content

Commit 7b87af9

Browse files
committed
fixing an extra set of quotes
1 parent 5bb16bb commit 7b87af9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ venv.bak/
2525
# ssl certs
2626
ssl/
2727
# Mythic files
28+
nginx-docker/config/blockips.conf
2829
mythic-docker/src/Mythic
2930
mythic_access.*
3031
mythic_sync/

Mythic_CLI/src/cmd/internal/serviceMetadata.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func AddMythicService(service string, removeVolume bool) {
7777
"mythic_postgres:127.0.0.1",
7878
}
7979
if mythicEnv.GetBool("postgres_bind_localhost_only") {
80-
pStruct["command"] = "postgres -c \"max_connections=100\" -p ${POSTGRES_PORT} -c config_file=/etc/postgresql.conf -c \"listen_addresses='localhost'\""
80+
pStruct["command"] = "postgres -c \"max_connections=100\" -p ${POSTGRES_PORT} -c config_file=/etc/postgresql.conf -c \"listen_addresses=localhost\""
8181
} else {
8282
pStruct["command"] = "postgres -c \"max_connections=100\" -p ${POSTGRES_PORT} -c config_file=/etc/postgresql.conf"
8383
}

0 commit comments

Comments
 (0)