Commit 01f3b24b authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Oculta salida de error de comandos finales

parent 9d89453d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -100,9 +100,9 @@ services:
          echo "Found previous certs, omitting creation";
        fi;
        echo "Setting file permissions";
        chown -R root:root ${ES_CERT_PATH} > /dev/null;
        find ${ES_CERT_PATH} -type d -exec chmod 750 \{\} \; > /dev/null;
        find ${ES_CERT_PATH} -type f -exec chmod 640 \{\} \; > /dev/null;
        chown -R root:root ${ES_CERT_PATH} > /dev/null 2>&1;
        find ${ES_CERT_PATH} -type d -exec chmod 750 \{\} \; > /dev/null 2>&1;
        find ${ES_CERT_PATH} -type f -exec chmod 640 \{\} \; > /dev/null 2>&1;
        echo "All done!";
      '
    environment: