Webmin 1.932 released

5 posts / 0 new
Last post
#1 Fri, 10/18/2019 - 00:31
Joe
Joe's picture

Webmin 1.932 released

Howdy all,

Webmin version 1.932 has been released for all repositories. This is a minor bugfix release, primarily to fix Dropbox backup issues that started happening a couple of weeks ago, but it has a few other bugfixes, as well.

Cheers,

Joe

Fri, 10/18/2019 - 06:23
Jfro

Thanks. Don't know if you know here in releases you can't find this version yet.?

https://github.com/webmin/webmin/releases

Tue, 10/22/2019 - 04:45
CrankyCronos

No joy on the dropbox fix (for me anyway).

" Uploading archive to Dropbox .. .. upload failed! Error in call to API function "files/upload": Bad HTTP "Content-Type" header: "application/x-gzip". Expecting one of "application/octet-stream", "text/plain; charset=dropbox-cors-hack". "

Joseph Dobransky

Mon, 11/04/2019 - 18:35
dataforxyz

Having the same issue here. Uploading archive to Dropbox .. .. upload failed! Error in call to API function "files/upload": Bad HTTP "Content-Type" header: "application/x-gzip". Expecting one of "application/octet-stream", "text/plain; charset=dropbox-cors-hack".

Tue, 11/05/2019 - 02:04
CrankyCronos

I ended up using the programs provided by dropbox to "mirror" my dropbox locally, and writing a cron script. I run it weekly. YMMV

#! /bin/bash

PATH=$PATH:$(sed -n '/PATH=/s/^.*=// ; s/"//gp' '/etc/environment')
DATE=`date +%Y-%m-%d`
DROPBOX_DIR="/root/Dropbox/Apps/virtualmin/backups"
BACKUP_DIR="/backup"

mkdir -p $BACKUP_DIR/$DATE
virtualmin backup-domain --dest $BACKUP_DIR/$DATE --all-domains --all-features --newformat --all-virtualmin
mv $BACKUP_DIR/* $DROPBOX_DIR
find $DROPBOX_DIR/* -type d -ctime +23 | xargs rm -rf

Joseph Dobransky

Topic locked