summarylogtreecommitdiffstats
path: root/airtime.install
blob: 8c92661a4f79a277c6345a4af5489386f33f7ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
post_install() {
	if type -P systemd-tmpfiles &> /dev/null; then
    systemd-tmpfiles --create airtime.conf
  fi
}

post_upgrade() {
	if type -P systemd-tmpfiles &> /dev/null; then
		systemd-tmpfiles --create airtime.conf
 	fi
}