mirror of
https://github.com/moparisthebest/arch-ppa
synced 2024-10-31 15:25:02 -04:00
13 lines
273 B
Plaintext
13 lines
273 B
Plaintext
post_install() {
|
|
getent passwd searx >/dev/null || useradd -rb /usr/lib/python3.6/site-packages -s /usr/bin/nologin searx
|
|
echo "Settings are at /etc/searx/settings.yml"
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
echo "You may want to remove searx user"
|
|
}
|