configs  Check-in [f1ac63d83b]

Overview
Comment:Switch to new signing key
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f1ac63d83bea412b5be381b2ce5e2f90c35d2e9e28326860638f78c5f393d0f1
User & Date: js on 2024-01-04 18:59:09
Other Links: manifest | tags
Context
2024-01-04
19:00
Add ownertrust for new key check-in: f0189a539d user: js tags: trunk
18:59
Switch to new signing key check-in: f1ac63d83b user: js tags: trunk
18:57
Add new signing key to gnupg/keyring.asc check-in: c75f6a7520 user: js tags: trunk
Changes

Modified git/config from [0bdaed780a] to [bbb761256f].

1
2
3
4
5
6
7
8
9
10
11
[user]
	name = Jonathan Schleifer
	email = js@nil.im
	signingkey = 7395312F

[color]
	ui = auto
	interactive = auto

[alias]
	ci = commit -S



|







1
2
3
4
5
6
7
8
9
10
11
[user]
	name = Jonathan Schleifer
	email = js@nil.im
	signingkey = EC9BE683

[color]
	ui = auto
	interactive = auto

[alias]
	ci = commit -S

Modified setup.sh from [d45b2ec114] to [7c71664bf0].

31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
		gpg="gpg2"
	elif have gpg; then
		gpg="gpg"
	else
		gpg="false"
	fi

	gpg_key="7395312F"
	if $gpg --list-secret-keys $gpg_key >/dev/null 2>&1; then
		fossil set --global pgp-command \
			"$gpg -u $gpg_key --clearsign -o"
		fossil set --global clearsign 1
	else
		fossil unset --global pgp-command
		fossil unset --global clearsign







|







31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
		gpg="gpg2"
	elif have gpg; then
		gpg="gpg"
	else
		gpg="false"
	fi

	gpg_key="EC9BE683"
	if $gpg --list-secret-keys $gpg_key >/dev/null 2>&1; then
		fossil set --global pgp-command \
			"$gpg -u $gpg_key --clearsign -o"
		fossil set --global clearsign 1
	else
		fossil unset --global pgp-command
		fossil unset --global clearsign