blob: e8584d04a97cd2978227d541008b95ea049b12be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
cat <<'EOF'
DeepCool Digital Linux has been installed.
To start the service now, run:
sudo systemctl start deepcool-digital.service
To enable it automatically at boot, run:
sudo systemctl enable deepcool-digital.service
To enable and start it immediately, run:
sudo systemctl enable --now deepcool-digital.service
To check the service status, run:
systemctl status deepcool-digital.service
EOF
}
post_upgrade() {
post_install
}
|