mirror of
				https://github.com/therootcompany/telebit.git
				synced 2025-10-26 19:02:48 +00:00 
			
		
		
		
	refactor(scripts): quotes and spaces
This commit is contained in:
		
							parent
							
								
									a7f1398ba4
								
							
						
					
					
						commit
						f2d2af3761
					
				| @ -1,3 +1,7 @@ | ||||
| #!/bin/bash | ||||
| set -e | ||||
| set -u | ||||
| 
 | ||||
| source .env | ||||
| 
 | ||||
| # 1. (srv) create a new shared key for a given slug | ||||
| @ -6,12 +10,14 @@ source .env | ||||
| # 4. (dev) use key to connect to remote | ||||
| # 5. (dev) ping occasionally | ||||
| 
 | ||||
| TOKEN=$(go run cmd/signjwt/*.go \ | ||||
|     --expires-in 1m \ | ||||
|     --vendor-id "$VENDOR_ID" \ | ||||
|     --secret "$RELAY_SECRET" \ | ||||
|     --machine-ppid "$RELAY_SECRET" | ||||
| ) | ||||
| TOKEN="$( | ||||
|     go run cmd/signjwt/*.go \ | ||||
|         --expires-in 1m \ | ||||
|         --vendor-id "$VENDOR_ID" \ | ||||
|         --secret "$RELAY_SECRET" \ | ||||
|         --machine-ppid "$RELAY_SECRET" | ||||
| )" | ||||
| echo "${TOKEN}" | ||||
| 
 | ||||
| MGMT_URL=${MGMT_URL:-"http://mgmt.example.com:6468/api"} | ||||
| 
 | ||||
| @ -19,4 +25,4 @@ CLIENT_SUBJECT=${CLIENT_SUBJECT:-"newbie"} | ||||
| curl -X POST "$MGMT_URL/devices" \ | ||||
|     -H "Authorization: Bearer ${TOKEN}" \ | ||||
|     -H "Content-Type: application/json" \ | ||||
|     -d '{ "slug": "'$CLIENT_SUBJECT'" }' | ||||
|     -d '{ "slug": "'"$CLIENT_SUBJECT"'" }' | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user