More repos included within image
This commit is contained in:
parent
e65779aa0b
commit
c3812ffd87
|
@ -1236,6 +1236,7 @@ function image_preinstall_repos {
|
|||
fi
|
||||
git clone $CMAKE_REPO $rootdir/repos/cmake
|
||||
git clone $INADYN_REPO $rootdir/repos/inadyn
|
||||
git clone $TOMB_REPO $rootdir/repos/tomb
|
||||
git clone $CRYPTPAD_REPO $rootdir/repos/cryptpad
|
||||
git clone $DOKUWIKI_REPO $rootdir/repos/dokuwiki
|
||||
git clone $ETHERPAD_REPO $rootdir/repos/etherpad
|
||||
|
|
|
@ -38,7 +38,15 @@ function mesh_install_tomb {
|
|||
mkdir -p ${rootdir}/$INSTALL_DIR
|
||||
fi
|
||||
|
||||
git_clone $TOMB_REPO ${rootdir}/$INSTALL_DIR/tomb
|
||||
if [ -d /repos/tomb ]; then
|
||||
mkdir ${rootdir}/$INSTALL_DIR/tomb
|
||||
cp -r -p /repos/tomb/* ${rootdir}/$INSTALL_DIR/tomb
|
||||
cd ${rootdir}/$INSTALL_DIR/tomb
|
||||
git pull
|
||||
else
|
||||
git_clone $TOMB_REPO ${rootdir}/$INSTALL_DIR/tomb
|
||||
fi
|
||||
|
||||
cd ${rootdir}/$INSTALL_DIR/tomb
|
||||
|
||||
git checkout $TOMB_COMMIT -b $TOMB_COMMIT
|
||||
|
@ -73,7 +81,15 @@ function install_tomb {
|
|||
mkdir -p $INSTALL_DIR
|
||||
fi
|
||||
|
||||
git_clone $TOMB_REPO $INSTALL_DIR/tomb
|
||||
if [ -d /repos/tomb ]; then
|
||||
mkdir $INSTALL_DIR/tomb
|
||||
cp -r -p /repos/tomb/* $INSTALL_DIR/tomb
|
||||
cd $INSTALL_DIR/tomb
|
||||
git pull
|
||||
else
|
||||
git_clone $TOMB_REPO $INSTALL_DIR/tomb
|
||||
fi
|
||||
|
||||
cd $INSTALL_DIR/tomb
|
||||
|
||||
git checkout $TOMB_COMMIT -b $TOMB_COMMIT
|
||||
|
|
Loading…
Reference in New Issue