test annex.shared-sop-command
Test a specified Stateless OpenPGP command with eg: git-annex test --test-git-config annex.shared-sop-command=sqop Also documented that config and another one, but so far only the test suite uses the configs, have not yet implemented using it for actual symmetric encryption. Sponsored-by: Joshua Antonishen on Patreon
This commit is contained in:
parent
812cbf0e17
commit
d98f02a5b0
7 changed files with 68 additions and 5 deletions
|
@ -372,6 +372,8 @@ data RemoteGitConfig = RemoteGitConfig
|
|||
, remoteAnnexRsyncTransport :: [String]
|
||||
, remoteAnnexGnupgOptions :: [String]
|
||||
, remoteAnnexGnupgDecryptOptions :: [String]
|
||||
, remoteAnnexSharedSOPCommand :: Maybe String
|
||||
, remoteAnnexSharedSOPProfile :: Maybe String
|
||||
, remoteAnnexRsyncUrl :: Maybe String
|
||||
, remoteAnnexBupRepo :: Maybe String
|
||||
, remoteAnnexBorgRepo :: Maybe String
|
||||
|
@ -439,6 +441,8 @@ extractRemoteGitConfig r remotename = do
|
|||
, remoteAnnexRsyncTransport = getoptions "rsync-transport"
|
||||
, remoteAnnexGnupgOptions = getoptions "gnupg-options"
|
||||
, remoteAnnexGnupgDecryptOptions = getoptions "gnupg-decrypt-options"
|
||||
, remoteAnnexSharedSOPCommand = notempty $ getmaybe "shared-sop-command"
|
||||
, remoteAnnexSharedSOPProfile = notempty $ getmaybe "shared-sop-profile"
|
||||
, remoteAnnexRsyncUrl = notempty $ getmaybe "rsyncurl"
|
||||
, remoteAnnexBupRepo = getmaybe "buprepo"
|
||||
, remoteAnnexBorgRepo = getmaybe "borgrepo"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue