Skip to content

Commit

Permalink
0002487: Installing service fails when a different name is used
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Jan 29, 2016
1 parent 8dfb218 commit 0a0b2a2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -63,7 +63,7 @@ public void install() {
try {
FileWriter writer = new FileWriter(runFile);
BufferedReader reader = new BufferedReader(new InputStreamReader(getClass().getResourceAsStream(
"/" + config.getName().toLowerCase() + ".initd")));
"/symmetricds.initd")));
String line = null;
while ((line = reader.readLine()) != null) {
line = line.replaceAll("\\$\\{wrapper.name}", config.getName());
Expand Down

0 comments on commit 0a0b2a2

Please sign in to comment.