diff --git a/hdd/adduser.sh b/hdd/adduser.sh index 23985280f5be1182e74a51f8480472a54caf2b88..023f75459bc1c5d33d56fd20ef3f55afa6a43a58 100755 --- a/hdd/adduser.sh +++ b/hdd/adduser.sh @@ -96,13 +96,15 @@ fi checkName=$( cat /etc/passwd | cut -d':' -f1-3 | grep -e "^$username:" ) if [ -z "$checkName" ]; then - echo $0": econtrei outro usuario local com o mesmo nome, devo remove-lo" + #remove "$checkName" + echo $0": encontrei outro usuario local com o mesmo nome, devo remove-lo" fi checkID=$( cat /etc/passwd | cut -d':' -f1-3 | grep -e ":$uID$" ) if [ -z "$checkID" ]; then - echo $0": entrei outro usuario local com o mesmo id, devo remove-lo" + #remove "$checkID" + echo $0": encontrei outro usuario local com o mesmo id, devo remove-lo" fi #adicionar verificacao de nome e id para group?