let's just call it 'contrib'

This commit is contained in:
Mike Macgirvin 2022-12-20 17:49:09 +11:00
parent e7b764b00d
commit db389e6ca6
26 changed files with 4 additions and 6 deletions

View file

@ -2,7 +2,7 @@
## Disclaimer
- This script does work with Debian 10 or 11 only.
- This script does work with Debian 11 only.
- This script has to be used on a fresh debian install only (it does not take account for a possibly already installed and configured webserver or sql implementation). You may use it to install more than one website on the same computer as long as you use a single webserver.
## First step: setting up your system

View file

@ -1,6 +1,4 @@
# Easy install setup script
## This installation script was provided by the community and is untested and officially unsupported. Use at your own risk. Complaints have been made that it provides the wrong PHP version for the Streams repository, which requires PHP 8.0 or above. In case of difficulty, this would be the first thing to check. If you manage to fix the issue, please submit back to the repository so we can remove this warning.
Here you will find a quick and easy way to set up a website capable of joining the fediverse, using software from the Streams repository. All you have to do is run the setup script, enter some information and the magic will happen. Check the [INSTALL.md](INSTALL.md) file for step-by-step instructions.

View file

@ -25,7 +25,7 @@
# under Debian Linux. It will:
# - install
# * apache or nginx webserver,
# * php (adding sury repository to get php 8.* on Debian 11 or 10),
# * php (adding sury repository to get php 8.* on Debian 11),
# * composer
# * mariadb - the database your website,
# * adminer,
@ -91,9 +91,9 @@ function check_sanity {
then
die "Debian is supported only"
fi
if [ -z "$(grep 'Linux 10\|Linux 11' /etc/issue)" ]
if [ -z "$(grep 'Linux 11' /etc/issue)" ]
then
die "Debian 11 (bullseye) or Debian 10 (buster) are supported only"
die "Debian 11 (bullseye) is supported only"
fi
}