mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 07:55:42 +03:00
Provides interfaces to the Windows service manager and Windows services. These interfaces support creating new Windows services, deleting Windows services, configuring Windows services, and registering/deregistering services with Windows Eventlog. A path helper is included to support expansion of paths using a subset of known folder IDs. A privileged helper is included to check that the process is currently being executed with elevated privileges, which are required for managing Windows services and modifying the registry.
23 lines
581 B
HCL
23 lines
581 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
schema_version = 1
|
|
|
|
project {
|
|
license = "BUSL-1.1"
|
|
copyright_year = 2024
|
|
|
|
header_ignore = [
|
|
"command/asset/*.hcl",
|
|
"command/agent/bindata_assetfs.go",
|
|
"ui/node_modules",
|
|
"pnpm-workspace.yaml",
|
|
"pnpm-lock.yaml",
|
|
"helper/winsvc/strings_*.go",
|
|
|
|
// Enterprise files do not fall under the open source licensing. CE-ENT
|
|
// merge conflicts might happen here, please be sure to put new CE
|
|
// exceptions above this comment and make sure they end with a trailing ","
|
|
]
|
|
}
|