action.yml 273 B

1234567891011121314
  1. name: add TTL support
  2. description: same as above
  3. runs:
  4. using: composite
  5. steps:
  6. - name: apply ttl support
  7. shell: bash
  8. run: |
  9. cat >> "$GKI_DEFCONFIG" <<EOF
  10. CONFIG_IP_NF_TARGET_TTL=y
  11. CONFIG_IP6_NF_TARGET_HL=y
  12. CONFIG_IP6_NF_MATCH_HL=y
  13. EOF