aboutsummarylogtreecommitdiffstats
path: root/install-script.install
blob: 0072fd6da9b3048129b4963612d9b45d3d44f3da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
RED='\033[0;31m'
NC='\033[0m' # No Color

post_install() {
	echo -e "${RED}!!! Modify /etc/conduit/config to suit your configuration needs !!!${NC}"
	echo -e "Don't forget to enable conduit:"
	echo -e "	systemctl enable --now conduit"
}

post_upgrade() {
	echo -e "${RED}Don't forget to restart conduit:"
	echo -e "	systemctl restart conduit"
}