Fixed sed regular expression for disabling ipv6

Running the commands as they were before caused a duplicate "listen" entry in the nginx dynmaps configuration file. Like this:

server {
  listen 8081;
  listen 8081;
...

Causing nginx to reject the configuration and failing to start.
Dieser Commit ist enthalten in:
Daniel Castellanos 2022-08-02 00:15:25 +00:00 committet von GitHub
Ursprung 22e7f9fb6e
Commit 352ec8c92b
Es konnte kein GPG-SchlĂĽssel zu dieser Signatur gefunden werden
GPG-SchlĂĽssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -89,8 +89,8 @@ Fix the following NGINX, Dovecot and php-fpm config files
```
sed -i '/::/d' data/conf/nginx/listen_*
sed -i '/::/d' data/conf/nginx/templates/listen*
sed -i '/::/d' data/conf/nginx/dynmaps.conf
sed -i 's/,\[::\]//g' data/conf/dovecot/dovecot.conf
sed -i 's/\[::\]://g' data/conf/nginx/dynmaps.conf
sed -i 's/\[::\]://g' data/conf/phpfpm/php-fpm.d/pools.conf
```