mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 15:04:36 +08:00
14 lines
218 B
Plaintext
14 lines
218 B
Plaintext
post_install() {
|
|
echo "Enabling systemd service"
|
|
systemctl enable sddm.service
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
echo "Disabling systemd service"
|
|
systemctl disable sddm.service
|
|
}
|