blob: 0fd5a21177e26fc3ae7052a3bc50edffc8c8e664 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
post_install() {
cat <<'MSG'
==> pentest-ghostwriter installed.
==> This package defaults to a local-first single-user setup for Arch Linux.
==>
==> First-time setup:
==> sudo pentest-ghostwriter-init
==>
==> Optional standard login mode instead of localhost auto-login:
==> sudo pentest-ghostwriter-init --no-local-trust
==>
==> Desktop launchers installed:
==> Ghostwriter
==> Stop Ghostwriter
==>
==> If local trust is disabled, generated admin credentials are written to:
==> /etc/pentest-ghostwriter/admin-credentials
==>
==> Hasura / GraphQL stays optional and is not required for the local package flow.
MSG
}
post_upgrade() {
post_install
}
|