mirror of
				https://github.com/laurivosandi/certidude
				synced 2025-10-31 09:29:13 +00:00 
			
		
		
		
	Attempt to use hostnames specified in Travis
This commit is contained in:
		| @@ -20,6 +20,10 @@ cache: | |||||||
|   directories: |   directories: | ||||||
|     - $HOME/.cache/pip |     - $HOME/.cache/pip | ||||||
| addons: | addons: | ||||||
|  |   hostname: ca | ||||||
|  |   hosts: | ||||||
|  |     - ca.example.lan ca | ||||||
|  |     - router.example.lan router | ||||||
|   apt: |   apt: | ||||||
|     packages: |     packages: | ||||||
|     - python-xattr |     - python-xattr | ||||||
|   | |||||||
| @@ -14,11 +14,6 @@ SIGNER_SOCKET_PATH = os.path.join(CONFIG_DIR, "signer.sock") if os.getuid() else | |||||||
| SIGNER_PID_PATH = os.path.join(CONFIG_DIR, "signer.pid") if os.getuid() else "/run/certidude/signer.pid" | SIGNER_PID_PATH = os.path.join(CONFIG_DIR, "signer.pid") if os.getuid() else "/run/certidude/signer.pid" | ||||||
| SIGNER_LOG_PATH = os.path.join(CONFIG_DIR, "signer.log") if os.getuid() else "/var/log/certidude-signer.log" | SIGNER_LOG_PATH = os.path.join(CONFIG_DIR, "signer.log") if os.getuid() else "/var/log/certidude-signer.log" | ||||||
|  |  | ||||||
| # Work around the 'asn1 encoding routines:ASN1_mbstring_ncopy:string too long' |  | ||||||
| # issue within OpenSSL ASN1 parser while running on Travis |  | ||||||
| if os.getenv("TRAVIS"): |  | ||||||
|     FQDN = "buildbot" |  | ||||||
| else: |  | ||||||
| try: | try: | ||||||
|     FQDN = socket.getaddrinfo(socket.gethostname(), 0, socket.AF_INET, 0, 0, socket.AI_CANONNAME)[0][3] |     FQDN = socket.getaddrinfo(socket.gethostname(), 0, socket.AF_INET, 0, 0, socket.AI_CANONNAME)[0][3] | ||||||
| except socket.gaierror: | except socket.gaierror: | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user