Only user variable is enough, adding group variable will create issues.
Linux creates both user and group during an user creation, and we can use the same user and group for running an application. If we provide another separate variable for group then someone may use two different values for user and group that requires another group creation and further group management which is unnecessary and tedious process.
Fix Issue: #30
Only
user
variable is enough, addinggroup
variable will create issues. Linux creates both user and group during an user creation, and we can use the same user and group for running an application. If we provide another separate variable forgroup
then someone may use two different values foruser
andgroup
that requires another group creation and further group management which is unnecessary and tedious process.