Documentation
¶
Index ¶
- func CheckIfPathExist(path string) bool
- func CheckIfServiceIsActive(serv string) (bool, error)
- func CheckIfServiceIsInstalled(serv string) (bool, error)
- func CreateLogger(filename string) *logger.Logger
- func CreatePathIfNotExist(path string) error
- func DoReq[response any](url string, data []byte, method string, headers map[string]string, ...) (response, int, error)
- func DownloadFile(url string, fileName string, utmLogger *logger.Logger) error
- func Execute(c string, dir string, arg ...string) error
- func ExecuteWithResult(c string, dir string, arg ...string) (string, bool)
- func GetCurrentTime() string
- func GetMyPath() (string, error)
- func IncrementReconnectDelay(delay time.Duration, maxReconnectDelay time.Duration) time.Duration
- func LoadTLSCredentials(crtName string) (*tls.Config, error)
- func ReadJson(fileName string, data interface{}) error
- func ReadYAML(path string, result interface{}) error
- func RemoveLock(lockdir string) error
- func RestartService(serv string) error
- func SetLock(lockdir string) error
- func StopService(name string) error
- func UninstallService(name string) error
- func WriteJSON(path string, data interface{}) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CheckIfPathExist ¶
CheckIfPathExist checks if a specific path exists
func CheckIfServiceIsActive ¶
CheckIfServiceIsActive checks if a service is active or running
func CheckIfServiceIsInstalled ¶
CheckIfServiceIsInstalled checks if a service is installed
func CreateLogger ¶
CreateLogger returns a single instance of a Logger configured to save logs to a rotating file.
func CreatePathIfNotExist ¶
CreatePathIfNotExist creates a specific path if not exist
func DoReq ¶
func DoReq[response any](url string, data []byte, method string, headers map[string]string, config *tls.Config) (response, int, error)
DoReq makes a request to the specified URL with the specified data, method and headers.
func DownloadFile ¶
DownloadFile downloads a file from a URL and saves it to disk. Returns an error on failure.
func ExecuteWithResult ¶
ExecuteWithResult executes a command and returns the output
func GetCurrentTime ¶
func GetCurrentTime() string
GetCurrentTime returns the current time in the format YYYYMMDDHHMMSS
func GetMyPath ¶
GetMyPath returns the directory path where the currently running executable is located. Returns a string representing the directory path, and an error if any error occurs during the process.
func IncrementReconnectDelay ¶
IncrementReconnectDelay increments the delay for reconnecting to the server
func LoadTLSCredentials ¶
LoadTLSCredentials loads the TLS credentials from the specified certificate file.
func ReadJson ¶
ReadJson reads the json data from the specified file URL and unmarshal it into the provided result interface{}. Returns an error if any error occurs during the process.
func ReadYAML ¶
ReadYAML reads the YAML data from the specified file URL and deserializes it into the provided result interface{}. Returns an error if any error occurs during the process.
func UninstallService ¶
UninstallService uninstalls a service
Types ¶
This section is empty.