Commit 2f4c7abb83c6e6f5c896aeefe7d83c86af582b46
1 parent
8802facee1
Exists in
master
PG: add instruction to install code
Showing
1 changed file
with
7 additions
and
0 deletions
Show diff stats
ingester/setup.sh
1 | 1 | #!/bin/bash |
2 | 2 | |
3 | +echo "getting source code" | |
4 | +mkdir -p ~/bin/ | |
5 | +git clone git@gitlab.fccn.pt:dev-b-on/sama-scripts.git ~/bin/. | |
6 | + | |
7 | +ln -s ~/bin/ingester/prepare.sh ~/bin/prepare | |
8 | +ln -s ~/bin/ingester/ingest.sh ~/bin/ingest | |
9 | + | |
3 | 10 | ARCH=$(uname -m | sed 's/x86_//;s/i[3-6]86/32/') |
4 | 11 | |
5 | 12 | if [ -f /etc/lsb-release ]; then | ... | ... |