Skip to content

Commit

Permalink
Merge pull request #586 from MoeRichert-USDA/mr-update
Browse files Browse the repository at this point in the history
update copy function
  • Loading branch information
MoeRichert-USDA authored Jun 27, 2024
2 parents f251b43 + 9722991 commit 2c87a75
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 14 deletions.
2 changes: 1 addition & 1 deletion _sass/styles.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _sass/styles.css.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions _uswds/sass/custom/cards.scss
Original file line number Diff line number Diff line change
Expand Up @@ -318,4 +318,8 @@
overflow:auto;
width:100%
}
}

p + .copy-code {
margin-top:0;
}
30 changes: 18 additions & 12 deletions sn_collections/_guides/login.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,18 +94,24 @@ Delete your .ssh/known_hosts file OR run:
- ssh-agent needs to to running as a system service. **If it is not running SmallStep will NOT work. You must assure it is running before proceeding**
- For Linux and MacOS this is probably already running so this step can be skipped.
- For Windows this has to be enabled by an administator, it is not on by default even if openssh is installed. To enable it an administor must:

{:.copy-code}
```
# Make sure you're running as an Administrator.
Get-Service ssh-agent | Set-Service -StartupType Automatic
# Start the service
Start-Service ssh-agent
# This should return a status of Running
Get-Service ssh-agent
```
- Make sure you're running as an Administrator.

{:.copy-code}
```
Get-Service ssh-agent | Set-Service -StartupType Automatic
```
- Start the service
{:.copy-code}
```
Start-Service ssh-agent
```
- This should return a status of Running
{:.copy-code}
```
Get-Service ssh-agent
```
#### Step needs to be installed on your machine.
- If you are on a USDA controlled Windows laptop or workstation, you can install **SmallStepsCLI** directly from the Software Center.
Expand Down

0 comments on commit 2c87a75

Please sign in to comment.