#!/bin/bash
if [ -r /etc/os-release ]; then
    . /etc/os-release
    echo " detecting OS type: $VERSION_CODENAME"
    echo "deb [trusted=yes] http://repo-dev.litespeedtech.com/debian/ $VERSION_CODENAME main" > /etc/apt/sources.list.d/ls_dev_repo.list
fi
echo " update the repo "
apt-get update

