12 lines
200 B
Bash
12 lines
200 B
Bash
#!/bin/sh
|
|
|
|
post_install() {
|
|
echo ":: Restarting systemd-binfmt"
|
|
systemctl restart systemd-binfmt
|
|
}
|
|
|
|
post_upgrade() {
|
|
echo ":: Restarting systemd-binfmt"
|
|
systemctl restart systemd-binfmt
|
|
}
|