[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
|
||||
sudo lsof -i -P -n | grep LISTEN
|
||||
```
|
||||
or
|
||||
```bash
|
||||
sudo netstat -lpnt | grep LISTEN
|
||||
```
|
||||
or
|
||||
```bash
|
||||
sudo ss -lpnt | grep LISTEN
|
||||
```
|
||||
|
||||
## git-repo
|
||||
### error.GitError fatal bad revision
|
||||
|
|
|
|||
|
|
@ -168,8 +168,8 @@ if [[ ${EL_INSTALL_NGINX} = "True" ]]; then
|
|||
printf "proxy_mode = True\n" >> ${EL_CONFIG_FILE}
|
||||
fi
|
||||
|
||||
echo -e "\n---- Install Odoo with addons module ----"
|
||||
git submodule update --init
|
||||
#echo -e "\n---- Install Odoo with addons module ----"
|
||||
#git submodule update --init
|
||||
|
||||
# Generate empty addons if missing
|
||||
if [[ ! -d "./addons/addons" ]]; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue