summarylogtreecommitdiffstats
path: root/midnight-dler.install
blob: f32be2e1fecf3ee7a55e5b6ea5ed2214157bfcfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This is a default template for a post-install scriptlet.
# Uncomment only required functions and remove any functions
# you don't need (and this header).


post_install() {
	 cat <<eof
package is installed now, but you need to set bios wake on clock settings to
make your pc wakeup at night. else, you need to manually power on your system
during the night.

use "systemctl enable --now midnight-dler.service" to enable the service.
eof
}

post_upgrade() {
	post_install
}

## arg 1:  the old package version
#post_remove() {
	# do something here
#}