15 lines
284 B
Plaintext
15 lines
284 B
Plaintext
|
# This is a default template for a post-install scriptlet.
|
||
|
# Uncomment only required functions and remove any functions
|
||
|
# you don't need (and this header).
|
||
|
|
||
|
post_install() {
|
||
|
systemd-machine-id-setup
|
||
|
systemctl preset-all
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
systemctl daemon-reexec
|
||
|
}
|
||
|
|