#!/bin/sh

for i in /run/openrc/started/ntpd /etc/runlevels/*/ntpd; do
	if [ -L "$i" ]; then
		mv "$i" "${i%/*}"/openntpd
	fi
done
