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