diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-05-22 21:27:18 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-05-22 21:27:18 +0200 |
commit | 5a2c2083882496b9558e63d1ce88aa64b2c1aad8 (patch) | |
tree | e797edf9052776b3269b7cc04e8a74c8618775ef | |
parent | 15175c82eeabec62a022690c140d29f65504d41a (diff) |
put: add nocturn
-rw-r--r-- | etc/functions/put | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/etc/functions/put b/etc/functions/put index 509f326..363a6ef 100644 --- a/etc/functions/put +++ b/etc/functions/put @@ -18,6 +18,14 @@ if [[ -z ${commands[curl]} ]]; then print -P "%B%F{yellow}curl not present, won't be able to check upload success%f%b" fi +function put_nocturne { + hostname='nocturne.derf0.net' + ssh_name='nocturne' + target_dir='web/default/out/tmp' + server_prefix='https://nocturne.derf0.net/tmp/' + max_size=0 +} + function put_arclight { hostname='arclight.derf0.net' ssh_name='arclight' @@ -34,7 +42,7 @@ function put_chaosdorf { max_size=0 } -hosts=(arclight chaosdorf) +hosts=(nocturne arclight chaosdorf) while [[ ${1} == -* ]] { case ${1} in |