9 lines
212 B
Text
9 lines
212 B
Text
pre_install() {
|
|
cp /etc/pacman.conf /etc/pacman.conf.back
|
|
}
|
|
post_install() {
|
|
echo "run sudo chaotic-install to install the mirrors and keyrings."
|
|
}
|
|
post_remove() {
|
|
mv /etc/pacman.conf.back /etc/pacman.conf
|
|
}
|