mirror of
https://github.com/elAgala/server-initializer.git
synced 2026-02-14 05:06:18 +00:00
- Add monitoring_network for prometheus instance - Add Crowdsec & Caddy scrapes - Install make as dependency - Add Makefile for easily executing caddy commands
9 lines
177 B
Bash
9 lines
177 B
Bash
#!/bin/bash
|
|
|
|
function install_make() {
|
|
echo "[ UTILS ]: Installing Make"
|
|
sudo apt update
|
|
sudo apt install build-essential
|
|
echo "[ UTILS ]: Make installed succesfully"
|
|
}
|