Browse Source

Merge pull request #454 from drpayyne/patch-1

Updated text in fixowns & fixperms
Mark Shust 4 years ago
parent
commit
3f8b3cb736
2 changed files with 4 additions and 4 deletions
  1. 2 2
      compose/bin/fixowns
  2. 2 2
      compose/bin/fixperms

+ 2 - 2
compose/bin/fixowns

@@ -1,5 +1,5 @@
 #!/bin/bash
-echo "Correcting filesystem ownerships..."
+echo "Fixing filesystem ownerships..."
 
 if [ -z "$1" ]; then
   bin/rootnotty chown -R app:app /var/www/
@@ -7,4 +7,4 @@ else
   bin/rootnotty chown -R app:app /var/www/html/"$1"
 fi
 
-echo "Filesystem ownerships corrected."
+echo "Filesystem ownerships fixed."

+ 2 - 2
compose/bin/fixperms

@@ -1,5 +1,5 @@
 #!/bin/bash
-echo "Correcting filesystem permissions..."
+echo "Fixing filesystem permissions..."
 
 if [ -z "$1" ]; then
   bin/clinotty find var vendor pub/static pub/media app/etc \( -type f -or -type d \) -exec chmod u+w {} +;
@@ -8,4 +8,4 @@ else
   bin/clinotty find "$1" \( -type f -or -type d \) -exec chmod u+w {} +;
 fi
 
-echo "Filesystem permissions corrected."
+echo "Filesystem permissions fixed."