mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
26 lines
776 B
Text
26 lines
776 B
Text
post_install() {
|
|
echo "
|
|
Welcome to the tori!
|
|
-----------------------------------------------------------------------------
|
|
Default Config Path: /etc/tori/
|
|
Default Data Path: /var/lib/tori/
|
|
Default User & Group: tori:tori
|
|
|
|
$ sudo usermod -aG tori $USER
|
|
$ sudo systemctl start tori.service
|
|
-----------------------------------------------------------------------------
|
|
|
|
More: https://github.com/thobiasn/tori-cli
|
|
"
|
|
}
|
|
|
|
post_remove() {
|
|
echo "You need to remove database and config by yourself.
|
|
-----------------------------------------------------------------------------
|
|
Default Config Path: /etc/tori/
|
|
Default Data Path: /var/lib/tori/
|
|
Default User & Group: tori:tori
|
|
-----------------------------------------------------------------------------
|
|
"
|
|
}
|
|
# vim: set ts=2 sw=2 et:
|