mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 16:43:35 +02:00
2020-08-19 Fred Gleason <fredg@paravelsystems.com>
* Added a 'STATIONS.SSH_IDENTITY_FILE' field to the database. * Added a 'RECORDINGS.URL_USE_ID_FILE' field to the database. * Added a 'FEEDS.PURGE_USE_ID_FILE' field to the database. * Incremented the database version to 333. * Added 'RDStation::sshIdentityFile()' and 'RDStation::setSshIdentityFile()' methods. * Added 'RDRecording::urlUseIdFile()' and 'RDRecording::setUrlUseIdFile()' methods. * Added 'RDFeed::purgeUseIdFile()' and 'RDFeed::setPurgeUseIdFile()' methods. * Added a 'SSH Ident. File' control to the 'Host' dialog in rdadmin(1). * Added an 'Authenticate with local identity file' checkbox to the 'Feed' dialog in rdadmin(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -212,7 +212,10 @@ void MainObject::RunDownload(CatchEvent *evt)
|
||||
url_username=RD_ANON_FTP_USERNAME;
|
||||
url_password=QString(RD_ANON_FTP_PASSWORD)+"-"+VERSION;
|
||||
}
|
||||
switch((conv_err=conv->runDownload(url_username,url_password,
|
||||
//
|
||||
// FIXME: Finish implementing public key support!
|
||||
//
|
||||
switch((conv_err=conv->runDownload(url_username,url_password,"",false,
|
||||
rda->config()->logXloadDebugData()))) {
|
||||
case RDDownload::ErrorOk:
|
||||
rda->syslog(LOG_INFO,"finished download of %s to %s, id=%d",
|
||||
@@ -324,7 +327,10 @@ void MainObject::RunUpload(CatchEvent *evt)
|
||||
url_username=RD_ANON_FTP_USERNAME;
|
||||
url_password=QString(RD_ANON_FTP_PASSWORD)+"-"+VERSION;
|
||||
}
|
||||
switch((conv_err=conv->runUpload(url_username,url_password,
|
||||
//
|
||||
// FIXME: Finish implementing ssh(1) identity keys!
|
||||
//
|
||||
switch((conv_err=conv->runUpload(url_username,url_password,"",false,
|
||||
rda->config()->logXloadDebugData()))) {
|
||||
case RDUpload::ErrorOk:
|
||||
catch_connect->setExitCode(evt->id(),RDRecording::Ok,tr("Ok"));
|
||||
|
Reference in New Issue
Block a user