dcss access #20

Open
opened 2019-02-24 08:18:27 +00:00 by gbmor · 0 comments

to provide access to the crawl server to your users, place this shellscript

#!/bin/sh

SOURCEKEY="https://crawl.tildeverse.org/dcss.key"
MYKEY="${HOME}/.ssh/dcss.key"
if [ ! -f "$MYKEY" ]; then
  mkdir -p "${HOME}/.ssh"
  curl -s "$SOURCEKEY" > "$MYKEY"
  chmod 600 "$MYKEY"
fi
ssh -i "$MYKEY" dcss@crawl.tildeverse.org

in this file:

/usr/local/bin/dcss

and make it executable.

to provide access to the crawl server to your users, place this shellscript ``` #!/bin/sh SOURCEKEY="https://crawl.tildeverse.org/dcss.key" MYKEY="${HOME}/.ssh/dcss.key" if [ ! -f "$MYKEY" ]; then mkdir -p "${HOME}/.ssh" curl -s "$SOURCEKEY" > "$MYKEY" chmod 600 "$MYKEY" fi ssh -i "$MYKEY" dcss@crawl.tildeverse.org ``` in this file: /usr/local/bin/dcss and make it executable.
fosslinux added this to the Sometime soon milestone 2019-02-25 08:31:32 +00:00
Sign in to join this conversation.
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: aussie/todo#20
No description provided.