Skip to content

Commit

Permalink
Station Captain - Fixed group and user ensuring issue
Browse files Browse the repository at this point in the history
  • Loading branch information
GregJohnStewart committed Jun 7, 2024
1 parent e2a4214 commit 8bd2cb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deployment/Single Host/Station-Captain/makeInstallers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@ fi
oqm-captain --regen-certs
if grep -q $group /etc/group ; then
if grep -q oqm /etc/group ; then
echo 'OQM group already existent'
else
echo 'OQM group not yet existent. Creating'
groupadd oqm
echo 'OQM group created.'
fi
if id "$1" >/dev/null 2>&1; then
if id "oqm" >/dev/null 2>&1; then
echo 'OQM user already existent'
else
echo 'OQM user not yet existent. Creating.'
Expand Down
2 changes: 1 addition & 1 deletion deployment/Single Host/Station-Captain/properties.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packageName":"oqm-manager-station+captain",
"version":"2.2.0",
"version":"2.2.1",
"description":"Utility for setting up and maintaining an instance of Open QuarterMaster.",
"maintainer": {
"name":"EBP"
Expand Down

0 comments on commit 8bd2cb3

Please sign in to comment.