Remove old deployment-related Nix shell files and scripts.

This commit is contained in:
Sergiu Ivanov 2021-05-10 16:05:58 +02:00
parent a6177eb65d
commit a33374f204
4 changed files with 0 additions and 28 deletions

View File

@ -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/

View File

@ -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

View File

@ -1,5 +0,0 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "seafile";
buildInputs = [ seafile-shared ];
}

View File

@ -1,8 +0,0 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "lftp";
buildInputs = [ lftp ];
shellHook = ''
echo NOTE: Deploying to ibisc.univ-evry.fr is only possible from inside the lab network.
'';
}