Skip to content

Commit

Permalink
v1.0.22 (#23)
Browse files Browse the repository at this point in the history
Minor updates
* Fixing fresh installation process
  • Loading branch information
bfren authored Nov 15, 2021
1 parent 901e93c commit 7f963d6
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion FREESCOUT_REVISION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.20
1.7.21
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ See the [Nginx + PHP](https://github.com/bfren/docker-nginx-php) image for detai
## Copyright

> Copyright (c) 2021 bfren
> Copyright (c) 2021 [bfren](https://bfren.dev) (unless otherwise stated)
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.21
1.0.22
1 change: 1 addition & 0 deletions overlay/etc/fix-attrs.d/30-freescout
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/usr/local/bin/freescout-* false root:root 0500 0500

9 changes: 8 additions & 1 deletion overlay/usr/lib/bf/freescout/setup-config
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export BF_E=`basename ${0}`
# If an existing installation was detected, do not proceed.
#======================================================================================================================

if [ "${FREESCOUT_INSTALLED-}" != "1" ] ; then
if [ "${FREESCOUT_INSTALLED-}" == "1" ] ; then
bf-echo "Existing installation detected - do not regenerate .env."
exit 0
fi
Expand All @@ -29,3 +29,10 @@ fi
bf-debug "Generating ${FREESCOUT_ENV}."
bf-esh ${BF_TEMPLATES}/.env.esh ${FREESCOUT_ENV}
bf-done


#======================================================================================================================
# Set permissions on files.
#======================================================================================================================

freescout-set-permissions
7 changes: 0 additions & 7 deletions overlay/usr/lib/bf/freescout/setup-content
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,3 @@ else
bf-done

fi


#======================================================================================================================
# Set permissions on files.
#======================================================================================================================

freescout-set-permissions

0 comments on commit 7f963d6

Please sign in to comment.