Skip to content

Commit

Permalink
fix : filebeat 압축 풀 시 경로 명시해주기
Browse files Browse the repository at this point in the history
  • Loading branch information
java-saeng committed Jul 24, 2023
1 parent ed4920c commit 6d16df5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/.ebextensions/02-set-filebeat.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
"/tmp/install_filebeat.sh": {
"mode": "000755",
"content": "#!/bin/bash\nFILEBEAT_DIRECTORY=\"/home/ec2-user/filebeat-7.14.1-linux-x86_64\"\nif [ ! -d \"$FILEBEAT_DIRECTORY\" ]; then\n wget https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.14.1-linux-x86_64.tar.gz\n tar xzvf filebeat-7.14.1-linux-x86_64.tar.gz\nelse\n echo \"Filebeat already installed.\"\nfi\n"
"content": "#!/bin/bash\nwget https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.14.1-linux-x86_64.tar.gz\ntar xzvf filebeat-7.14.1-linux-x86_64.tar.gz -C /home/ec2-user\n"
},
"/tmp/restart_filebeat.sh": {
"mode": "000755",
Expand Down

0 comments on commit 6d16df5

Please sign in to comment.