dnssec-coverage.py.in revision aa70afe5c10ff9f742e71d4d86beddca2a246229
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt#!@PYTHON@
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt############################################################################
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt# Copyright (C) 2013-2015 Internet Systems Consortium, Inc. ("ISC")
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt#
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt# Permission to use, copy, modify, and/or distribute this software for any
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt# purpose with or without fee is hereby granted, provided that the above
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt# copyright notice and this permission notice appear in all copies.
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt#
30ca20f720ad0887772a79e7abb25b4fa0e4b5b0Mark Andrews# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt# AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt# PERFORMANCE OF THIS SOFTWARE.
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt############################################################################
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Huntimport os
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Huntimport sys
079165bae3a1f3571fb97b2b4b3284f788a74f0cEvan Hunt
30ca20f720ad0887772a79e7abb25b4fa0e4b5b0Mark Andrewssys.path.insert(0, os.path.dirname(sys.argv[0]))
sys.path.insert(1, os.path.join('@prefix@', 'lib'))
import isc.coverage
if __name__ == "__main__":
isc.coverage.main()