You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/10/10 16:50:43 UTC

[GitHub] [airflow] RachitSharma2001 commented on a diff in pull request #26974: Add FTP Operator

RachitSharma2001 commented on code in PR #26974:
URL: https://github.com/apache/airflow/pull/26974#discussion_r991485018


##########
scripts/docker/entrypoint_ci.sh:
##########
@@ -221,6 +221,12 @@ if [[ ${SKIP_ENVIRONMENT_INITIALIZATION=} != "true" ]]; then
         ssh-keyscan -H localhost >> ~/.ssh/known_hosts 2>/dev/null
     fi
 
+    sudo apt-get update && sudo apt-get install -y vsftpd
+    mkdir /ftphome
+    sudo chown airflow:airflow /ftphome
+    echo "write_enable=YES" >> /etc/vsftpd.conf
+    sudo service vsftpd restart

Review Comment:
   Here I pull up the local FTP server for testing. I am not sure if this is the appropriate place to do this, but I did not find any other part of the codebase where this should be done. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org