blob: d04d65828da5a44dfbcfc367594d9fe7b038fb00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
post_install() {
echo ":: Restarting systemd-binfrmt"
systemctl restart systemd-binfmt
}
post_upgrade() {
echo ":: Restarting systemd-binfrmt"
systemctl restart systemd-binfmt
}
|