Posts

Showing posts from January, 2026

spyml

# SmartViewM365 WAR Deployment for SharePoint Integration # This deploys the SharePoint UI component (NOT D2-REST, which is already running) # Grant permissions for tomcat instance directory - name : Set permissions for tomcat instance directory   file :     path : " {{ tomcat_instance_path }} "     owner : " {{ tomcat_user }} "     group : " {{ tomcat_group }} "     mode : " 0755 "     recurse : yes   become : true # Restore seLinux contexts for Tomcat instance - name : Restore seLinux contexts for tomcat instance   command : restorecon -R {{ tomcat_instance_path }}   become : true   no_log : true   changed_when : false # Clean any existing SmartViewM365 deployment before re-deploying # This ensures a fresh deployment without old files interfering - name : Cleanup before deploying SmartViewM365.war   file :     path : " {{ tomcat_instance_path }}/webapps/SmartViewM365.war "     s...