Files
containers/.vib/openldap/goss/openldap.yaml
Felipe V.C. Serafim 97afafbee7 [bitnami/*] Add copyright header to vib files (#39154)
Add copyright header to vib files

Signed-off-by: sfelipe <sfelipe@vmware.com>
2023-06-29 09:57:31 +02:00

39 lines
980 B
YAML

# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
file:
/opt/bitnami/openldap/etc/slapd.d:
exists: true
filetype: symlink
linked-to: /bitnami/openldap/slapd.d
/opt/bitnami/openldap/var/data:
exists: true
filetype: symlink
linked-to: /bitnami/openldap/data
/opt/bitnami/openldap/sbin/slapadd:
exists: true
filetype: symlink
linked-to: /opt/bitnami/openldap/sbin/slapd
/opt/bitnami/openldap/etc/slapd.conf.default:
exists: false
{{ range $package := .Vars.packages }}
{{ $package }}:
exists: true
{{ end }}
command:
check-enabled-backends:
exec: slapd -VVV 2>&1
exit-status: 0
stdout:
{{ range $backend := .Vars.backends }}
- "{{ $backend }}"
{{ end }}
# slapd doesn't have a '-h' flag to print the available options
check-enabled-features:
exec: slapd -h 2>&1
exit-status: 1
stdout:
{{ range $feature := .Vars.features }}
- "{{ $feature }}"
{{ end }}