From 5bfdffb4b9ba1bc1d38296e61ad323db9529e5b9 Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Thu, 22 Jun 2023 16:28:06 -0500 Subject: [PATCH] added deploy script edited dates to dates the articles were originally written. --- content/posts/archInstall.adoc | 4 ++-- content/posts/capsToCtrl.adoc | 6 +++--- deploy.sh | 12 ++++++++++++ hugo.toml | 4 ++-- 4 files changed, 19 insertions(+), 7 deletions(-) create mode 100755 deploy.sh diff --git a/content/posts/archInstall.adoc b/content/posts/archInstall.adoc index 099634b..63e5c72 100644 --- a/content/posts/archInstall.adoc +++ b/content/posts/archInstall.adoc @@ -1,6 +1,6 @@ --- -title: "ArchInstall" -date: 2023-06-22T00:19:51-05:00 +title: "Archlinux install with btrfs, systemd-boot, and full-disk encryption" +date: 2021-04-11T19:19:51-05:00 draft: false --- diff --git a/content/posts/capsToCtrl.adoc b/content/posts/capsToCtrl.adoc index fd1b413..04a4df5 100644 --- a/content/posts/capsToCtrl.adoc +++ b/content/posts/capsToCtrl.adoc @@ -1,7 +1,7 @@ --- -title: "CapsToCtrl" -date: 2023-06-22T01:59:28-05:00 -draft: true +title: "Mapping caps lock to ctrl in the TTY" +date: 2021-05-23T04:59:28-05:00 +draft: false --- = Caps to Ctrl in tty diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..7c5746e --- /dev/null +++ b/deploy.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +USER=root +HOST=10.10.1.5 +DIR=/srv/gabevenberg + +hugo +rsync -rvz --delete public/ ${USER}@${HOST}:${DIR} # this will delete everything on the server that's not in the local public folder + +exit 0 diff --git a/hugo.toml b/hugo.toml index 8c03f9d..5a2f7c7 100644 --- a/hugo.toml +++ b/hugo.toml @@ -1,6 +1,6 @@ -baseURL = 'http://example.org/' +baseURL = 'https://gabevenberg.com/' languageCode = 'en-us' -title = 'My New Hugo Site' +title = 'Gabe Venberg' theme = 'poison' [params]