Skip to content

Commit 44d3451

Browse files
Minor fix SSH capitalisation for readability
1 parent dc84ae9 commit 44d3451

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

admin/securedrop_admin/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -720,9 +720,9 @@ def find_or_generate_new_torv3_keys(args):
720720
# No old keys, generate and store them first
721721
app_journalist_public_key, \
722722
app_journalist_private_key = generate_new_v3_keys()
723-
# For app ssh service
723+
# For app SSH service
724724
app_ssh_public_key, app_ssh_private_key = generate_new_v3_keys()
725-
# For mon ssh service
725+
# For mon SSH service
726726
mon_ssh_public_key, mon_ssh_private_key = generate_new_v3_keys()
727727
tor_v3_service_info = {
728728
"app_journalist_public_key": app_journalist_public_key,

ansible.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ callback_whitelist = profile_tasks
99

1010
[ssh_connection]
1111
# These options are required to be able to run the playbook over Tor and
12-
# with the ssh iptables rules rate-limiting. Removing this file or changing these
12+
# with the SSH iptables rules rate-limiting. Removing this file or changing these
1313
# options could break being able to run the playbook over Tor
1414
scp_if_ssh=True
1515
ssh_args = -o ControlMaster=auto -o ControlPersist=600s -o ConnectTimeout=60

docs/backup_and_restore.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ to update the corresponding files on the *Admin Workstation*:
167167
* ``app-journalist-aths``
168168
* ``app-ssh-aths``
169169

170-
Once ssh access to the servers has been established (or if using ssh over
170+
Once SSH access to the servers has been established (or if using SSH over
171171
local network), Onion URLs for the *Source Interface* and *Journalist Interfaces*
172172
can be fetched using the installer:
173173

docs/network_firewall.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ described as follows:
834834
* Allow UDP NTP from *Application Server* and *Monitor Server* to all
835835
* Allow TCP any port from *Application Server* and *Monitor Server* to all (this is needed for making connections to the Tor network)
836836
* Allow TCP 80/443 from *Admin Workstation* to all (in case there is a need to access the web interface of the firewall)
837-
* Allow TCP ssh from *Admin Workstation* to *Application Server* and *Monitor Server*
837+
* Allow TCP SSH from *Admin Workstation* to *Application Server* and *Monitor Server*
838838
* Allow TCP any port from *Admin Workstation* to all
839839

840840
This can be implemented with iptables, Cisco IOS etc. if you have the necessary

docs/test_the_installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Test Connectivity
77
SSH to Both Servers Over Tor
88
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
99

10-
Assuming you haven't disabled ssh over Tor, SSH access will be
10+
Assuming you haven't disabled SSH over Tor, SSH access will be
1111
restricted to the Tor network.
1212

1313
On the *Admin Workstation*, you should be able to SSH to the *Application Server* and the *Monitor Server*. ::

molecule/vagrant-packager/playbook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
- { role: app, tags: app }
4646
become: yes
4747

48-
# This section will put the ssh and iptables rules in place
48+
# This section will put the SSH and iptables rules in place
4949
# It will then add any staging exemptions required
5050
# at the end of each host section is when the handlers are run.
5151
# So iptables will not be reloaded until the exemptions are applied

0 commit comments

Comments
 (0)