Browse Source

Copy from deploy local script with password prompt

DricomDragon 5 năm trước cách đây
mục cha
commit
5037d8351d
1 tập tin đã thay đổi với 19 bổ sung0 xóa
  1. 19 0
      undeployed/scripts/deploy-to-ovh.sh

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

@@ -0,0 +1,19 @@
+#!/bin/bash
+# Deploy to www.jovian-hersemeule.eu
+
+gitRoot=`git rev-parse --show-toplevel`
+from="$gitRoot/web/"
+host='ftp.cluster021.hosting.ovh.net'
+port='21'
+
+bash "$gitRoot/undeployed/scripts/deploy/up-date.sh"
+bash "$gitRoot/undeployed/scripts/deploy/up-version.sh"
+
+read -s -p "[deploy] password for $host: " password
+echo
+
+# ftp operation
+echo $password
+
+git checkout -- "$gitRoot/web/include/generated/date.txt"
+git checkout -- "$gitRoot/web/include/generated/version.txt"