1#!/bin/sh
2
3#  StopTLSServers.sh
4#  Security
5#
6#  Created by Fabrice Gautier on 6/9/11.
7#  Copyright 2011 Apple, Inc. All rights reserved.
8
9echo "Killing all servers..."
10
11killall openssl
12killall gnutls-serv
13
14echo "Done killing~~"
15