systemd.postinst 728 B

1234567891011121314
  1. sed -e '/^hosts:/s/\s*\<myhostname\>//' \
  2. -e 's/\(^hosts:.*\)\(\<files\>\)\(.*\)\(\<dns\>\)\(.*\)/\1\2 myhostname \3\4\5/' \
  3. -i $D/etc/nsswitch.conf
  4. # Begin section update-alternatives
  5. update-alternatives --install /sbin/init init /lib/systemd/systemd 300
  6. update-alternatives --install /sbin/halt halt /bin/systemctl 300
  7. update-alternatives --install /sbin/reboot reboot /bin/systemctl 300
  8. update-alternatives --install /sbin/shutdown shutdown /bin/systemctl 300
  9. update-alternatives --install /sbin/poweroff poweroff /bin/systemctl 300
  10. update-alternatives --install /sbin/runlevel runlevel /bin/systemctl 300
  11. # End section update-alternatives
  12. if [ x"$D" = "x" ]; then
  13. if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi
  14. fi