Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ This repository is for deploying general purpose system software that is used on

* `gh` : [GitHub CLI](https://cli.github.com) is GitHub on the command line. It brings pull requests, issues, and other GitHub concepts to the terminal next to where you are already working with git and your code.

* `openssh` : [OpenSSH](https://www.openssh.com/) is the premier connectivity tool for remote login with the SSH protocol. It encrypts all traffic to eliminate eavesdropping, connection hijacking, and other attacks. In addition, _OpenSSH_ provides a large suite of secure tunneling capabilities, several authentication methods, and sophisticated configuration options.
The OpenSSH suite consists of the following tools:
- Remote operations are done using `ssh`, `scp`, and `sftp`.
- Key management with `ssh-add`, `ssh-keysign`, `ssh-keyscan`, and `ssh-keygen`.
- The service side consists of `sshd`, `sftp-server`, and `ssh-agent`.

## How to use

**Requirements**: you must be a member of [`vk83`](https://my.nci.org.au/mancini/project/vk83).
Expand Down
23 changes: 23 additions & 0 deletions openssh/spack.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This is a Spack Environment file.
#
# It describes a set of packages to be installed, along with
# configuration settings.
#
# This manifest is for installing openssh, a suite of secure networking utilities based on the SSH protocol
spack:
specs:
- openssh@9.8p1
packages:
openssh:
require:
- '%gcc@14.1.0'
view: true
concretizer:
unify: true
modules:
default:
tcl:
include:
- openssh
projections:
openssh: 'system-tools/{name}/{version}'
Loading