arch/pkg/de-p1st-locale/.install
2021-05-03 18:14:37 +02:00

25 lines
464 B
Plaintext

pre_install() {
mv /etc/locale.conf /etc/locale.conf.bkp
}
post_install() {
# holo apply --force file:/etc/locale.conf
holo apply --force file:/etc/locale.gen
# holo apply --force file:/etc/localtime
locale-gen
}
post_upgrade() {
# holo apply --force file:/etc/locale.conf
holo apply --force file:/etc/locale.gen
# holo apply --force file:/etc/localtime
locale-gen
}
post_remove() {
holo apply
mv /etc/locale.conf.bkp /etc/locale.conf
}