-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://varlink.org/ Co-Authored-By: fossdd <[email protected]>
- Loading branch information
Showing
7 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# | ||
# Source: https://github.com/varlink/com.redhat.system/blob/master/src/com.redhat.system.varlink | ||
# Licenses: | ||
# MIT - https://github.com/varlink/com.redhat.system/blob/master/LICENSE-MIT | ||
# Apache - https://github.com/varlink/com.redhat.system/blob/master/LICENSE-APACHE | ||
# | ||
# | ||
# The Activator Interface allows to configure and maintain a list of available | ||
# interfaces. When an interface is accessed by a client, the activator receives | ||
# the initial message, starts the service which implements this interface, and | ||
# hands over the listening connection with the initial message. | ||
interface com.redhat.system | ||
|
||
type Executable ( | ||
path: string, | ||
user_id: ?int, | ||
group_id: ?int | ||
) | ||
|
||
type Service ( | ||
address: string, | ||
interfaces: [string](), | ||
executable: ?Executable, | ||
activate_at_startup: ?bool | ||
) | ||
|
||
type Config ( | ||
vendor: string, | ||
product: string, | ||
version: string, | ||
url: string, | ||
services: []Service, | ||
systems: [string]string | ||
) | ||
|
||
# Retrieve the current configuration. | ||
method GetConfig() -> (config: Config) | ||
|
||
# Add services to the list of managed services. | ||
method AddServices(services: []Service) -> () | ||
|
||
# Add systems to the list of known systems. | ||
method AddSystems(systems: [string]string) -> () | ||
|
||
# Remove and stop services from the list of manages services. | ||
method RemoveServices(services: []Service) -> () | ||
|
||
# Remove and stop services from the list of manages services. | ||
method RemoveSystems(systems: []string) -> () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule language-varlink
added at
dcc59c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
type: grammar | ||
name: language-varlink | ||
license: mit | ||
--- | ||
|
||
MIT License | ||
|
||
Copyright (c) 2018 Harald Hoyer | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |