1*0Sstevel@tonic-gate#!/bin/sh 2*0Sstevel@tonic-gate# 3*0Sstevel@tonic-gate# Copyright (c) 2000 by Sun Microsystems, Inc. 4*0Sstevel@tonic-gate# All rights reserved. 5*0Sstevel@tonic-gate# 6*0Sstevel@tonic-gate#pragma ident "%Z%%M% %I% %E% SMI" 7*0Sstevel@tonic-gate 8*0Sstevel@tonic-gateif [ $# -lt 1 ] 9*0Sstevel@tonic-gatethen 10*0Sstevel@tonic-gate exit 0 11*0Sstevel@tonic-gatefi 12*0Sstevel@tonic-gate 13*0Sstevel@tonic-gate/usr/sbin/kdb5_util dump /var/krb5/slave_datatrans 14*0Sstevel@tonic-gate 15*0Sstevel@tonic-gatefor kdc in $* 16*0Sstevel@tonic-gatedo 17*0Sstevel@tonic-gate /usr/lib/krb5/kprop -f /var/krb5/slave_datatrans $kdc 18*0Sstevel@tonic-gatedone 19