#!/bin/sh
#
# The script to remove all supported TTS from VoiceMan configuration.
# It removes all /etc/voiceman.d/*.voiceman links.
# Copyright (c) 2000-2008 Michael Pozhidaev <msp@altlinux.org>

for i in /etc/voiceman.d/*.voiceman; do
    rm -f "$i"
done
