[FIX] remove git submodule init and improve FAQ networking
This commit is contained in:
parent
5b8c72431d
commit
eeafbcdecb
2 changed files with 10 additions and 2 deletions
|
|
@ -4,6 +4,14 @@ Show all open port
|
||||||
```bash
|
```bash
|
||||||
sudo lsof -i -P -n | grep LISTEN
|
sudo lsof -i -P -n | grep LISTEN
|
||||||
```
|
```
|
||||||
|
or
|
||||||
|
```bash
|
||||||
|
sudo netstat -lpnt | grep LISTEN
|
||||||
|
```
|
||||||
|
or
|
||||||
|
```bash
|
||||||
|
sudo ss -lpnt | grep LISTEN
|
||||||
|
```
|
||||||
|
|
||||||
## git-repo
|
## git-repo
|
||||||
### error.GitError fatal bad revision
|
### error.GitError fatal bad revision
|
||||||
|
|
|
||||||
|
|
@ -168,8 +168,8 @@ if [[ ${EL_INSTALL_NGINX} = "True" ]]; then
|
||||||
printf "proxy_mode = True\n" >> ${EL_CONFIG_FILE}
|
printf "proxy_mode = True\n" >> ${EL_CONFIG_FILE}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo -e "\n---- Install Odoo with addons module ----"
|
#echo -e "\n---- Install Odoo with addons module ----"
|
||||||
git submodule update --init
|
#git submodule update --init
|
||||||
|
|
||||||
# Generate empty addons if missing
|
# Generate empty addons if missing
|
||||||
if [[ ! -d "./addons/addons" ]]; then
|
if [[ ! -d "./addons/addons" ]]; then
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue