mirror of https://github.com/sipwise/ngcp-csc.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
294 B
11 lines
294 B
#!/bin/bash
|
|
|
|
VAGRANT_MNT=${VAGRANT_MNT:-/usr/local/devel}
|
|
|
|
if [ -L "/usr/share/ngcp-csc/csc" ]; then
|
|
echo "/usr/share/ngcp-csc/csc is already a link, ignoring..."
|
|
else
|
|
mv "/usr/share/ngcp-csc/csc" "/usr/share/ngcp-csc/csc.orig"
|
|
ln -s "$VAGRANT_MNT/ngcp-csc/" "/usr/share/ngcp-csc/csc"
|
|
fi
|