blob: 6b52bb262389f25248916729c61c1dad9ea7137f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
post_common() {
systemd-sysusers signal-cli.conf
systemd-tmpfiles --create signal-cli.conf
}
post_install() {
post_common "$@"
}
post_upgrade() {
post_common "$@"
}
|