25 lines
464 B
Plaintext
Raw Normal View History

2021-05-03 18:14:37 +02:00
pre_install() {
mv /etc/locale.conf /etc/locale.conf.bkp
}
2021-05-02 17:19:20 +02:00
post_install() {
2021-05-03 18:14:37 +02:00
# holo apply --force file:/etc/locale.conf
2021-05-02 20:09:13 +02:00
holo apply --force file:/etc/locale.gen
2021-05-03 18:14:37 +02:00
# holo apply --force file:/etc/localtime
2021-05-02 20:09:13 +02:00
2021-05-02 17:19:20 +02:00
locale-gen
}
post_upgrade() {
2021-05-03 18:14:37 +02:00
# holo apply --force file:/etc/locale.conf
2021-05-02 20:09:13 +02:00
holo apply --force file:/etc/locale.gen
2021-05-03 18:14:37 +02:00
# holo apply --force file:/etc/localtime
2021-05-02 20:09:13 +02:00
2021-05-02 17:19:20 +02:00
locale-gen
}
post_remove() {
holo apply
2021-05-03 18:14:37 +02:00
mv /etc/locale.conf.bkp /etc/locale.conf
}