* fix the logic of adding omsagent user to secondary group

* remove omsagent user from primary group of omiusers during uninstall

* Revert "remove omsagent user from primary group of omiusers during uninstall"

This reverts commit 7365aeb072.
This commit is contained in:
Narine Mossikyan 2024-03-11 16:02:55 -07:00 коммит произвёл GitHub
Родитель f662b0afad
Коммит a20481631d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -75,9 +75,8 @@ if [ $? -ne 0 ]; then
fi
# Ensure omsagent is in the omiusers group, but leave omsagent as a group
/usr/sbin/usermod -g omiusers omsagent 1> /dev/null 2> /dev/null
# Ensure omsagent is in the omi group as well
/usr/sbin/usermod -g omi omsagent 1> /dev/null 2> /dev/null
/usr/sbin/usermod -g omiusers -a -G omi omsagent 1> /dev/null 2> /dev/null
# Add the 'nxautomation' group if it does not already exist
# (Can't use useradd with -U since that doesn't exist on older systems)