Current File : //proc/self/root/usr/local/jetapps/usr/share/rear/rescue/NBU/default/450_prepare_netbackup.sh |
# 450_prepare_netbackup.sh
# prepare environment for NBU (only if NBU version >=7.x)
[ -f /usr/openv/netbackup/bin/version ] && \
NBU_version=$(grep -i netbackup /usr/openv/netbackup/bin/version | awk '{print $2}' | cut -d'.' -f1) || \
NBU_version=0
[[ $NBU_version -lt 7 ]] && return # NBU is using xinetd when version <7.x
if [ -e "/etc/init.d/vxpbx_exchanged" ]; then
cp $v /etc/init.d/vxpbx_exchanged $ROOTFS_DIR/etc/scripts/system-setup.d/vxpbx_exchanged.real
chmod $v +x $ROOTFS_DIR/etc/scripts/system-setup.d/vxpbx_exchanged.real
echo "( /etc/scripts/system-setup.d/vxpbx_exchanged.real start )" > $ROOTFS_DIR/etc/scripts/system-setup.d/89-vxpbx_exchanged.sh
fi
if [ -e "/etc/init.d/netbackup" ]; then
cp $v /etc/init.d/netbackup $ROOTFS_DIR/etc/scripts/system-setup.d/netbackup.real
chmod $v +x $ROOTFS_DIR/etc/scripts/system-setup.d/netbackup.real
echo "( /etc/scripts/system-setup.d/netbackup.real )" > $ROOTFS_DIR/etc/scripts/system-setup.d/90-netbackup.sh
chmod $v +x $ROOTFS_DIR/etc/scripts/system-setup.d/90-netbackup.sh
fi