Saltstack Official Galera Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

checks_clustercheck_spec.rb 411B

12345678910
  1. describe file('/etc/xinetd.d/mysql_clustercheck') do
  2. it('should exist')
  3. its('content') { should match /server.*\/usr\/local\/bin\/mysql_clustercheck/ }
  4. its('content') { should match /server_args.*clustercheck password available_when_donor=1 \/dev\/null available_when_readonly=1/ }
  5. end
  6. describe file('/usr/local/bin/mysql_clustercheck') do
  7. it('should exist')
  8. it('should be_executable')
  9. end