Skip to content

Commit

Permalink
fix chmod order (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
dc1992 authored Dec 13, 2024
1 parent d8083e5 commit aa4b2a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ rabbitmq-cluster:
mv cluster/tls-gen/basic/result/server_*_certificate.pem cluster/tls-gen/basic/result/server_certificate.pem
mv cluster/tls-gen/basic/result/server_*key.pem cluster/tls-gen/basic/result/server_key.pem
cd cluster; docker build -t haproxy-rabbitmq-cluster .
cd cluster; chmod 755 -R tls-gen
cd cluster; chmod -R 755 tls-gen
cd cluster; docker compose down
cd cluster; docker compose up -d

rabbitmq-test:
rm -rf tls-gen;
git clone https://github.com/rabbitmq/tls-gen tls-gen; cd tls-gen/basic; CN=rabbitmq make
chmod 755 -R tls-gen
chmod -R 755 tls-gen
docker compose down
docker compose up -d
sleep 5
Expand Down

0 comments on commit aa4b2a4

Please sign in to comment.