Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
The file extension for export/print archives is still called `.sd-export`
  • Loading branch information
eloquence committed Jan 17, 2020
1 parent acfe31c commit 40c0e5e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include files/mimeapps.list
include files/open-in-dvm.desktop
include files/securedrop-client
include files/securedrop-client.desktop
include files/sd-svs-qubes-gpg-domain.sh
include files/sd-app-qubes-gpg-domain.sh
include files/usr.bin.securedrop-client

recursive-include alembic *
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ We support running the [developer environment on a non-Qubes OS](#developer-envi

### Staging environment

* Run by directly invoking the client `python -m securedrop_client` on the `sd-svs` AppVM
* Run by directly invoking the client `python -m securedrop_client` on the `sd-app` AppVM
* Requires that `make all` in the `securedrop-workstation` repository has completed successfully
* Uses `~/.securedrop_client` as its configuration directory
* Uses the gpg key in the `sd-gpg` AppVM configured during `make all`
Expand All @@ -189,7 +189,7 @@ We support running the [developer environment on a non-Qubes OS](#developer-envi

### Production environment

* Run by executing `securedrop-client` in the `sd-svs` AppVM (see [workstation documentation here](https://github.com/freedomofpress/securedrop-workstation/#using-the-securedrop-client))
* Run by executing `securedrop-client` in the `sd-app` AppVM (see [workstation documentation here](https://github.com/freedomofpress/securedrop-workstation/#using-the-securedrop-client))
* Requires that `make all` in the `securedrop-workstation` repository has completed successfully
* Uses `~/.securedrop_client` as its configuration directory
* Uses the gpg key in the `sd-gpg` AppVM configured during `make all`
Expand Down
2 changes: 1 addition & 1 deletion files/open-in-dvm.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Version=1.0
Name=Open in Disposable VM
Comment=Open file in a Disposable VM
TryExec=/usr/bin/qvm-open-in-vm
Exec=/usr/bin/qvm-open-in-vm '@dispvm:sd-svs-disp' %f
Exec=/usr/bin/qvm-open-in-vm '@dispvm:sd-viewer' %f
Icon=/usr/share/icons/Qubes/dispvm-gray.png
Terminal=false
Categories=Qubes;Utility;
File renamed without changes.
2 changes: 1 addition & 1 deletion securedrop_client/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def _export_archive(cls, archive_path: str) -> str:
output = subprocess.check_output(
[
quote('qvm-open-in-vm'),
quote('sd-export-usb'),
quote('sd-devices'),
quote(archive_path),
'--view-only'
],
Expand Down
2 changes: 1 addition & 1 deletion securedrop_client/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ def on_file_open(self, file_uuid: str) -> None:
self.data_dir, file.filename, file.original_filename)

command = "qvm-open-in-vm"
args = ['$dispvm:sd-svs-disp', path_to_file_with_original_name]
args = ['$dispvm:sd-viewer', path_to_file_with_original_name]
process = QProcess(self)
process.start(command, args)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,4 +346,4 @@ def test__export_archive_with_evil_command(mocker):
export._export_archive('somefile; rm -rf ~')

check_output.assert_called_once_with(
['qvm-open-in-vm', 'sd-export-usb', "'somefile; rm -rf ~'", '--view-only'], stderr=-2)
['qvm-open-in-vm', 'sd-devices', "'somefile; rm -rf ~'", '--view-only'], stderr=-2)

0 comments on commit 40c0e5e

Please sign in to comment.