enable every csc-sync-debian

This commit is contained in:
Andrew Wang 2022-07-24 19:08:15 +00:00
parent 9f2cce23c8
commit b3d4abd885
3 changed files with 2 additions and 16 deletions

View File

@ -1,5 +1,5 @@
## Status of moving from merlin to merlin-go ## Status of moving from merlin to merlin-go
- [ ] debian < - [x] debian
- [ ] ubuntu < - [ ] ubuntu <
- [ ] ubuntu-ports < - [ ] ubuntu-ports <
- [ ] linuxmint-packages < - [ ] linuxmint-packages <

View File

@ -14,8 +14,6 @@ zfssync_log_dir = /home/mirror-go/merlin/log-zfssync
sock_path = /mirror/merlin/run/merlin-go.sock sock_path = /mirror/merlin/run/merlin-go.sock
[debian] [debian]
dry_run = true
verbose = true
sync_type = csc-sync-debian sync_type = csc-sync-debian
frequency = bi-hourly frequency = bi-hourly
local_dir = debian local_dir = debian
@ -23,8 +21,6 @@ rsync_host = debian.mirror.rafal.ca
rsync_dir = debian rsync_dir = debian
[ubuntu] [ubuntu]
dry_run = true
verbose = true
sync_type = csc-sync-debian sync_type = csc-sync-debian
frequency = bi-hourly frequency = bi-hourly
local_dir = ubuntu local_dir = ubuntu
@ -33,8 +29,6 @@ rsync_dir = ubuntu
trace_host = drescher.canonical.com trace_host = drescher.canonical.com
[ubuntu-ports] [ubuntu-ports]
dry_run = true
verbose = true
sync_type = csc-sync-debian sync_type = csc-sync-debian
frequency = bi-hourly frequency = bi-hourly
local_dir = ubuntu-ports local_dir = ubuntu-ports
@ -43,8 +37,6 @@ rsync_dir = ubuntu-ports
trace_host = drescher.canonical.com trace_host = drescher.canonical.com
[linuxmint-packages] [linuxmint-packages]
dry_run = true
verbose = true
sync_type = csc-sync-debian sync_type = csc-sync-debian
frequency = bi-hourly frequency = bi-hourly
local_dir = linuxmint-packages local_dir = linuxmint-packages
@ -52,8 +44,6 @@ rsync_host = rsync-packages.linuxmint.com
rsync_dir = packages rsync_dir = packages
[debian-multimedia] [debian-multimedia]
dry_run = true
verbose = true
sync_type = csc-sync-debian sync_type = csc-sync-debian
frequency = bi-hourly frequency = bi-hourly
local_dir = debian-multimedia local_dir = debian-multimedia
@ -61,8 +51,6 @@ rsync_host = www.deb-multimedia.org
rsync_dir = deb rsync_dir = deb
[debian-backports] [debian-backports]
dry_run = true
verbose = true
sync_type = csc-sync-debian sync_type = csc-sync-debian
frequency = bi-hourly frequency = bi-hourly
local_dir = debian-backports local_dir = debian-backports
@ -70,8 +58,6 @@ rsync_host = debian.mirror.rafal.ca
rsync_dir = debian-backports rsync_dir = debian-backports
[debian-security] [debian-security]
dry_run = true
verbose = true
sync_type = csc-sync-debian sync_type = csc-sync-debian
frequency = twice-hourly frequency = twice-hourly
local_dir = debian-security local_dir = debian-security

View File

@ -73,7 +73,7 @@ func cscTraceDebianDiff(repo *config.Repo, newTime string) bool {
statFile := func(file string) int64 { statFile := func(file string) int64 {
f, err := os.Stat(file) f, err := os.Stat(file)
if err != nil { if err != nil {
repo.Logger.Debug(err.Error()) repo.Logger.Debug("Error while trying to stat file: " + file)
return 0 return 0
} }