Skip to content

Commit e02a385

Browse files
committed
Rename satorictl => satori-storage-cli
1 parent e068fe1 commit e02a385

25 files changed

+29
-29
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ jobs:
6060
package:
6161
- satori-agent
6262
- satori-archiver
63-
- satorictl
6463
- satori-event-processor
64+
- satori-storage-cli
6565

6666
steps:
6767
- uses: actions/checkout@v4

Cargo.lock

+17-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ members = [
88

99
"agent",
1010
"archiver",
11-
"ctl",
1211
"event-processor",
12+
"storage-cli",
1313

1414
"integration-tests",
1515
]

flake.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
packages =
7070
import ./agent {inherit pkgs rustPlatform version gitRevision nativeBuildInputs buildInputs;}
7171
// import ./archiver {inherit pkgs rustPlatform version gitRevision nativeBuildInputs buildInputs;}
72-
// import ./ctl {inherit pkgs rustPlatform version gitRevision nativeBuildInputs buildInputs;}
73-
// import ./event-processor {inherit pkgs rustPlatform version gitRevision nativeBuildInputs buildInputs;};
72+
// import ./event-processor {inherit pkgs rustPlatform version gitRevision nativeBuildInputs buildInputs;}
73+
// import ./storage-cli {inherit pkgs rustPlatform version gitRevision nativeBuildInputs buildInputs;};
7474
}
7575
);
7676
}

ctl/Cargo.toml storage-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "satorictl"
2+
name = "satori-storage-cli"
33
license.workspace = true
44
version.workspace = true
55
edition.workspace = true

ctl/default.nix storage-cli/default.nix

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
buildInputs,
77
nativeBuildInputs,
88
}: rec {
9-
satorictl = rustPlatform.buildRustPackage {
10-
pname = "satorictl";
9+
satori-storage-cli = rustPlatform.buildRustPackage {
10+
pname = "satori-storage-cli";
1111
version = version;
1212

1313
src = ./..;
@@ -16,16 +16,16 @@
1616
nativeBuildInputs = nativeBuildInputs;
1717
buildInputs = buildInputs;
1818

19-
cargoBuildFlags = ["--package satorictl"];
19+
cargoBuildFlags = ["--package satori-storage-cli"];
2020

2121
GIT_REVISION = gitRevision;
2222

2323
# No need to do tests here, testing should have already been done earlier in CI pipeline
2424
doCheck = false;
2525
};
2626

27-
satorictl-container-image = pkgs.dockerTools.buildImage {
28-
name = "satorictl";
27+
satori-storage-cli-container-image = pkgs.dockerTools.buildImage {
28+
name = "satori-storage-cli";
2929
tag = "latest";
3030
created = "now";
3131

@@ -36,7 +36,7 @@
3636
};
3737

3838
config = {
39-
Entrypoint = ["${pkgs.tini}/bin/tini" "--" "${satorictl}/bin/satorictl"];
39+
Entrypoint = ["${pkgs.tini}/bin/tini" "--" "${satori-storage-cli}/bin/satori-storage-cli"];
4040
Env = [
4141
"SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
4242
];
File renamed without changes.
File renamed without changes.

ctl/src/cli/explore/app/mod.rs storage-cli/src/cli/explore/app/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ fn render_event_info_pane<B: Backend>(f: &mut Frame<B>, app: &mut App, area: Rec
200200

201201
fn render_app_info_pane<B: Backend>(f: &mut Frame<B>, _: &mut App, area: Rect) {
202202
let title = Line::from(vec![
203-
Span::styled("satorictl", Style::default().add_modifier(Modifier::BOLD)),
203+
Span::styled("Satori storage explorer", Style::default().add_modifier(Modifier::BOLD)),
204204
Span::raw(" "),
205205
Span::raw(satori_common::version!()),
206206
]);
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)