This repository has been archived on 2025-07-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Packer.Images/ansible/roles/firstboot/files/ansible_payload/common/templates/compresstarballs.j2

11 lines
244 B
Plaintext
Raw Normal View History

#!/bin/bash
# Change working directory
2022-11-23 13:30:32 +01:00
pushd {{ _template.service.workingdir }}
# Compress *.tar files
2022-11-23 13:30:32 +01:00
if tar -czf image-tarballs.tgz *.tar --remove-files; then
# Disable systemd unit
systemctl disable {{ _template.service.name }}
fi