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

# 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