Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

solr.yml 790B

1234567891011121314151617181920212223
  1. - name: Install Solr and related packages
  2. apt: pkg={{ item }} state=installed
  3. with_items:
  4. - dovecot-solr
  5. - tomcat8
  6. - solr-tomcat
  7. tags:
  8. - dependencies
  9. - name: Work around Debian bug and copy Solr schema file into place
  10. copy: src=solr-schema.xml dest=/etc/solr/conf/schema.xml group=root owner=root
  11. - name: Copy tweaked Tomcat config file into place
  12. copy: src=etc_tomcat8_server.xml dest=/etc/tomcat8/server.xml group=tomcat8 owner=root
  13. notify: restart solr
  14. - name: Copy tweaked Solr config file into place
  15. copy: src=etc_solr_conf_solrconfig.xml dest=/etc/solr/conf/solrconfig.xml group=root owner=root
  16. notify: restart solr
  17. - name: Create Solr index directory
  18. file: state=directory path=/decrypted/solr group=tomcat8 owner=tomcat8
  19. notify: restart solr