blob: 3ceb57acd3011b880e5f00a6b33c667dc8e978ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
pre_install() {
# Ha a fájl már létezik (apply.sh telepítette, pacman nem ownolja),
# töröljük mielőtt a pacman megpróbálja telepíteni - különben "conflicting files" hiba
rm -f /etc/sddm.conf.d/raveos-theme.conf
}
pre_upgrade() {
rm -f /etc/sddm.conf.d/raveos-theme.conf
}
post_install() {
:
}
post_upgrade() {
:
}
|