#!/bin/bash
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-src/portage/bin/doenvd,v 1.2 2004/10/04 13:56:50 vapier Exp $

if [ ${#} -lt 1 ] ; then
	echo "doinfo: at least one argument needed"
	exit 1 	
fi

tmp_INSDESTTREE="${INSDESTTREE}"
INSDESTTREE=/etc/env.d/
doins "$@"
INSDESTTREE="${tmp_INSDESTTREE}"
unset tmp_INSDESTTREE
