bin/remote: Rename list-gpg-keys to gpg-list-keys
authorDan Nicholson <dbn@endlessos.org>
Mon, 23 Aug 2021 17:09:24 +0000 (11:09 -0600)
committerDan Nicholson <dbn@endlessos.org>
Mon, 23 Aug 2021 21:30:31 +0000 (15:30 -0600)
commit58a683f8f0a14d19d15e3b5521b9fbcc6c04a9a1
tree13e9699f02fe4c2132e9024ff80764be30a5c8bf
parent452611e4a862bf7df567e4c55790a1ce7d9cf4ef
bin/remote: Rename list-gpg-keys to gpg-list-keys

As pointed out in the original review, `gpg-list-keys` fits better
alongside the existing `gpg-import`.

Changes were done with:

```
git grep -l list-gpg-keys | xargs sed -i 's/list-gpg-keys/gpg-list-keys/'
for src in $(git ls-files '*list-gpg-keys*'); do
  dst=${src/list-gpg-keys/gpg-list-keys}
  git mv "$src" "$dst"
done
```
Makefile-ostree.am
Makefile-tests.am
bash/ostree
man/ostree-remote.xml
src/ostree/ot-builtin-remote.c
src/ostree/ot-remote-builtin-gpg-list-keys.c [new file with mode: 0644]
src/ostree/ot-remote-builtin-list-gpg-keys.c [deleted file]
tests/test-remote-gpg-list-keys.sh [new file with mode: 0755]
tests/test-remote-list-gpg-keys.sh [deleted file]