aboutsummaryrefslogtreecommitdiffstats
path: root/iurt_root_command
diff options
context:
space:
mode:
authorOlivier Blin <blino@mageia.org>2010-11-02 21:09:24 +0000
committerOlivier Blin <blino@mageia.org>2010-11-02 21:09:24 +0000
commite696d615b8cfb48b227a6d627ccf3bea7eb73667 (patch)
tree19931957c3c46ec9009659f71748e0398508b07d /iurt_root_command
parentbf49eb540a181114f19c0fc2679436493f10c595 (diff)
downloadiurt-e696d615b8cfb48b227a6d627ccf3bea7eb73667.tar
iurt-e696d615b8cfb48b227a6d627ccf3bea7eb73667.tar.gz
iurt-e696d615b8cfb48b227a6d627ccf3bea7eb73667.tar.bz2
iurt-e696d615b8cfb48b227a6d627ccf3bea7eb73667.tar.xz
iurt-e696d615b8cfb48b227a6d627ccf3bea7eb73667.zip
move uid check in iurt_root_command (and fix checking return code)
Diffstat (limited to 'iurt_root_command')
-rwxr-xr-xiurt_root_command3
1 files changed, 2 insertions, 1 deletions
diff --git a/iurt_root_command b/iurt_root_command
index 90233a5..45894a5 100755
--- a/iurt_root_command
+++ b/iurt_root_command
@@ -382,5 +382,6 @@ sub umount {
sub useradd {
my ($_run, $dir, $username, $o_uid) = @_;
check_path_authorized($dir) or return;
- return !system('chroot', $dir, 'useradd', if_($o_uid, '-o', '--uid', $o_uid), $username);
+ return system('chroot', $dir, 'useradd', if_($o_uid, '-o', '--uid', $o_uid), $username) == 0
+ || system('chroot', $dir, 'id', $username) == 0;
}