From a33374f204009f66de9c270b5fb2a5b76dac2c75 Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Mon, 10 May 2021 16:05:58 +0200 Subject: [PATCH] Remove old deployment-related Nix shell files and scripts. --- deploy-seafile | 8 -------- deploy-uftp | 7 ------- shell-seafile.nix | 5 ----- shell-uftp.nix | 8 -------- 4 files changed, 28 deletions(-) delete mode 100755 deploy-seafile delete mode 100755 deploy-uftp delete mode 100644 shell-seafile.nix delete mode 100644 shell-uftp.nix diff --git a/deploy-seafile b/deploy-seafile deleted file mode 100755 index ca46e31..0000000 --- a/deploy-seafile +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# Deploys my site to ibisc.univ-evry.fr/~sivanov/ via Seafile -# synchronisation. -# -# The Seafile client must be running for the update to actually take -# effect. -cp -ar www/* ~/tmp/Seafile/ivanov-page-perso/ diff --git a/deploy-uftp b/deploy-uftp deleted file mode 100755 index c509809..0000000 --- a/deploy-uftp +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -# -# Deploys my site to ibisc.univ-evry.fr/~sivanov/ -# -# This command must be run from within the lab network. - -lftp -e "mirror --delete-first -R www public_html; bye" sftp://sivanov:DUMMY@172.31.8.95 diff --git a/shell-seafile.nix b/shell-seafile.nix deleted file mode 100644 index 358eeca..0000000 --- a/shell-seafile.nix +++ /dev/null @@ -1,5 +0,0 @@ -with import {}; -stdenv.mkDerivation { - name = "seafile"; - buildInputs = [ seafile-shared ]; -} diff --git a/shell-uftp.nix b/shell-uftp.nix deleted file mode 100644 index b088aa0..0000000 --- a/shell-uftp.nix +++ /dev/null @@ -1,8 +0,0 @@ -with import {}; -stdenv.mkDerivation { - name = "lftp"; - buildInputs = [ lftp ]; - shellHook = '' - echo NOTE: Deploying to ibisc.univ-evry.fr is only possible from inside the lab network. - ''; -}