aboutsummaryrefslogtreecommitdiffstats
path: root/elements/xtesting/install.d/16-xtesting
blob: df8fcb470519f5afc38dd5cc72ab8aecf7fea9e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

download-frozen-image-v2.sh /data/docker/xtesting \
  opnfv/xtesting:2023.2
git init /home/debian/functest-xtesting && \
(cd /home/debian/functest-xtesting && \
  git fetch --tags https://git.opnfv.org/functest-xtesting stable/2023.2 && \
  git checkout FETCH_HEAD) && \
chown -R 1000:1000 /home/debian/functest-xtesting

exit 0