84 lines
4.5 KiB
Diff
84 lines
4.5 KiB
Diff
|
Index: simias-1.8.3.9328.1+dfsg/src/server/setup/SimiasServerSetup.cs
|
||
|
===================================================================
|
||
|
--- simias-1.8.3.9328.1+dfsg.orig/src/server/setup/SimiasServerSetup.cs 2010-04-24 10:18:57.000000000 -0400
|
||
|
+++ simias-1.8.3.9328.1+dfsg/src/server/setup/SimiasServerSetup.cs 2010-04-24 10:20:54.524806732 -0400
|
||
|
@@ -83,7 +83,7 @@
|
||
|
private static string MasterAddressKey = "MasterAddress";
|
||
|
private static string PublicAddressKey = "PublicAddress";
|
||
|
private static string PrivateAddressKey = "PrivateAddress";
|
||
|
- private static string oldConfigPath = "/var/lib/wwwrun/.local/share/simias/";
|
||
|
+ private static string oldConfigPath = "/var/lib/apache/.local/share/simias/";
|
||
|
|
||
|
private static string TemplateScriptFile = "simias-server";
|
||
|
|
||
|
@@ -306,12 +306,12 @@
|
||
|
/// <summary>
|
||
|
/// Apache User.
|
||
|
/// </summary>
|
||
|
- public Option apacheUser = new Option("apache-user", "Apache User", "Apache User", false, "wwwrun");
|
||
|
+ public Option apacheUser = new Option("apache-user", "Apache User", "Apache User", false, "apache");
|
||
|
|
||
|
/// <summary>
|
||
|
/// Apache Group.
|
||
|
/// </summary>
|
||
|
- public Option apacheGroup = new Option("apache-group", "Apache Group", "Apache Group", false, "www");
|
||
|
+ public Option apacheGroup = new Option("apache-group", "Apache Group", "Apache Group", false, "apache");
|
||
|
|
||
|
/// <summary>
|
||
|
/// Prompt for options.
|
||
|
Index: simias-1.8.3.9328.1+dfsg/src/server/setup/iFolderWebSetup.cs
|
||
|
===================================================================
|
||
|
--- simias-1.8.3.9328.1+dfsg.orig/src/server/setup/iFolderWebSetup.cs 2010-04-24 10:18:57.000000000 -0400
|
||
|
+++ simias-1.8.3.9328.1+dfsg/src/server/setup/iFolderWebSetup.cs 2010-04-24 10:20:54.524806732 -0400
|
||
|
@@ -99,12 +99,12 @@
|
||
|
/// <summary>
|
||
|
/// Apache User.
|
||
|
/// </summary>
|
||
|
- public Option apacheUser = new Option("apache-user", "Apache User", "Apache User to use for providing permissions", false, "wwwrun");
|
||
|
+ public Option apacheUser = new Option("apache-user", "Apache User", "Apache User to use for providing permissions", false, "apache");
|
||
|
|
||
|
/// <summary>
|
||
|
/// Apache Group.
|
||
|
/// </summary>
|
||
|
- public Option apacheGroup = new Option("apache-group", "Apache Group", "Apache Group to use for providing permissions", false, "www");
|
||
|
+ public Option apacheGroup = new Option("apache-group", "Apache Group", "Apache Group to use for providing permissions", false, "apache");
|
||
|
|
||
|
/// <summary>
|
||
|
/// The port to connect on.
|
||
|
Index: simias-1.8.3.9328.1+dfsg/src/server/setup/iFolderAdminSetup.cs
|
||
|
===================================================================
|
||
|
--- simias-1.8.3.9328.1+dfsg.orig/src/server/setup/iFolderAdminSetup.cs 2010-04-24 10:18:57.000000000 -0400
|
||
|
+++ simias-1.8.3.9328.1+dfsg/src/server/setup/iFolderAdminSetup.cs 2010-04-24 10:20:54.524806732 -0400
|
||
|
@@ -99,12 +99,12 @@
|
||
|
/// <summary>
|
||
|
/// Apache User.
|
||
|
/// </summary>
|
||
|
- public Option apacheUser = new Option("apache-user", "Apache User", "Apache User to use for providing permissions", false, "wwwrun");
|
||
|
+ public Option apacheUser = new Option("apache-user", "Apache User", "Apache User to use for providing permissions", false, "apache");
|
||
|
|
||
|
/// <summary>
|
||
|
/// Apache Group.
|
||
|
/// </summary>
|
||
|
- public Option apacheGroup = new Option("apache-group", "Apache Group", "Apache Group to use for providing permissions", false, "www");
|
||
|
+ public Option apacheGroup = new Option("apache-group", "Apache Group", "Apache Group to use for providing permissions", false, "apache");
|
||
|
|
||
|
/// <summary>
|
||
|
/// The port to connect on.
|
||
|
Index: simias-1.8.3.9328.1+dfsg/src/core/CollectionStore/DataStore.cs
|
||
|
===================================================================
|
||
|
--- simias-1.8.3.9328.1+dfsg.orig/src/core/CollectionStore/DataStore.cs 2010-04-24 10:21:15.314805896 -0400
|
||
|
+++ simias-1.8.3.9328.1+dfsg/src/core/CollectionStore/DataStore.cs 2010-04-24 10:23:03.274988324 -0400
|
||
|
@@ -86,10 +86,10 @@
|
||
|
public bool Enabled;
|
||
|
|
||
|
/// </summary>
|
||
|
- private const string apacheUser = "wwwrun";
|
||
|
+ private const string apacheUser = "apache";
|
||
|
|
||
|
/// </summary>
|
||
|
- private const string apacheGroup = "www";
|
||
|
+ private const string apacheGroup = "apache";
|
||
|
|
||
|
|
||
|
|