#!/bin/bash
# File is autogenerated by Cloud-Init and will be called only once per first boot (per instance)

echo "fstrim execution started"
fstrim --all
EXIT_CODE=$?
echo "fstrim completed with exit code $EXIT_CODE"

exit 0
