We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
The files ossec-hids-local.spec, ossec-hids-agent.spec and ossec-hids-server.spec generate the group and the user.
ossec-hids-local.spec
ossec-hids-agent.spec
ossec-hids-server.spec
/usr/sbin/groupadd ossec /usr/sbin/useradd -d /var/ossec -s /bin/false -g ossec ${USER}
This is now generated in user space. If you have ldap generated users this might and will cause a clash.
Is it not better to use:
/usr/sbin/groupadd --system ossec /usr/sbin/useradd --system -d /var/ossec -s /bin/false -g ossec ${USER}
This way the ossec group and user are created in system space.
The text was updated successfully, but these errors were encountered:
Create the users and groups as system users and groups
f0a8f98
Requested by cookie33 in issue ossec#1165
Please test pull request #1199
Sorry, something went wrong.
No branches or pull requests
Hi,
The files
ossec-hids-local.spec
,ossec-hids-agent.spec
andossec-hids-server.spec
generate the group and the user.This is now generated in user space. If you have ldap generated users this might and will cause a clash.
Is it not better to use:
This way the ossec group and user are created in system space.
The text was updated successfully, but these errors were encountered: