#!/bin/sh


if update-service --check "redis-ppc-cache-1"; then
    true
else
    update-service --add "/etc/sv/redis-ppc-cache-1" || true
fi

if update-service --check "redis-ppc-cache-2"; then
    true
else
    update-service --add "/etc/sv/redis-ppc-cache-2" || true
fi

if update-service --check "redis-ppc-cache-3"; then
    true
else
    update-service --add "/etc/sv/redis-ppc-cache-3" || true
fi
