Skip to content

Commit

Permalink
Merge pull request #209 from wilkmar:shell-fix
Browse files Browse the repository at this point in the history
Replace Sh shell in shebang with Bash
  • Loading branch information
nicolasbock authored Sep 5, 2024
2 parents 8040f59 + c89e09a commit a30b681
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jaas/configure
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh -u
#!/bin/bash -u

status=$(juju status --format=json)
candid_haproxy_machine=$(echo $status | jq '.applications."candid-haproxy".units."candid-haproxy/0".machine')
Expand Down
2 changes: 1 addition & 1 deletion openstack/configure
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh -u
#!/bin/bash -u
profile=${1:-prodstack6}
net_type=${2:-""}
./profiles/$profile $net_type

0 comments on commit a30b681

Please sign in to comment.