6ecb2c366f
Publish snapshot / snapshot (push) Successful in 1m2s
[fix] default parameter run records parameters in session for replay[fix] remove default parameters for several cubes
18 lines
543 B
JavaScript
18 lines
543 B
JavaScript
import { Manifest } from '@bitsquare/nopy-cube';
|
|
import { z } from 'zod';
|
|
|
|
export default Manifest({
|
|
id: 'service:autostart',
|
|
name: 'Manage systemd service autostart',
|
|
dependencies: () => [],
|
|
schema: z.object({
|
|
APP: z.string().describe('The name of the systemd service (e.g., flintstone)'),
|
|
SERVICE_NAME: z
|
|
.string()
|
|
.optional()
|
|
.describe('Display name for the service')
|
|
.default('Application'),
|
|
AUTOSTART: z.boolean().describe('Should the service be enabled and started?').default(true),
|
|
}),
|
|
});
|