Skip to content
Snippets Groups Projects
Commit 0aee3670 authored by Pierre Ozoux's avatar Pierre Ozoux
Browse files

Moves supported application to a file

parent 9d7ccf90
No related branches found
No related tags found
No related merge requests found
static wordpress known piwik owncloud
#!/bin/bash -eux #!/bin/bash -eux
ROOT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/..
systemctl list-units | grep -c failed | grep 0 systemctl list-units | grep -c failed | grep 0
applications=( static wordpress known piwik owncloud ) applications=( `cat $ROOT_DIR/SUPPORTED_APPLICATIONS` )
for application in "${applications[@]}" for application in "${applications[@]}"
do do
......
#!/bin/bash -eux #!/bin/bash -eux
applications=( static wordpress known piwik owncloud ) ROOT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/..
applications=( `cat $ROOT_DIR/SUPPORTED_APPLICATIONS` )
for application in "${applications[@]}" for application in "${applications[@]}"
do do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment