-
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.
Fixed ICE-6630 - use systemd scripts on Ubuntu 15.04
- Loading branch information
Showing
10 changed files
with
69 additions
and
18 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
File renamed without changes.
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,19 @@ | ||
# | ||
# Copyright (c) 2007-2015 ZeroC, Inc. All rights reserved. | ||
# | ||
|
||
[Unit] | ||
Description=The Glacier2 router daemon.\ | ||
Glacier2 is the firewall traversal service for the Internet\ | ||
Communications Engine (Ice). | ||
Documentation=man:glacier2router(1) | ||
Documentation=https://doc.zeroc.com/display/Ice/Getting+Started+with+Glacier2 | ||
After=syslog.target network.target icegridregistry.service icegridnode.service | ||
|
||
[Service] | ||
ExecStart=/usr/bin/glacier2router --Ice.Config=/etc/glacier2router.conf | ||
KillMode=process | ||
User=ice | ||
|
||
[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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
etc/init.d/glacier2router | ||
|
||
etc/glacier2router.conf | ||
|
||
usr/bin/glacier2router | ||
|
File renamed without changes.
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,20 @@ | ||
# | ||
# Copyright (c) 2007-2015 ZeroC, Inc. All rights reserved. | ||
# | ||
|
||
[Unit] | ||
Description=The IceGrid node daemon.\ | ||
IceGrid is the server deployment and monitoring for the Internet\ | ||
Communications Engine (Ice). An IceGrid domain consists of one master\ | ||
registry, zero or more slave registries, and zero or more IceGrid nodes. | ||
Documentation=man:icegridnode(1) | ||
Documentation=https://doc.zeroc.com/display/Ice/icegridnode | ||
After=syslog.target network.target icegridregistry.service | ||
|
||
[Service] | ||
ExecStart=/usr/bin/icegridnode --Ice.Config=/etc/icegridnode.conf | ||
KillMode=process | ||
User=ice | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
File renamed without changes.
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,21 @@ | ||
# | ||
# Copyright (c) 2007-2015 ZeroC, Inc. All rights reserved. | ||
# | ||
|
||
[Unit] | ||
Description=The IceGrid registry daemon.\ | ||
IceGrid is the server deployment and monitoring for the Internet\ | ||
Communications Engine (Ice). An IceGrid domain consists of one master\ | ||
registry, zero or more slave registries, and zero or more IceGrid nodes. | ||
Documentation=man:icegridregistry(1) | ||
Documentation=https://doc.zeroc.com/display/Ice/icegridregistry | ||
Before=icegridnode.service | ||
After=syslog.target network.target | ||
|
||
[Service] | ||
ExecStart=/usr/bin/icegridregistry --Ice.Config=/etc/icegridregistry.conf | ||
KillMode=process | ||
User=ice | ||
|
||
[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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
etc/init.d/icegridnode | ||
etc/init.d/icegridregistry | ||
|
||
etc/icegridnode.conf | ||
etc/icegridregistry.conf | ||
|
||
|