#!/bin/sh

# Check if the NTP action is 'stratum' (meaning time is now synced)
if [ "$ACTION" = "stratum" ]; then
    touch /tmp/ntpstratum
fi
