Skip to content

Commit c0a1859

Browse files
upsuperkornelski
authored andcommitted
Fix duplicate 'conf-files' entry in README
Removed duplicate entry for 'conf-files' in README.
1 parent 2abd39b commit c0a1859

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,14 @@ Everything is optional:
6060
3. `mode`: the third argument is the permissions (octal string) to assign that file.
6161
- **merge-assets**: [See "Merging Assets" section under "Advanced Usage"](#merging-assets)
6262
- **maintainer-scripts**: directory containing `templates`, `preinst`, `postinst`, `prerm`, or `postrm` [scripts](https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html).
63-
- **conf-files**: [List of configuration files](https://www.debian.org/doc/manuals/maint-guide/dother.en.html#conffiles) that the package management system will not overwrite when the package is upgraded.
6463
- **triggers-file**: Path to triggers control file for use by the dpkg trigger facility.
6564
- **changelog**: Path to Debian-formatted [changelog file](https://www.debian.org/doc/manuals/maint-guide/dreq.en.html#changelog).
6665
- **features**: List of [Cargo features](https://doc.rust-lang.org/cargo/reference/manifest.html#the-features-section) to use when building the package.
6766
- **default-features**: whether to use default crate features in addition to the `features` list (default `true`).
6867
- **separate-debug-symbols**: whether to keep debug symbols, but strip them from executables and save them in separate files (default `false`). If it is enabled, then `cargo deb --no-separate-debug-symbols` can be used to suppress extraction of the debug symbols.
6968
- **preserve-symlinks**: Whether to preserve symlinks in the asset files (default `false`).
7069
- **systemd-units**: Optional configuration settings for automated installation of [systemd units](./systemd.md).
71-
- **conf-files**: List of absolute paths of [config files outside `/etc`](https://www.debian.org/doc/manuals/maint-guide/dother.en.html#conffiles) `["/not-etc/app/config"]`. You still need to list the files in `assets` to have them packaged.
70+
- **conf-files**: List of absolute paths of [config files outside `/etc`](https://www.debian.org/doc/manuals/maint-guide/dother.en.html#conffiles) `["/not-etc/app/config"]` that the package management system will not overwrite when the package is upgraded. You still need to list the files in `assets` to have them packaged. Config files in `/etc` are treated as configuration files automatically and don't need to be listed here.
7271
- **profile**: Cargo build profile to use. Defaults to `release`.
7372

7473
### Example of custom `Cargo.toml` additions

0 commit comments

Comments
 (0)