Various instructions for setting up Linux OS on Clevo N950TP6
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
313 B

  1. #!/bin/bash
  2. # arg 1: the new package version
  3. # arg 2: the old package version
  4. post_upgrade() {
  5. if (( $(vercmp $2 8.0-2) < 0 )); then
  6. echo '==> Since version 8.0-2 kernel modules are loaded at boot by systemd-modules-load.'
  7. echo '==> Read modules-load.d man page to disable them.'
  8. fi
  9. }