added deploy script
edited dates to dates the articles were originally written.
This commit is contained in:
parent
5bd850c0a1
commit
5bfdffb4b9
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: "ArchInstall"
|
title: "Archlinux install with btrfs, systemd-boot, and full-disk encryption"
|
||||||
date: 2023-06-22T00:19:51-05:00
|
date: 2021-04-11T19:19:51-05:00
|
||||||
draft: false
|
draft: false
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "CapsToCtrl"
|
title: "Mapping caps lock to ctrl in the TTY"
|
||||||
date: 2023-06-22T01:59:28-05:00
|
date: 2021-05-23T04:59:28-05:00
|
||||||
draft: true
|
draft: false
|
||||||
---
|
---
|
||||||
|
|
||||||
= Caps to Ctrl in tty
|
= Caps to Ctrl in tty
|
||||||
|
|
12
deploy.sh
Executable file
12
deploy.sh
Executable file
|
@ -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
|
Loading…
Reference in a new issue