 c37e4b2344
			
		
	
	
		c37e4b2344
		
	
	
	
	
		
			
			On FC>=15 /var/run is on tmpfs, so /var/run/tinyproxy from rpm don't survive reboot. This is bug in Fedora package (should include config file for tmpfiles service). For now create dir just before starting service.
		
			
				
	
	
		
			16 lines
		
	
	
		
			716 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			716 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
| [Unit]
 | |
| Description=Qubes yum proxy (tinyproxy)
 | |
| ConditionPathExists=/var/run/qubes-service/qubes-yum-proxy
 | |
| After=iptables.service
 | |
| 
 | |
| [Service]
 | |
| ExecStartPre=/usr/bin/install -d --owner tinyproxy --group tinyproxy /var/run/tinyproxy
 | |
| ExecStartPre=/sbin/iptables -I INPUT -i vif+ -p tcp --dport 8082 -j ACCEPT
 | |
| ExecStartPre=/sbin/iptables -t nat -A PR-QBS-SERVICES -i vif+ -d 10.137.255.254 -p tcp --dport 8082 -j REDIRECT
 | |
| ExecStart=/usr/sbin/tinyproxy -d -c /etc/tinyproxy/tinyproxy-qubes-yum.conf
 | |
| ExecStopPost=/sbin/iptables -t nat -D PR-QBS-SERVICES -i vif+ -d 10.137.255.254 -p tcp --dport 8082 -j REDIRECT
 | |
| ExecStopPost=/sbin/iptables -D INPUT -i vif+ -p tcp --dport 8082 -j ACCEPT
 | |
| 
 | |
| [Install]
 | |
| WantedBy=multi-user.target
 |