#!/usr/bin/env bash

isServiceInstalled()
{
    if [[ -e "/lib/systemd/system/am-otel-collector.service" ]]; then
        # true
        return 0
    else
        # false
        return 1
    fi
}
