Chandan Kumar (raukadah) f384126bdc Add initial project structure for the project
Change-Id: I5dde134740631daa103b1ea27c2a8891de8a40b0
Signed-off-by: Chandan Kumar (raukadah) <chkumar@redhat.com>
2025-01-27 11:04:42 +05:30

27 lines
475 B
Plaintext

# lib/watcher
# Functions to control the installation and configuration of the watcher services
pre_install_prometheus() {
# Install OS packages if necessary with "install_package ...".
}
install_prometheus() {
# Install the service.
}
configure_prometheus() {
# Configure the service.
}
init_prometheus() {
# Initialize and start the service.
}
shutdown_prometheus() {
# Shut the service down.
}
cleanup_prometheus() {
# Cleanup the service.
}