From 2b077a42ccecd40c2e5152b2a3a8796704f78e73 Mon Sep 17 00:00:00 2001 From: sthope Date: Sat, 4 Sep 2021 01:10:58 +0200 Subject: [PATCH] initial commit --- .drone.yml | 22 +++++++++++----------- .gitignore | 1 + _posts/2021-09-03-ssh-keys.md | 1 + 3 files changed, 13 insertions(+), 11 deletions(-) create mode 100644 .gitignore diff --git a/.drone.yml b/.drone.yml index 130002e..0bfbc7f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -18,17 +18,17 @@ steps: - bundle install - bundle exec jekyll build -# - name: ssh commands -# image: appleboy/drone-ssh -# settings: -# host: foo.com -# username: root -# port: 22 -# key: -# from_secret: ssh_key -# script: -# - cd ~/Documents/gitea/website -# - git pull +- name: ssh commands + image: appleboy/drone-ssh + settings: + host: homelab + username: + from_secret: homelab_user + port: 22 + key: + from_secret: homelab_pwd + script: + - bash sthopedevupdate - name: discord pull: always diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2297f0f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +sthopegitscript \ No newline at end of file diff --git a/_posts/2021-09-03-ssh-keys.md b/_posts/2021-09-03-ssh-keys.md index 0fc74f5..acfd7de 100644 --- a/_posts/2021-09-03-ssh-keys.md +++ b/_posts/2021-09-03-ssh-keys.md @@ -8,6 +8,7 @@ categories: [ ssh, ssh keys ] comments: true --- + Generate a long random password with: ``` cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1