blob: c2d1087d8f2775247011a1ae39f007818384d650 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
post_install() {
echo
echo "########################################################"
echo " Please note:"
echo " Server files are now in /srv/lcemp."
echo " To start the server, type systemctl enable --now lcemp-server"
echo " To view console, type screen -r lcemp-server"
echo " Thank you for using my package!"
echo " Thanks Matrix98 for the service file"
echo "########################################################"
echo
}
|