xref: /titanic_50/usr/src/cmd/gss/gsscred_clean/gsscred_clean.ksh (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate#!/bin/ksh
2*7c478bd9Sstevel@tonic-gate#
3*7c478bd9Sstevel@tonic-gate# CDDL HEADER START
4*7c478bd9Sstevel@tonic-gate#
5*7c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
6*7c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only
7*7c478bd9Sstevel@tonic-gate# (the "License").  You may not use this file except in compliance
8*7c478bd9Sstevel@tonic-gate# with the License.
9*7c478bd9Sstevel@tonic-gate#
10*7c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
11*7c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
12*7c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
13*7c478bd9Sstevel@tonic-gate# and limitations under the License.
14*7c478bd9Sstevel@tonic-gate#
15*7c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
16*7c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
17*7c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
18*7c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
19*7c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
20*7c478bd9Sstevel@tonic-gate#
21*7c478bd9Sstevel@tonic-gate# CDDL HEADER END
22*7c478bd9Sstevel@tonic-gate#
23*7c478bd9Sstevel@tonic-gate#
24*7c478bd9Sstevel@tonic-gate# Copyright (c) 1998 by Sun Microsystems, Inc.
25*7c478bd9Sstevel@tonic-gate# All rights reserved.
26*7c478bd9Sstevel@tonic-gate#
27*7c478bd9Sstevel@tonic-gate#pragma ident	"%Z%%M%	%I%	%E% SMI"
28*7c478bd9Sstevel@tonic-gate#
29*7c478bd9Sstevel@tonic-gate# gsscred_db clean up script
30*7c478bd9Sstevel@tonic-gate#
31*7c478bd9Sstevel@tonic-gate# This file is used to remove duplicate entries from
32*7c478bd9Sstevel@tonic-gate# the gsscred_db file. It is activated as a root cron
33*7c478bd9Sstevel@tonic-gate# job once a day. It only performs cleanup when
34*7c478bd9Sstevel@tonic-gate# the gsscred_db file has changed since last operation.
35*7c478bd9Sstevel@tonic-gate
36*7c478bd9Sstevel@tonic-gateFILE_TO_CLEAN=/etc/gss/gsscred_db
37*7c478bd9Sstevel@tonic-gateCLEAN_TIME=/etc/gss/.gsscred_clean
38*7c478bd9Sstevel@tonic-gateTMP_FILE=/etc/gss/gsscred_clean$$
39*7c478bd9Sstevel@tonic-gate
40*7c478bd9Sstevel@tonic-gatetrap "rm -f $TMP_FILE; exit" 0 1 2 3 13 15
41*7c478bd9Sstevel@tonic-gate
42*7c478bd9Sstevel@tonic-gate
43*7c478bd9Sstevel@tonic-gateif [ -s $FILE_TO_CLEAN ] && [ $FILE_TO_CLEAN -nt $CLEAN_TIME ]
44*7c478bd9Sstevel@tonic-gatethen
45*7c478bd9Sstevel@tonic-gate
46*7c478bd9Sstevel@tonic-gate#
47*7c478bd9Sstevel@tonic-gate#	The file being sorted has the following format:
48*7c478bd9Sstevel@tonic-gate#		name	uid	comment
49*7c478bd9Sstevel@tonic-gate#
50*7c478bd9Sstevel@tonic-gate#	We are trying to remove duplicate entries for the name
51*7c478bd9Sstevel@tonic-gate#	which may have different uids. Entries lower in the file
52*7c478bd9Sstevel@tonic-gate#	are newer since addition performs an append. We use cat -n
53*7c478bd9Sstevel@tonic-gate#	in order to preserve the order of the duplicate entries and
54*7c478bd9Sstevel@tonic-gate#	only keep the latest. We then sort on the name, and line
55*7c478bd9Sstevel@tonic-gate#	number (line number in reverse). The line numbers are then
56*7c478bd9Sstevel@tonic-gate#	removed and duplicate entries are cut out.
57*7c478bd9Sstevel@tonic-gate#
58*7c478bd9Sstevel@tonic-gate	cat -n $FILE_TO_CLEAN | sort -k 2,2 -k 1,1nr 2> /dev/null \
59*7c478bd9Sstevel@tonic-gate		| cut -f2- | \
60*7c478bd9Sstevel@tonic-gate		awk ' (NR > 1 && $1 != key) || NR == 1 {
61*7c478bd9Sstevel@tonic-gate				key = $1;
62*7c478bd9Sstevel@tonic-gate				print $0;
63*7c478bd9Sstevel@tonic-gate			}
64*7c478bd9Sstevel@tonic-gate		' > $TMP_FILE
65*7c478bd9Sstevel@tonic-gate
66*7c478bd9Sstevel@tonic-gate	if [ $? -eq 0 ] && mv $TMP_FILE $FILE_TO_CLEAN; then
67*7c478bd9Sstevel@tonic-gate#
68*7c478bd9Sstevel@tonic-gate#		update time stamp for this sort
69*7c478bd9Sstevel@tonic-gate#
70*7c478bd9Sstevel@tonic-gate		touch -r $FILE_TO_CLEAN $CLEAN_TIME
71*7c478bd9Sstevel@tonic-gate	else
72*7c478bd9Sstevel@tonic-gate		rm -f $TMP_FILE
73*7c478bd9Sstevel@tonic-gate	fi
74*7c478bd9Sstevel@tonic-gatefi
75