Skip to content

Commit

Permalink
0.9.4
Browse files Browse the repository at this point in the history
# greenlight.html.gz
- Added evaluation information.
  • Loading branch information
scchearn committed Jul 2, 2021
1 parent 438cf73 commit 6f03130
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,35 @@
This is Greenlight. It saves you time. Greenlight is a FOSS for ITSM project part of a masters degree programme.

## Purpose
Installs free and open-source software (FOSS) to manage ICT operations.
Installs free and open-source software (FOSS) packages to manage ICT operations.

This script installs three FOSS applications to create a framework for information technology management (ITSM). The different software, when used together, is intended to provide a software toolchain for ITSM, based on the seventeen service management practices of the Information Technology Infrastructure Library.
This script installs three FOSS applications to create a framework for information technology management (ITSM). The different software, when used together, provides a software toolchain for ITSM. The seventeen service management practices of the Information Technology Infrastructure Library provides the baseline of what features such a toolchain should implement.

Hopefully, using this script will save you time and trouble finding, installing, and testing hundreds of different software packages. It's all in one place and easily accessible.
Hopefully, using this script will save you time and a lot of trouble finding, installing, and testing hundreds of different software packages. Now, it's all in one place and easily accessible.

#### Note
This software toolchain is only a prototype and not meant as fully-fledged software. Furthermore, do not run this script on production servers or any other installation that you do not want to be broken. Although this script won't overwrite other software, it is not (yet) built to avoid breaking production type servers. Therefore, it is better to run this script on a fresh installation of any supported operating system. **Also**, feel free to change, modify, or adapt this script to your needs or suggest changes and improvements.
#### Please Note
This software toolchain is only a prototype and not meant as fully-fledged software. Furthermore, please do not run this script on production servers or any other installation that you do not want to be broken. Although this script won't overwrite other software, it is not (yet) built to avoid breaking production servers. Therefore, it is better to run it on a fresh installation of the supported operating systems. **Lastly**, feel free to change, modify, or adapt this script to your needs or suggest changes and improvements.

## Supported Operating Systems
The following operating systems are currently supported. **Fedora 32**, **Centos 8**, **Ubuntu 18.04** (Bionic Beaver) and **20.04** (Focal Fossa).

## Installing
Use either of the following options (executing script requires elevated privileges):
Use either of the following installation options (executing the script requires elevated privileges):

### Option 1
```sh
curl -sSL https://raw.githubusercontent.com/scchearn/greenlight/master/install.sh | sudo bash
```
Piping into bash is a little controversial — you do not know what the script does. Therefore, please feel free to [inspect the code][2] first before running it. This should be standard practice.

### Option 2
```sh
wget https://raw.githubusercontent.com/scchearn/greenlight/master/install.sh
sudo bash install.sh
```

### Latest Stable Build
**0.9.2**
## Latest Stable Build
**0.9.4**

|OS |GLPi |Zabbix |Snipe-IT |
|------------------|:-----:|:--------:|:---------:|
Expand All @@ -41,4 +42,5 @@ sudo bash install.sh
|Ubuntu 18.04 LTS ||||


[1]: https://github.com/scchearn/greenlight/issues/7
[1]: https://github.com/scchearn/greenlight/issues/7
[2]: https://github.com/scchearn/greenlight/blob/master/install.sh
Binary file modified greenlight.html.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@

# Make sure language is set to UTF-8
LANG=en_US.UTF-8
# This is the name of the app, set it as a variable.
# Name and version of the app.
readonly APPNAME="greenlight"
readonly APPVERSION="0.9.3"
readonly APPVERSION="0.9.4"

# Make a directory for files to go.
if ! [[ -d /tmp/$APPNAME ]]; then
Expand Down

0 comments on commit 6f03130

Please sign in to comment.