-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added DBus conf and systemd service files
- Loading branch information
Sri Ramanujam
committed
May 24, 2016
1 parent
69f220f
commit a485d54
Showing
2 changed files
with
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[Unit] | ||
Description=RDP server multiplexer designed to work with virtual machines | ||
|
||
[Service] | ||
Type=dbus | ||
BusName=org.RDPMux.RDPMux | ||
ExecStart=/usr/bin/rdpmux --certificate-dir=/var/lib/rdpmux | ||
User=rdpmux | ||
Group=rdp | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
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,15 @@ | ||
<busconfig> | ||
<policy context="default"> | ||
<allow own="org.RDPMux.RDPMux"/> | ||
<allow send_destination="org.RDPMux.RDPMux" | ||
send_interface="org.RDPMux.ServerWorker"/> | ||
<allow send_destination="org.RDPMux.RDPMux" | ||
send_interface="org.RDPMux.RDPMux"/> | ||
<allow send_destination="org.RDPMux.RDPMux" | ||
send_interface="org.freedesktop.DBus.Properties"/> | ||
<allow send_destination="org.RDPMux.RDPMux" | ||
send_interface="org.freedesktop.DBus.Introspectable"/> | ||
<allow send_destination="org.RDPMux.RDPMux" | ||
send_interface="org.freedesktop.DBus.Peer"/> | ||
</policy> | ||
</busconfig> |