10 lines
267 B
Plaintext
10 lines
267 B
Plaintext
|
post_install() {
|
||
|
# Add the new config to pacman.conf
|
||
|
echo -n "Include = /etc/pacman.d/tl/tl-repos.conf" >> /etc/pacman.conf
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
# Remove the config line from pacman.conf
|
||
|
sed -i '/^Include = \/etc\/pacman.d\/tl\/tl-repos.conf$/d' /etc/pacman.conf
|
||
|
}
|