Make beakerlib load synchronisation related routines by default and install them.
Signed-off-by: Hubert Kario hkario@redhat.com --- src/Makefile | 1 + src/beakerlib.sh | 1 + 2 files changed, 2 insertions(+)
diff --git a/src/Makefile b/src/Makefile index c5263f7..4379bb0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -33,6 +33,7 @@ MODULES=journal.sh\ performance.sh\ analyze.sh\ libraries.sh\ + synchronisation.sh\ virtualX.sh
FILES=$(MODULES) beakerlib.sh diff --git a/src/beakerlib.sh b/src/beakerlib.sh index 84cfcf0..fe8acbd 100644 --- a/src/beakerlib.sh +++ b/src/beakerlib.sh @@ -287,6 +287,7 @@ export BEAKERLIB=${BEAKERLIB:-"/usr/share/beakerlib"} . $BEAKERLIB/analyze.sh . $BEAKERLIB/performance.sh . $BEAKERLIB/virtualX.sh +. $BEAKERLIB/synchronisation.sh if [ -d $BEAKERLIB/plugins/ ] ; then for source in $BEAKERLIB/plugins/*.sh ; do . $source