mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-15 17:11:33 +01:00
2026-01-13 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdautoback(8) that would generate an incorrect 'AudioStorage=' metadata value if the audio store contained sub directories. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -25117,3 +25117,7 @@
|
||||
2026-01-13 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in rdautoback(8) that threw an exception when operating
|
||||
with a database version less than 353.
|
||||
2026-01-13 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in rdautoback(8) that would generate an incorrect
|
||||
'AudioStorage=' metadata value if the audio store contained
|
||||
sub directories.
|
||||
|
||||
@@ -97,7 +97,7 @@ def BackupMountpoint(mntpt):
|
||||
else:
|
||||
f.write('RealmName=NULL\n')
|
||||
db.close()
|
||||
with os.popen('du -h '+mntpt+'/snd',mode='r') as f1:
|
||||
with os.popen('du -hd 0 '+mntpt+'/snd',mode='r') as f1:
|
||||
values=f1.read().split('\t')
|
||||
f.write('AudioStorage='+values[0]+'\n')
|
||||
f1.close()
|
||||
|
||||
Reference in New Issue
Block a user