Skip to content

Commit

Permalink
Merge pull request #157 from kemitix/apt-get-no-prompt
Browse files Browse the repository at this point in the history
Don’t prompt for confirmation with apt-get
  • Loading branch information
tbouron committed Feb 11, 2020
2 parents de65aa7 + 84fce02 commit 75ca10d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/src/main/dist/conf/brooklyn/default.catalog.bom
Expand Up @@ -106,7 +106,7 @@ brooklyn.catalog:
install.command: |
# install python if not present
which python || \
{ sudo apt-get update && sudo apt-get install python ; } || \
{ sudo apt-get update && sudo apt-get install -y python ; } || \
{ sudo yum update && sudo yum install python ; } || \
{ echo WARNING: cannot install python && exit 1 ; }

Expand Down
Expand Up @@ -72,7 +72,7 @@ brooklyn.catalog:
install.command: |
# install python if not present
which python || \
{ sudo apt-get update && sudo apt-get install python ; } || \
{ sudo apt-get update && sudo apt-get install -y python ; } || \
{ sudo yum update && sudo yum install python ; } || \
{ echo WARNING: cannot install python && exit 1 ; }

Expand Down

0 comments on commit 75ca10d

Please sign in to comment.