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. - ''; -}