aboutsummaryrefslogtreecommitdiffstats
path: root/nfvbenchvm/dib/elements/nfvbenchvm/post-install.d/03-copy-rc-local
blob: 4a8e66b5f33e40c6e0433ac3c0a6db245ada8998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

if [ ${DIB_DEBUG_TRACE:-1} -gt 0 ]; then
    set -x
fi

# Stop on error
set -euo pipefail

# set accurate rc.local file corresponding to current image built
if [ $DIB_DEV_IMAGE = "loopvm" ]; then
    mv /etc/rc.d/rc.local.loopvm /etc/rc.d/rc.local
else
    mv /etc/rc.d/rc.local.generator /etc/rc.d/rc.local
fi