| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function identity_renderSvgPostActions { |
| |
| local ACTION='' |
| |
| for ACTION in "${POSTACTIONS[@]}"; do |
| |
| case "${ACTION}" in |
| |
| renderSyslinux* ) |
| identity_renderSyslinux |
| ;; |
| |
| renderGrub* ) |
| identity_renderGrub |
| ;; |
| |
| renderFormats:* ) |
| identity_renderFormats |
| ;; |
| |
| renderBrands ) |
| identity_renderBrands |
| ;; |
| |
| esac |
| |
| done |
| |
| } |