瀏覽代碼

Make the ftp script work

Dirty but working version.
DricomDragon 5 年之前
父節點
當前提交
1b71bb8fc4
共有 1 個文件被更改,包括 19 次插入3 次删除
  1. 19 3
      undeployed/scripts/deploy-to-ovh.sh

+ 19 - 3
undeployed/scripts/deploy-to-ovh.sh

@@ -1,19 +1,35 @@
 #!/bin/bash
 # Deploy to www.jovian-hersemeule.eu
 
+echo 'Deploy website to OVH'
+
 gitRoot=`git rev-parse --show-toplevel`
-from="$gitRoot/web/"
+origin="$gitRoot/web"
 host='ftp.cluster021.hosting.ovh.net'
+user='jovianhedk'
 port='21'
+dest='www'
 
 bash "$gitRoot/undeployed/scripts/deploy/up-date.sh"
 bash "$gitRoot/undeployed/scripts/deploy/up-version.sh"
 
-read -s -p "[deploy] password for $host: " password
+cd $origin
+files=`echo *.php include/*.php projets/*.php include/css/*.css include/css/custom/*.css include/js/*.js include/images/*.png include/images/*.jpg include/generated/*.txt`
+echo 'Files to be sent :'
+echo "$files"
+
+echo "FTP to $host"
+read -s -p "[deploy] password for $user: " password
 echo
 
 # ftp operation
-echo $password
+ftp -vin $host $port<<EOT
+user $user $password
+nmap \$1 $dest/\$1
+mput $files
+bye
+EOT
 
+# Cancel dump mofifications
 git checkout -- "$gitRoot/web/include/generated/date.txt"
 git checkout -- "$gitRoot/web/include/generated/version.txt"