a7f5eae270
Add a check to make sure that the ceph package is installed in the add-storage shim. The add-storage hook is run prior to the install hook in order to provide storage for the install phase of the charm in cases where it is needed. The ceph-osd charm converts Juju storage into OSDs and doesn't need the storage for the install hook, so just skip the hook if its run early. Change-Id: I7b7518f52d0b5ad947b0809af8ad67d342211779 Closes-Bug: #1675186
18 lines
636 B
Bash
Executable File
18 lines
636 B
Bash
Executable File
#!/bin/bash
|
|
# shim used to determine that the ceph packages have been installed
|
|
# before running hook execution. The add-storage hook fires before
|
|
# the install hook in order to provide storage for charms which need
|
|
# it at install time, however the storage added for the ceph-osd
|
|
# application will be used to create OSDs, which require the ceph
|
|
# binaries, bootstrapping the node, etc.
|
|
#
|
|
# Note: this doesn't wait to ensure that ceph is bootstrapped because
|
|
# that logic is already existing in the charm's hook.
|
|
|
|
if ! dpkg -s ceph > /dev/null 2>&1; then
|
|
juju-log "Ceph not yet installed."
|
|
exit 0
|
|
fi
|
|
|
|
exec ./hooks/storage.real
|