your-initfreedom.install 789 B

12345678910111213141516171819202122232425262728
  1. pre_install() {
  2. cat <<EOM
  3. == IMPORTANT NOTICE ==
  4. This package will help you identify if packages that support or have a hard
  5. dependency on systemd are installed on your system at the time of its
  6. installation, as well as protecting you from (accidentally) installing them.
  7. Also, if any other package that supports or needs systemd is identified,
  8. later updates will ask you for its removal.
  9. Have in mind that, if you want to retain certain packages that support
  10. systemd installed on your system, you'll have to remove your-initfreedom :)
  11. Please report back to the Parabola Project on the usual channels:
  12. * https://labs.parabola.nu
  13. * irc://irc.libera.chat/#parabola
  14. * mailto:dev@lists.parabola.nu
  15. EOM
  16. }
  17. pre_upgrade() {
  18. pre_install
  19. }
  20. # vim:set ts=2 sw=2 et: