Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some typos (most of them found by codespell) #4

Merged
merged 1 commit into from
Jun 5, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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