mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			899 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			899 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
## Make a temp dir
 | 
						|
tempdir=$(mktemp -d update-plugin-modules.XXXXXX)
 | 
						|
 | 
						|
## Set paths
 | 
						|
cd $tempdir
 | 
						|
 | 
						|
## Get Vault
 | 
						|
echo "Fetching vault..."
 | 
						|
git clone https://github.com/hashicorp/vault
 | 
						|
 | 
						|
for plugin in $(grep github.com/hashicorp/vault-plugin- vault/go.mod | cut -f 2 | cut -d ' ' -f 1 | cut -d '/' -f 3)
 | 
						|
do
 | 
						|
	if [ -z $SKIP_MODULE_UPDATING ]
 | 
						|
	then
 | 
						|
		echo "Fetching $plugin..."
 | 
						|
		git clone https://github.com/hashicorp/$plugin
 | 
						|
		cd $plugin
 | 
						|
		rm -rf vendor
 | 
						|
		go get github.com/hashicorp/vault/api${API_BRANCH}
 | 
						|
		go mod tidy
 | 
						|
		go mod vendor
 | 
						|
		git add .
 | 
						|
		git commit --allow-empty -m "Updating vault dep"
 | 
						|
		if [ ! -z $PUSH_COMMITS ]
 | 
						|
		then
 | 
						|
			git push
 | 
						|
		fi
 | 
						|
		cd ..
 | 
						|
	fi
 | 
						|
	cd vault
 | 
						|
	go get github.com/hashicorp/$plugin@main
 | 
						|
	cd ..
 | 
						|
done
 | 
						|
 | 
						|
cd vault
 | 
						|
go mod tidy
 | 
						|
rm -rf vendor
 | 
						|
go mod vendor
 | 
						|
git add .
 | 
						|
git commit --allow-empty -m "Updating plugin deps"
 | 
						|
if [ ! -z $PUSH_VAULT_COMMIT ]
 | 
						|
then
 | 
						|
	git push
 | 
						|
fi
 |