diff options
author | Jameson Rollins <jrollins@finestructure.net> | 2010-10-06 17:37:54 -0400 |
---|---|---|
committer | Jameson Rollins <jrollins@finestructure.net> | 2010-10-06 17:41:27 -0400 |
commit | cdf1a5acbfc09742c3d04de038722b273381f78d (patch) | |
tree | 057c0fffa0f17c4420379a580f25fcbfa8e5029c /src/share/ma/setup | |
parent | e1ba8a123a9a75bce92a044990f02d8ac28135b3 (diff) |
Fix more calls to gpg_shere, finishing what was started in 90166e0bb8e4ebc1c1174d9bc2021c604b7a1bd7
There were another calls to gpg_sphere that were packing everything
into a single argument. Since we fixed the need to do that, we fix
all these other calls that were fixed in the first round.
Diffstat (limited to 'src/share/ma/setup')
-rw-r--r-- | src/share/ma/setup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/share/ma/setup b/src/share/ma/setup index 3c82c45..5cc3aab 100644 --- a/src/share/ma/setup +++ b/src/share/ma/setup @@ -87,12 +87,12 @@ EOF # export the core key to the sphere keyring log debug "exporting core pub key to sphere keyring..." - gpg_core --export | gpg_sphere "--import" + gpg_core --export | gpg_sphere --import # ensure that the authentication sphere checker has absolute ownertrust on the expected key. log debug "setting ultimate owner trust on core key in gpg_sphere..." - printf "%s:6:\n" "$CORE_FPR" | gpg_sphere "--import-ownertrust" 2>&1 | log verbose - gpg_sphere "--export-ownertrust" 2>&1 | log debug + printf "%s:6:\n" "$CORE_FPR" | gpg_sphere --import-ownertrust 2>&1 | log verbose + gpg_sphere --export-ownertrust 2>&1 | log debug # check the owner trust log debug "checking gpg_sphere owner trust set properly..." |