summaryrefslogtreecommitdiffstats
path: root/libaccount
diff options
context:
space:
mode:
authorDavid Brown2007-09-19 21:11:38 -0700
committerDavid Brown2007-09-19 21:11:38 -0700
commit25270b6c21c5c586a85a2b2a2b1eda6c3e18f3da (patch)
tree18e83abd12672b97cdd81d4c49d721c483824c6a /libaccount
parentd5a05dd6cbcf1f6a4f7e73a7183c841a7710dfbf (diff)
Oopse probably should reexport LD_PRELOAD for installwatch
Diffstat (limited to 'libaccount')
-rwxr-xr-xlibaccount4
1 files changed, 2 insertions, 2 deletions
diff --git a/libaccount b/libaccount
index 2c2464f62e..73f354796c 100755
--- a/libaccount
+++ b/libaccount
@@ -82,7 +82,7 @@ function create_account() {
# check for adding user problems and try to notify user.
useradd -u $ACCOUNT_UID -g $PRIMARY_GNAME $SECONDARY_GIDS -d "$HOME_DIR" -s "$USER_SHELL" $1
- LD_PRELOAD="$LD_PRELOAD_BAK"
+ export LD_PRELOAD="$LD_PRELOAD_BAK"
unset LD_PRELOAD_BAK
local USERADD_RETURN=$?
@@ -132,7 +132,7 @@ function create_group() {
LD_PRELOAD_BAK="$LD_PRELOAD"
unset LD_PRELOAD
groupadd -g $GROUP_GID $1 > /dev/null 2>&1
- LD_PRELOAD="$LD_PRELOAD_BAK"
+ export LD_PRELOAD="$LD_PRELOAD_BAK"
unset LD_PRELOAD_BAK
local GROUPADD_RETURN=$?