mirror of
https://github.com/moparisthebest/arch-ppa
synced 2024-11-11 11:35:00 -05:00
13 lines
273 B
Plaintext
13 lines
273 B
Plaintext
|
post_install() {
|
||
|
getent passwd searx >/dev/null || useradd -rb /usr/lib/python2.7/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"
|
||
|
}
|