Commit Graph

9 Commits

Author SHA1 Message Date
Bitnami Bot 090646f839
[bitnami/neo4j] Release 5.9.0-debian-11-r4 (#39188)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
2023-06-28 17:55:11 +02:00
Bitnami Bot 1b64cc5955
[bitnami/neo4j] Release 5.6.0-debian-11-r8 (#30992)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
2023-04-20 01:14:53 +02:00
Marc Rovner 5439966ea8
[bitnami/java] postunpack.sh should be copying the contents of JAVA_EXTRA_SECURITY_DIR, not the directory itself (#28667)
* java/postunpack.sh should be copying the contents of JAVA_EXTRA_SECURITY_DIR, not the directory

java/postunpack.sh copies the directory pointed to by JAVA_EXTRA_SECURITY_DIR as a subdir of `/opt/bitnami/java/lib/security` directory.

java/postunpack.sh should be coping just the contents of JAVA_EXTRA_SECURITY_DIR to `/opt/bitnami/java/lib/security` directory.

Rather it is copying the finaly directory on the path in JAVA_EXTRA_SECURITY_DIR as a subdir of `/opt/bitname/java/lib/security`

For example, using the default `JAVA_EXTRA_SECURITY_DIR` value "/bitnami/java/extra-security", create the file `rootfs/bitnami/java/extra-security/cacerts`, and build the image, rather than `/opt/bitnami/java/lib/security/cacerts` replaced with the new file, a new subdir `/opt/bitnami/java/lib/security/extra-security` directory is created, with the new `cacerts` file under there.

As a proposed fix for this, change the relevate `cp` commands from
```
   cp -Lr "$JAVA_EXTRA_SECURITY_DIR" /opt/bitnami/java/lib/security
```
to this, by added a `/.` to the end of the source argument:
```
   cp -Lr "$JAVA_EXTRA_SECURITY_DIR/." /opt/bitnami/java/lib/security
```

Signed-off-by: QuirkyMarc <mrovner@panix.com>

* Use braces for env-vars expansion

Signed-off-by: Andrés Bono <andresbono@vmware.com>

---------

Signed-off-by: QuirkyMarc <mrovner@panix.com>
Signed-off-by: Andrés Bono <andresbono@vmware.com>
Co-authored-by: Andrés Bono <andresbono@vmware.com>
2023-04-03 11:44:00 +02:00
Bitnami Bot 50c2a67556
[bitnami/neo4j] Release 5.6.0-debian-11-r2 (#28864)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
2023-04-01 15:37:15 +02:00
Bitnami Bot f32521fdf4
[bitnami/neo4j] Release 5.5.0-debian-11-r2 (#26101)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
2023-03-02 22:11:23 +01:00
Bitnami Bot d047d6d3d6
[bitnami/neo4j] Release 5.5.0-debian-11-r0 (#25360)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
2023-02-24 20:39:08 +01:00
Bitnami Bot bb3a486baf
[bitnami/neo4j] Release 5.3.0-debian-11-r1 (#20393)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
2023-01-16 11:02:22 +01:00
Bitnami Bot f0946e26f1
[bitnami/neo4j] Release 5.3.0-debian-11-r0 (#20181)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
2023-01-13 13:51:36 +01:00
Bitnami Bot ef46651393
[bitnami/neo4j] Release 5.1.0-debian-11-r0 (#12513)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
2022-11-04 13:51:05 +00:00