#!/bin/bash txturl='\033[1;36m' txturl1='\033[0;36m' txtg='\033[0;32m' NOCOLOR='\033[0m' repoupdate () { echo "" echo "--------------" echo "Repo update" echo "--------------" echo "" git fetch -q git pull -a } usage () { echo "" echo "--------------" echo " Documantation " echo "--------------" echo "" echo " USAGE: ./build.sh [OPTIONS]" echo "" echo " Examples of [OPTIONS] can be:" echo "" echo -e " ${txtg}network-scanning:${NOCOLOR} This tutorial demonstrates some common nmap port scanning scenarios and explains the output. " echo "" echo -e " ${txtg}sensor-node:${NOCOLOR} This tutorial demonstrates, howto create a mote with Raspberry Pi and Arduino & howto use it " echo "" echo -e " ${txtg}help:${NOCOLOR} show this message" echo " ./build.sh help" echo "" echo " ********************************************" echo -e " ${txturl1}On Error:${NOCOLOR}" echo " Get https://hub.swarmlab.io:5480/v2/: x509: certificate" echo " ERROR: Get https://hub.swarmlab.io:5480/v2/: x509: certificate signed by unknown authority" echo -e " ${txturl1}run:${NOCOLOR}" echo -e " ${txtg}./0-get-certs.sh${NOCOLOR} " echo " ********************************************" echo "" echo " " } create_docs () { printf "\\n\\n===> Build docs" printf "\\n" docker stop swarmlab-documentation docker container rm swarmlab-documentation docker pull hub.swarmlab.io:5480/antora ./0-cert.error docker run -ti --name swarmlab-documentation -v $PWD/$docdir:/antora -v $PWD/supplemental-ui:/antora/supplemental-ui hub.swarmlab.io:5480/antora /bin/sh -c "DOCSEARCH_ENABLED=true DOCSEARCH_ENGINE=lunr DOCSEARCH_INDEX_VERSION=latest NODE_PATH=/usr/local/lib/node_modules:\$NODE_PATH exec sh -c '/antora/run/$build'" } COMMAND_CREATE=0 build="" docdir="" while [ "$1" != "" ]; do PARAM=$(echo "$1" | awk -F= '{print $1}') VALUE=$(echo "$1" | awk -F= '{print $2}') case $PARAM in help) usage exit ;; network-scanning) DESC="network-scanning" ; build="build-intro.sh" ; docdir="intro" ; COMMAND_CREATE=1 ;; sensor-node) DESC="Sensor node" ; build="build.sh" ; # source adoc directory docdir="sensor-node" ; COMMAND_CREATE=1 ;; *) echo "ERROR: unknown parameter \"$PARAM\"" usage exit 1 ;; esac shift done if [ $COMMAND_CREATE -eq 1 ]; then create_docs else repoupdate usage fi