Skip to content

Commit

Permalink
Fix some typos (most of them found by codespell)
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Jun 5, 2016
1 parent 91434d0 commit 974bbb0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@


## Build Requirements
Theese requirements are only applied if you build from the scripts
These requirements are only applied if you build from the scripts
* Ubuntu Server 16.04 Server
* OpenSSH (preffered)
* OpenSSH (preferred)


## Machine configuration
Expand All @@ -21,4 +21,3 @@ Please check the configuration here: https://www.techandme.se/machine-setup-next
## FAQ

Coming soon!

4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<h3>ncadmin</h3>
<p>Default Password:</p>
<h3>nextcloud</h3>
<p>Note: The setup script will ask you to change the default password to your own. It's also recomended to change the default user. Do this by adding another admin user, log out from ncadmin, and login with your new user, then delete ncadmin.</p>
<p>Note: The setup script will ask you to change the default password to your own. It's also recommended to change the default user. Do this by adding another admin user, log out from ncadmin, and login with your new user, then delete ncadmin.</p>
<br>
<center>
<h3> How to mount the VM and and login:</h3>
Expand All @@ -119,7 +119,7 @@
<p>
</ul>
</h3>
<p>Note: Please accept the warning in the browser if you connect via HTTPS. It is recomended
<p>Note: Please accept the warning in the browser if you connect via HTTPS. It is recommended
<br> to <a href="https://www.techandme.se/publish-your-server-online" target="_blank">buy your own certificate and replace the self-signed certificate to your own.</a>
<br>
<p>Note: Before you can login you have to run the setup script, as descirbed in the video above.
Expand Down
2 changes: 1 addition & 1 deletion nextcloud-startup-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ ADDRESS2=$(grep "address" /etc/network/interfaces | awk '$1 == "address" { print
# Success!
echo -e "\e[32m"
echo "+--------------------------------------------------------------------+"
echo "| Congratulations! You have sucessfully installed Nextcloud! |"
echo "| Congratulations! You have successfully installed Nextcloud! |"
echo "| |"
echo -e "| \e[0mLogin to Nextcloud in your browser:\e[36m" $ADDRESS2"\e[32m |"
echo "| |"
Expand Down
8 changes: 4 additions & 4 deletions nextcloud_install_production.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,18 @@ else
exit 1
fi

# Check if repo is availible
# Check if repo is available
if wget -q --spider "$NCREPO" > /dev/null; then
echo "Nextcloud repo OK"
else
echo "Nextcloud repo is not availible, exiting..."
echo "Nextcloud repo is not available, exiting..."
exit 1
fi

if wget -q --spider "$NCREPOKEY" > /dev/null; then
echo "Nextcloud repo key OK"
else
echo "Nextcloud repo key is not availible, exiting..."
echo "Nextcloud repo key is not available, exiting..."
exit 1
fi

Expand Down Expand Up @@ -526,7 +526,7 @@ fi
chmod +x -R $SCRIPTS
chown root:root -R $SCRIPTS

# Allow $UNIXUSER to run theese scripts
# Allow $UNIXUSER to run these scripts
chown $UNIXUSER:$UNIXUSER $SCRIPTS/instruction.sh
chown $UNIXUSER:$UNIXUSER $SCRIPTS/history.sh

Expand Down

1 comment on commit 974bbb0

@enoch85
Copy link
Member

@enoch85 enoch85 commented on 974bbb0 Jun 6, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! :D

Please sign in to comment.