summaryrefslogtreecommitdiff
path: root/scripts/import-cacerts.sh
blob: 993d5847466d50c3d81d37b488abce74379a732b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh

function visitFile() {
	install/bin/gkeytool \
	-cacert \
	-v \
	-storepass changeit \
	-keystore resource/java/security/cacerts.gkr \
	-file "$1"
}

function visitDir() {
	local d
	d=$1
	for f in "$d/"*
	do
		if [ -d "$f" ] ; then
			visitDir "$f"
		else
			visitFile "$f"
		fi
	done
}

if [ "$#" -lt "1" ] ; then
	echo "Usage: import-cacerts DIR"
	echo "Import CA trusted certificates into a 'cacerts.gkr' key store"
	echo "under resource/java/security using 'changeit' as its password,"
	echo "and constructing the Alias from the certificate's file name."
	echo
	echo "  DIR  the 'ca-certificates' deb package installation directory"
	echo "         containing trusted CA certificates."
	echo
else
	caDir=$1
	if [ ! -d $caDir ] ; then
		echo "Argument MUST be a directory."
		echo "Type command with no arguments for usage string."
		exit 1
	fi
	visitDir $caDir
fi
exit 0