mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
Set beats permission checking to strict=false
When running filebeats integration tests on centos-7, the tests fail due to permsisions checks on the temporary configuration file created for the test. This commit sets strict permissions checks to false in order for the tests to be able to succeed. Fixes #11949
This commit is contained in:
parent
1ed6523e83
commit
b28fa3e7df
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
|||
# under the License.
|
||||
|
||||
class FilebeatService < Service
|
||||
FILEBEAT_CMD = [File.join(File.dirname(__FILE__), "installed", "filebeat", "filebeat"), "-c"]
|
||||
FILEBEAT_CMD = [File.join(File.dirname(__FILE__), "installed", "filebeat", "filebeat"), "--strict.perms=false", "-c"]
|
||||
|
||||
class BackgroundProcess
|
||||
def initialize(cmd)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue