github.com/nuvolaris/nuv@v0.0.0-20240511174247-a74e3a52bfd8/validate/validate.sh (about)

     1  # Licensed to the Apache Software Foundation (ASF) under one
     2  # or more contributor license agreements.  See the NOTICE file
     3  # distributed with this work for additional information
     4  # regarding copyright ownership.  The ASF licenses this file
     5  # to you under the Apache License, Version 2.0 (the
     6  # "License"); you may not use this file except in compliance
     7  # with the License.  You may obtain a copy of the License at
     8  #
     9  #   http://www.apache.org/licenses/LICENSE-2.0
    10  #
    11  # Unless required by applicable law or agreed to in writing,
    12  # software distributed under the License is distributed on an
    13  # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    14  # KIND, either express or implied.  See the License for the
    15  # specific language governing permissions and limitations
    16  # under the License.
    17  
    18  #VER=3.0.1-beta.2310151130
    19  #EXT=.rpm
    20  
    21  URL=https://github.com/nuvolaris/nuv/releases/download/$VER/nuv_${VER}_${ARCH}${EXT} >nuv${EXT}
    22  echo $(basename $URL)
    23  
    24  case "$EXT" in 
    25    *.deb)
    26      apt-get update >/dev/null 2>/dev/null && apt-get install -y curl >/dev/null 2>/dev/null
    27      export INST="dpkg -i"
    28    ;;
    29    *.rpm) 
    30      export INST="rpm -i"
    31    ;;
    32  esac
    33  
    34  curl -sL "$URL" >nuv${EXT}
    35  $INST "nuv${EXT}" >/dev/null 2>/dev/null
    36  nuv -v >/dev/null 2>/dev/null
    37  
    38  if nuv -info | grep "NUV_VERSION: $VER"
    39  then exit 0
    40  else exit 1
    41  fi
    42