initial transfer

This commit is contained in:
Benjamin Diedrichsen
2026-07-27 13:09:00 +02:00
parent 9f25d48dc2
commit 736c01216a
191 changed files with 17622 additions and 136 deletions
+16
View File
@@ -0,0 +1,16 @@
import { z } from 'zod';
import { cubes, uniqid } from '@bitstack/nopy';
/**
* Manifest for the admin:hostname cube.
* This cube allows for setting and persistently changing the system's hostname.
*/
export default cubes.Manifest({
id: 'admin:hostname',
name: 'Permanently change the hostname',
dependencies: () => [],
schema: z.object({
HOSTNAME: z.string().min(1).max(64).describe('The new hostname for the target host')
.default(`host-${uniqid()}`),
})
});