#!/bin/bash
#Copyright 2003 William Stearns <wstearns@pobox.com>, released under the GPL.
#Place this file in /etc/profile.d and make it mode 755, owned by root
#Scripts can now use "$umid" directly.  Note that this may be blank.
for OneAtom in `cat /proc/cmdline` ; do
	case "$OneAtom" in
	umid=*)
		export "$OneAtom"
		;;
	esac
done

