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