clean.sh revision f30785f506a522ed6a5e394af2bb13b6f883927e
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt#!/bin/sh
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt#
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# Copyright (C) 2005, 2007, 2011 Internet Systems Consortium, Inc. ("ISC")
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt#
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# Permission to use, copy, modify, and/or distribute this software for any
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# purpose with or without fee is hereby granted, provided that the above
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# copyright notice and this permission notice appear in all copies.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt#
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# PERFORMANCE OF THIS SOFTWARE.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# $Id: clean.sh,v 1.10 2011/12/22 07:32:40 each Exp $
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntrm -f named-compilezone
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntrm -f ns1/example.db.raw*
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntrm -f ns1/example.db.compat
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntrm -f ns1/example.db.serial.raw
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntrm -f ns2/example.db
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntrm -f dig.out.*
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntrm -f */named.memstats
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntrm -f ns2/transfer.db.*
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntrm -f ns2/formerly-text.db
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntrm -f ns2/db-*
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt