9311089520
This package is 3rdparty. Get latest release which is 0.5.2. Not much difference between 0.3.1 release used on CentOS and 0.5.2. Did build puppet-drbd-0.5.2 + starlingx patches (adapted from CentOS7). Adapted all patches. Adapt patch 0001. Keep 0002->0010. Did build an iso. Story: 2009101 Task: 43379 Signed-off-by: Dan Voiculeasa <dan.voiculeasa@windriver.com> Change-Id: Ifa748c2ba7ca0cddb7d829c88e852247929f549e
14 lines
248 B
Bash
14 lines
248 B
Bash
#!/bin/sh
|
|
# see: dh_installdeb(1)
|
|
|
|
set -e
|
|
|
|
if [ "${1}" = "configure" ] ; then
|
|
update-alternatives --install /usr/share/puppet/modules/drbd puppet-module-drbd \
|
|
/usr/share/puppet/modules.available/puppet-drbd 500
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|