#!/bin/bash

cmd=/usr/sbin/nscd

[ -x $cmd ] || exit 0

$cmd --invalidate passwd
$cmd --invalidate group
$cmd --invalidate hosts

exit 0
