mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-21 15:10:22 +00:00
fix
This commit is contained in:
parent
6b237eedf6
commit
507a340e9a
4 changed files with 14 additions and 3 deletions
12
README.md
12
README.md
|
@ -44,10 +44,20 @@ curl https://websoft9.github.io/websoft9/install/install.sh | bash
|
|||
|
||||
|
||||
# Install Websoft9 special version by development artifact and install path at /data/websoft9/source ...
|
||||
wget https://websoft9.github.io/websoft9/install/install.sh && bash install.sh --port 9000 --channel dev --path "/data/websoft9/source" --version "0.8.25"
|
||||
wget -O - https://websoft9.github.io/websoft9/install/install.sh | bash /dev/stdin --port 9000 --channel dev --path "/data/websoft9/source" --version "0.8.25"
|
||||
```
|
||||
After installation, access it by: **http://Internet IP:9000** and using **Linux user** for login
|
||||
|
||||
# Uninstall
|
||||
|
||||
```
|
||||
# Uninstall by default
|
||||
curl https://websoft9.github.io/websoft9/install/uninstall.sh | bash
|
||||
|
||||
# Uninstall all
|
||||
wget -O - https://websoft9.github.io/websoft9/install/uninstall.sh | bash /dev/stdin --cockpit --files
|
||||
```
|
||||
|
||||
# Contributing
|
||||
|
||||
Follow the [contributing guidelines](CONTRIBUTING.md) if you want to propose a change in the Websoft9 core. For more information about participating in the community and contributing to the Websoft9 project, see [this page](https://support.websoft9.com/docs/community/contributing).
|
||||
|
|
|
@ -257,6 +257,7 @@ Edit_Menu(){
|
|||
if [ $? -ne 0 ]; then
|
||||
echo "Failed to download cockpit.conf"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
if test -d "$install_path/cockpit/menu_override"; then
|
||||
|
|
|
@ -16,7 +16,7 @@ export PATH
|
|||
# --files
|
||||
# Use the --files option remove files have installed:
|
||||
#
|
||||
# $ sudo sh install.sh --cockpit
|
||||
# $ sudo sh install.sh --files
|
||||
#
|
||||
#
|
||||
# ==============================================================================
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "0.8.26-rc1",
|
||||
"version": "0.8.26-rc2",
|
||||
"plugins": {
|
||||
"portainer": "0.0.6",
|
||||
"nginx": "0.0.5",
|
||||
|
|
Loading…
Reference in a new issue