blob: 2657f52083edea5328ff7121ea9c65a2edc9519f (
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
26
27
28
29
30
31
32
33
34
35
36
|
# arg 1: the new package version
post_install() {
cat <<EOF
For using libremakepkg /etc/libretools.conf to fit your needs.
For the scripts that can be run as normal user you can make
custom configuration by copying /etc/libretools.conf to
\$XDG_CONFIG_HOME/libretools/libretools.conf
You should add this to your ~/.ssh/config file:
# Parabola Host
Host parabola
Port 22
HostName repo.parabolagnulinux.org
User parabolavnx
IdentityFile ~/.ssh/id_rsa
# End Parabola Host
Edit IdentityFile as needed.
EOF
}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
cat <<EOF
Check your /etc/libretools.conf
EOF
}
# vim:set ts=2 sw=2 et:
|