diff options
Diffstat (limited to 'tests/data/fake-kadmin')
| -rwxr-xr-x | tests/data/fake-kadmin | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/tests/data/fake-kadmin b/tests/data/fake-kadmin index c073ea5..ff90f88 100755 --- a/tests/data/fake-kadmin +++ b/tests/data/fake-kadmin @@ -1,13 +1,16 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl  #  # Fake kadmin.local used to test the keytab backend.  # -# Written by Russ Allbery <rra@stanford.edu> -# Copyright 2007 +# Written by Russ Allbery <eagle@eyrie.org> +# Copyright 2007, 2014  #     The Board of Trustees of the Leland Stanford Junior University  #  # See LICENSE for licensing terms. +use strict; +use warnings; +  unless ($ARGV[0] eq '-q' && @ARGV == 2) {      die "invalid arguments\n";  } | 
