| import type { DaemonLifecycleOptions } from "./types.js"; |
| import { resolveGatewayService } from "../../daemon/service.js"; |
| import { |
| runServiceRestart, |
| runServiceStart, |
| runServiceStop, |
| runServiceUninstall, |
| } from "./lifecycle-core.js"; |
| import { renderGatewayServiceStartHints } from "./shared.js"; |
|
|
| export async function runDaemonUninstall(opts: DaemonLifecycleOptions = {}) { |
| return await runServiceUninstall({ |
| serviceNoun: "Gateway", |
| service: resolveGatewayService(), |
| opts, |
| stopBeforeUninstall: true, |
| assertNotLoadedAfterUninstall: true, |
| }); |
| } |
|
|
| export async function runDaemonStart(opts: DaemonLifecycleOptions = {}) { |
| return await runServiceStart({ |
| serviceNoun: "Gateway", |
| service: resolveGatewayService(), |
| renderStartHints: renderGatewayServiceStartHints, |
| opts, |
| }); |
| } |
|
|
| export async function runDaemonStop(opts: DaemonLifecycleOptions = {}) { |
| return await runServiceStop({ |
| serviceNoun: "Gateway", |
| service: resolveGatewayService(), |
| opts, |
| }); |
| } |
|
|
| |
| |
| |
| |
| |
| export async function runDaemonRestart(opts: DaemonLifecycleOptions = {}): Promise<boolean> { |
| return await runServiceRestart({ |
| serviceNoun: "Gateway", |
| service: resolveGatewayService(), |
| renderStartHints: renderGatewayServiceStartHints, |
| opts, |
| }); |
| } |
|
|