@mutmutco/hub 3.137.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/dist/index.cjs +2123 -0
- package/package.json +33 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @mutmutco/hub
|
|
2
|
+
|
|
3
|
+
`mmi-hub` is the public MMI maintenance command. It converges the current CLI and every host surface present on the machine through the release-gated Hub bill of materials, and owns the one hourly schedule that keeps them current.
|
|
4
|
+
|
|
5
|
+
Published from [mutmutco/MMI-Hub](https://github.com/mutmutco/MMI-Hub).
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @mutmutco/hub
|
|
11
|
+
mmi-hub install
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
`install` converges immediately, then enables hourly automatic updates by default.
|
|
15
|
+
|
|
16
|
+
## Commands
|
|
17
|
+
|
|
18
|
+
```text
|
|
19
|
+
mmi-hub status read versions, schedule, last run, and actionable failures (default)
|
|
20
|
+
mmi-hub install converge now and enable hourly automatic updates
|
|
21
|
+
mmi-hub update [--dry-run] converge immediately
|
|
22
|
+
mmi-hub autoupdate on|off idempotently enable or disable scheduling; off keeps installed tools
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
`status` and the no-argument command are read-only. They never install, heal, create state, change the schedule, or clean a repository.
|
|
26
|
+
|
|
27
|
+
State remains under `~/.mmi/updater` (override with `$MMI_UPDATER_HOME`) during the compatibility window so existing journals and the **MMI Fleet Updater** Windows task migrate in place.
|
|
28
|
+
|
|
29
|
+
The deprecated `@mutmutco/updater` package and `mmi-updater` binary remain as a one-window warning wrapper. Old `reconcile`/`run`, `install`, `uninstall`, and `verify`/`stamp` calls map to `mmi-hub update`, `install`, `autoupdate off`, and `status` respectively.
|