Open Parakleta opened 6 years ago
In the option/User/setup.sh file it currently uses the test [ $? -gt 2 ] to determine whether to try and add the user to additional groups. I think probably the intended test is [ $# -ge 2 ] (or [ $# -gt 1 ] if you like).
option/User/setup.sh
[ $? -gt 2 ]
[ $# -ge 2 ]
[ $# -gt 1 ]
In the
option/User/setup.sh
file it currently uses the test[ $? -gt 2 ]
to determine whether to try and add the user to additional groups. I think probably the intended test is[ $# -ge 2 ]
(or[ $# -gt 1 ]
if you like).