summarylogtreecommitdiffstats
path: root/piaware-git.install
blob: 060a67904c00b2fc58b1ec3be7cd0850692eccc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
	useradd -M piaware
	systemctl enable piaware
}

pre_remove() {
	systemctl stop piaware
	systemctl disable piaware
}

post_upgrade() {
	post_install
}