-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add toml-to-toml converter and fix test-tomls
- Loading branch information
Jean-Louis Fuchs
committed
May 30, 2024
1 parent
b878fce
commit b061daf
Showing
16 changed files
with
282 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
[mirror.fakerepo01] | ||
max-tries = 2 | ||
archive = "http://localhost:3123/fakerepo01" | ||
gpg-keys = [ "2841988729C7F3FF",] | ||
gpg-keys = [ | ||
"2841988729C7F3FF", | ||
] | ||
components = "main" | ||
distribution = "main" | ||
|
||
[mirror.fakerepo02] | ||
archive = "http://localhost:3123/fakerepo02" | ||
gpg-keys = [ "2841988729C7F3FF",] | ||
gpg-keys = [ | ||
"2841988729C7F3FF", | ||
] | ||
components = "main" | ||
distribution = "main" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
[mirror.fakerepo03] | ||
archive = "http://localhost:3123/fakerepo03" | ||
gpg-keys = [ "EC54D33E5B5EBE98",] | ||
gpg-urls = [ "http://localhost:3123/keys/test02.key",] | ||
gpg-keys = [ | ||
"EC54D33E5B5EBE98", | ||
] | ||
gpg-urls = [ | ||
"http://localhost:3123/keys/test02.key", | ||
] | ||
components = "main" | ||
distribution = "main" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,31 @@ | ||
[mirror.fakerepo01] | ||
max-tries = 2 | ||
archive = "http://localhost:3123/fakerepo01" | ||
gpg-keys = [ "2841988729C7F3FF",] | ||
gpg-keys = [ | ||
"2841988729C7F3FF", | ||
] | ||
components = "main" | ||
distribution = "main" | ||
|
||
[mirror.fakerepo02] | ||
archive = "http://localhost:3123/fakerepo02" | ||
gpg-keys = [ "2841988729C7F3FF",] | ||
gpg-keys = [ | ||
"2841988729C7F3FF", | ||
] | ||
components = "main" | ||
distribution = "main" | ||
|
||
[snapshot."fakerepo01-%T"] | ||
mirror = "fakerepo01" | ||
timestamp = { time = "00:00" } | ||
|
||
[snapshot."fakerepo02-%T"] | ||
mirror = "fakerepo02" | ||
|
||
[snapshot."fakerepo01-%T".timestamp] | ||
time = "00:00" | ||
|
||
[snapshot."fakerepo02-%T".timestamp] | ||
time = "00:00" | ||
repeat-weekly = "sat" | ||
timestamp = { time = "00:00", repeat-weekly = "sat" } | ||
|
||
[snapshot."superfake-%T"] | ||
merge = [ | ||
{ name = "fakerepo01-%T", timestamp = "previous" }, | ||
{ name = "fakerepo02-%T", timestamp = 0 }, | ||
] | ||
|
||
[snapshot."superfake-%T".timestamp] | ||
time = "00:00" | ||
timestamp = { time = "00:00" } |
Oops, something went wrong.