#!/bin/bash

source /etc/os-release

if [ "$ID" = "debian" ]; then
    export HOST_OS=$ID
else
    export HOST_OS=rhel
fi
