-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix deb metadata in different Cargo.toml
Signed-off-by: gabrik <[email protected]>
- Loading branch information
Showing
3 changed files
with
19 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,35 +59,35 @@ name = "zenoh-flow-daemon" | |
assets = [ | ||
# binary | ||
[ | ||
"/usr/bin/zenoh-flow-daemon", | ||
"755", | ||
"target/release/zenoh-flow-daemon", | ||
"/usr/bin/zenoh-flow-daemon", | ||
"755" | ||
], | ||
# assets | ||
[ | ||
"/etc/zenoh-flow/extensions.d/placeholder", | ||
"644", | ||
"etc/extensions.d/placeholder", | ||
"/etc/zenoh-flow/extensions.d/placeholder", | ||
"644" | ||
], | ||
[ | ||
"/etc/zenoh-flow/runtime.yaml", | ||
"644", | ||
"etc/runtime.yaml", | ||
"/etc/zenoh-flow/runtime.yaml", | ||
"644" | ||
], | ||
[ | ||
"/etc/zenoh-flow/zenoh-daemon.json", | ||
"644", | ||
"etc/zenoh-daemon.json", | ||
"/etc/zenoh-flow/zenoh-daemon.json", | ||
"644" | ||
], | ||
[ | ||
"etc/zenoh-zf-router.json", | ||
"/etc/zenoh-flow/zenoh-zf-router.json", | ||
"644", | ||
"etc/zenoh-zf-router.json", | ||
"644" | ||
], | ||
[ | ||
"/var/zenoh-flow", | ||
"644", | ||
"var/*", | ||
"/var/zenoh-flow", | ||
"644" | ||
], | ||
] | ||
copyright = "2021 - 2023 ZettaScale Technology" | ||
|
@@ -97,6 +97,7 @@ license-file = ["../LICENSE", "0"] | |
maintainer = "ZettaScale Zenoh Team, <[email protected]>" | ||
priority = "optional" | ||
section = "utils" | ||
revision = "" | ||
|
||
conf-files = ["/etc/zenoh-flow/runtime.yaml"] | ||
|
||
|
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 |
---|---|---|
|
@@ -59,9 +59,9 @@ rustc_version = "0.4" | |
assets = [ | ||
# binary | ||
[ | ||
"/usr/lib/libzenoh_plugin_zenoh_flow.so", | ||
"644", | ||
"target/release/libzenoh_plugin_zenoh_flow.so", | ||
"/usr/lib/libzenoh_plugin_zenoh_flow.so", | ||
"644" | ||
], | ||
# assets | ||
[ | ||
|
@@ -75,9 +75,9 @@ assets = [ | |
"644", | ||
], | ||
[ | ||
"etc/zenoh-zf-plugin.json", | ||
"/etc/zenoh-flow/zenoh-zf-plugin.json", | ||
"644", | ||
"etc/zenoh-zf-plugin.json", | ||
], | ||
] | ||
copyright = "2021 - 2023 ZettaScale Technology Inc." | ||
|
@@ -86,3 +86,4 @@ license-file = ["../LICENSE", "0"] | |
maintainer = "[email protected]" | ||
name = "zenoh-plugin-zenoh-flow" | ||
section = "net" | ||
revision = "" |
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 |
---|---|---|
|
@@ -55,7 +55,7 @@ zrpc-macros = { workspace = true } | |
[package.metadata.deb] | ||
assets = [ | ||
# binary | ||
["/usr/bin/zfctl", "755", "target/release/zfctl"], | ||
["target/release/zfctl", "/usr/bin/zfctl", "755"], | ||
# config | ||
[".config/zfctl-zenoh.json", "/etc/zenoh-flow/zfctl-zenoh.json", "644"], | ||
] | ||
|
@@ -66,6 +66,7 @@ license-file = ["../LICENSE", "0"] | |
maintainer = "ZettaScale Zenoh Team, <[email protected]>" | ||
priority = "optional" | ||
section = "utils" | ||
revision = "" | ||
|
||
# RPM package configuration | ||
|
||
|