mirror of
				https://git.anonymousland.org/anonymousland/synapse.git
				synced 2025-10-31 15:58:54 -04:00 
			
		
		
		
	 9799c569bb
			
		
	
	
		9799c569bb
		
			
		
	
	
	
	
		
			
			* Remove unused Vagrant scripts
* Change package Architecture to any
* Preinstall the wheel package when building venvs.
Addresses the following warnings during Debian builds:
    Using legacy 'setup.py install' for jaeger-client, since package 'wheel' is not installed.
    Using legacy 'setup.py install' for matrix-synapse-ldap3, since package 'wheel' is not installed.
    Using legacy 'setup.py install' for opentracing, since package 'wheel' is not installed.
    Using legacy 'setup.py install' for psycopg2, since package 'wheel' is not installed.
    Using legacy 'setup.py install' for systemd-python, since package 'wheel' is not installed.
    Using legacy 'setup.py install' for pympler, since package 'wheel' is not installed.
    Using legacy 'setup.py install' for threadloop, since package 'wheel' is not installed.
    Using legacy 'setup.py install' for thrift, since package 'wheel' is not installed.
* Allow /etc/default/matrix-synapse to be missing
Per the systemd.exec manpage, prefixing an EnvironmentFile with "-":
> indicates that if the file does not exist, it will not be read and no
> error or warning message is logged.
Signed-off-by: Dan Callahan <danc@element.io>
		
	
			
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			887 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			887 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
| [Unit]
 | |
| Description=Synapse %i
 | |
| AssertPathExists=/etc/matrix-synapse/workers/%i.yaml
 | |
| 
 | |
| # This service should be restarted when the synapse target is restarted.
 | |
| PartOf=matrix-synapse.target
 | |
| ReloadPropagatedFrom=matrix-synapse.target
 | |
| 
 | |
| # if this is started at the same time as the main, let the main process start
 | |
| # first, to initialise the database schema.
 | |
| After=matrix-synapse.service
 | |
| 
 | |
| [Service]
 | |
| Type=notify
 | |
| NotifyAccess=main
 | |
| User=matrix-synapse
 | |
| WorkingDirectory=/var/lib/matrix-synapse
 | |
| EnvironmentFile=-/etc/default/matrix-synapse
 | |
| ExecStart=/opt/venvs/matrix-synapse/bin/python -m synapse.app.generic_worker --config-path=/etc/matrix-synapse/homeserver.yaml --config-path=/etc/matrix-synapse/conf.d/ --config-path=/etc/matrix-synapse/workers/%i.yaml
 | |
| ExecReload=/bin/kill -HUP $MAINPID
 | |
| Restart=always
 | |
| RestartSec=3
 | |
| SyslogIdentifier=matrix-synapse-%i
 | |
| 
 | |
| [Install]
 | |
| WantedBy=matrix-synapse.target
 |