full_install_osm.sh 46.2 KiB
Newer Older
else
    # Community_installer
    # Check incompatible options
    [ -n "$TO_REBUILD" ] && [ "$TO_REBUILD" != " NONE" ] && echo $TO_REBUILD | grep -q NONE && FATAL "Incompatible option: -m NONE cannot be used with other -m options"
    [ -n "$TO_REBUILD" ] && [ "$TO_REBUILD" == " PLA" ] && [ -z "$INSTALL_PLA" ] && FATAL "Incompatible option: -m PLA cannot be used without --pla option"
    # Special cases go first
    # if develop, we force master
    [ -z "$COMMIT_ID" ] && [ -n "$DEVELOP" ] && COMMIT_ID="master"
    [ -n "$INSTALL_ONLY" ] && [ -n "$INSTALL_K8S_MONITOR" ] && install_k8s_monitoring
    [ -n "$INSTALL_ONLY" ] && [ -n "$INSTALL_NGSA" ] && install_osm_ngsa_service
    [ -n "$INSTALL_ONLY" ] && echo -e "\nDONE" && exit 0
    # This is where installation starts
    install_osm
    echo -e "\nDONE"
    exit 0
fleischmann's avatar
fleischmann committed
fi