From 4086dea2fbd0c815fa6a5f09a9684b50820d7171 Mon Sep 17 00:00:00 2001 From: Matthew Campbell <31420840+MatthewGCampbell@users.noreply.github.com> Date: Fri, 8 Jan 2021 15:38:41 -0500 Subject: [PATCH] Added a example ssh key file in /on-boot-script/examples/udm-files/on_boot.d (#84) * Create add-ssh-keys.sh * Update add-ssh-keys.sh --- on-boot-script/examples/udm-files/on_boot.d/add-ssh-keys.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 on-boot-script/examples/udm-files/on_boot.d/add-ssh-keys.sh diff --git a/on-boot-script/examples/udm-files/on_boot.d/add-ssh-keys.sh b/on-boot-script/examples/udm-files/on_boot.d/add-ssh-keys.sh new file mode 100644 index 0000000..c131008 --- /dev/null +++ b/on-boot-script/examples/udm-files/on_boot.d/add-ssh-keys.sh @@ -0,0 +1,6 @@ +#!/bin/sh + + +# Places public key in ~/.ssh/authorized_keys + +echo "Place Plublic Key Here" >> ~/.ssh/authorized_keys