github.com/kubri/kubri@v0.5.1-0.20240317001612-bda2aaef967e/website/docs/configuration/generators/apt.md (about) 1 --- 2 sidebar_position: 0 3 --- 4 5 # APT Repository 6 7 Generate and publish an APT repository from your `.deb` files. 8 9 ## Configuration 10 11 ### `disabled` 12 13 - Type: `boolean` 14 - Default: `false` 15 16 Disable APT. 17 18 ### `folder` 19 20 - Type: `string` 21 - Default: `apt` 22 23 Path to the directory on your target. 24 25 ### `compress` 26 27 - Type: `string[]` 28 - Default: `[gzip, xz]` 29 - Allowed Values: `gzip`, `bzip2`, `xz`, `lzma`, `zstd` 30 31 Compression algorithms to compress your package metadata with. 32 33 ## Example 34 35 ```yaml 36 apt: 37 folder: deb 38 compress: 39 - gzip 40 - bzip2 41 - xz 42 - lzma 43 - zstd 44 ```