init.sls 298 B

12345678910111213
  1. #
  2. # Linux Kernel
  3. #
  4. linux-kernel:
  5. pkg.latest:
  6. - name: linux-image-{{ grains.osarch }}
  7. # On buster we go for the Kernel from backports (current 5.10.x)
  8. # as it includes B.A.T.M.A.N. hop-penalty per interface
  9. {% if grains.oscodename == 'buster' %}
  10. - fromrepo: buster-backports
  11. {% endif %}