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