Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ heartbeat/SysInfo
heartbeat/aws-vpc-route53
heartbeat/azure-events
heartbeat/azure-events-az
heartbeat/azure-sap-zone
heartbeat/clvm
heartbeat/conntrackd
heartbeat/dnsupdate
Expand Down
8 changes: 8 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,13 @@ if test -z "$PYTHON" || test $BUILD_OCF_PY -eq 0; then
fi
AM_CONDITIONAL(BUILD_AZURE_EVENTS_AZ, test $BUILD_AZURE_EVENTS_AZ -eq 1)

BUILD_AZURE_SAP_ZONE=1
if test -z "$PYTHON" || test $BUILD_OCF_PY -eq 0; then
BUILD_AZURE_SAP_ZONE=0
AC_MSG_WARN("Not building azure-sap-zone")
fi
AM_CONDITIONAL(BUILD_AZURE_SAP_ZONE, test $BUILD_AZURE_SAP_ZONE -eq 1)

BUILD_GCP_PD_MOVE=1
if test -z "$PYTHON" || test $BUILD_OCF_PY -eq 0; then
BUILD_GCP_PD_MOVE=0
Expand Down Expand Up @@ -1021,6 +1028,7 @@ rgmanager/Makefile \
dnl Files we output that need to be executable
AC_CONFIG_FILES([heartbeat/azure-events], [chmod +x heartbeat/azure-events])
AC_CONFIG_FILES([heartbeat/azure-events-az], [chmod +x heartbeat/azure-events-az])
AC_CONFIG_FILES([heartbeat/azure-sap-zone], [chmod +x heartbeat/azure-sap-zone])
AC_CONFIG_FILES([heartbeat/AoEtarget], [chmod +x heartbeat/AoEtarget])
AC_CONFIG_FILES([heartbeat/ManageRAID], [chmod +x heartbeat/ManageRAID])
AC_CONFIG_FILES([heartbeat/ManageVE], [chmod +x heartbeat/ManageVE])
Expand Down
4 changes: 4 additions & 0 deletions doc/man/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,10 @@ if BUILD_AZURE_EVENTS_AZ
man_MANS += ocf_heartbeat_azure-events-az.7
endif

if BUILD_AZURE_SAP_ZONE
man_MANS += ocf_heartbeat_azure-sap-zone.7
endif

if BUILD_GCP_PD_MOVE
man_MANS += ocf_heartbeat_gcp-pd-move.7
endif
Expand Down
4 changes: 4 additions & 0 deletions heartbeat/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,10 @@ if BUILD_AZURE_EVENTS_AZ
ocf_SCRIPTS += azure-events-az
endif

if BUILD_AZURE_SAP_ZONE
ocf_SCRIPTS += azure-sap-zone
endif

if BUILD_GCP_PD_MOVE
ocf_SCRIPTS += gcp-pd-move
endif
Expand Down
Loading