Compare commits

..

3 commits

4 changed files with 16 additions and 12 deletions

View file

@ -16,7 +16,7 @@ sudo chmod +x ./install.sh
sudo chmod +x ./deploy.sh
# Install and deploy services
sudo ./install.sh * && sudo ./deploy.sh *
sudo ./install.sh --all && sudo ./deploy.sh --all
```
## Installation
@ -37,7 +37,7 @@ sudo (bash|sh|zsh) ./install.sh [SERVICES...]
```
- Install all services.
```sh
sudo ./install.sh *
sudo ./install.sh -a
```
## Déploiement
@ -60,5 +60,5 @@ sudo (bash|sh|zsh) ./deploy.sh [SERVICES...]
```
- Install all services.
```sh
sudo ./deploy.sh *
sudo ./deploy.sh -a
```

View file

@ -1,10 +1,12 @@
APPS=$@
if [[ $1 == "*" && $# -eq 1 ]]; then
if [[ $# -eq 1 ]]; then
if [[ $1 == "--all" $1 == "-a" ]]; then
APPS=$(ls -d */)
fi
fi
for app in "$APPS"
for app in $APPS
do
echo "[server_config] > Deploying: $app"

View file

@ -5,11 +5,13 @@ source ./_requirements.sh
# Install services
APPS=$@
if [[ $1 == "*" && $# -eq 1 ]]; then
if [[ $# -eq 1 ]]; then
if [[ $1 == "--all" $1 == "-a" ]]; then
APPS=$(ls -d */)
fi
fi
for app in "$APPS"
for app in $APPS
do
echo "[server_config] > Installing: $app"

View file

@ -1 +1 @@
nala install iptables
nala install -y iptables