diff --git a/CodeLiturgy.Augeas.Test/CodeLiturgy.Augeas.Test.csproj b/CodeLiturgy.Augeas.Test/CodeLiturgy.Augeas.Test.csproj deleted file mode 100644 index b99c3d6..0000000 --- a/CodeLiturgy.Augeas.Test/CodeLiturgy.Augeas.Test.csproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - net6.0 - enable - - false - - - - - - - - - - - - - - diff --git a/CodeLiturgy.Augeas.Test/PrintTests.cs b/CodeLiturgy.Augeas.Test/PrintTests.cs deleted file mode 100644 index 138889c..0000000 --- a/CodeLiturgy.Augeas.Test/PrintTests.cs +++ /dev/null @@ -1,9 +0,0 @@ -using System.Reflection; -using NUnit.Framework; - -namespace CodeLiturgy.Augeas.Test; - -public class PrintTests -{ - -} \ No newline at end of file diff --git a/CodeLiturgy.Augeas.sln b/CodeLiturgy.Augeas.sln deleted file mode 100644 index 5d56074..0000000 --- a/CodeLiturgy.Augeas.sln +++ /dev/null @@ -1,22 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeLiturgy.Augeas", "CodeLiturgy.Augeas\CodeLiturgy.Augeas.csproj", "{EF5B5D3E-325C-4C43-AFF7-851873E76B46}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeLiturgy.Augeas.Test", "CodeLiturgy.Augeas.Test\CodeLiturgy.Augeas.Test.csproj", "{0F03F0AE-AE3F-410B-ADA2-EB8B7A94D058}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {EF5B5D3E-325C-4C43-AFF7-851873E76B46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EF5B5D3E-325C-4C43-AFF7-851873E76B46}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EF5B5D3E-325C-4C43-AFF7-851873E76B46}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EF5B5D3E-325C-4C43-AFF7-851873E76B46}.Release|Any CPU.Build.0 = Release|Any CPU - {0F03F0AE-AE3F-410B-ADA2-EB8B7A94D058}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0F03F0AE-AE3F-410B-ADA2-EB8B7A94D058}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0F03F0AE-AE3F-410B-ADA2-EB8B7A94D058}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0F03F0AE-AE3F-410B-ADA2-EB8B7A94D058}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection -EndGlobal diff --git a/Sharp.Augeas.sln b/Sharp.Augeas.sln new file mode 100644 index 0000000..336a1f2 --- /dev/null +++ b/Sharp.Augeas.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sharp.Augeas", "Sharp.Augeas\Sharp.Augeas.csproj", "{EF5B5D3E-325C-4C43-AFF7-851873E76B46}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EF5B5D3E-325C-4C43-AFF7-851873E76B46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EF5B5D3E-325C-4C43-AFF7-851873E76B46}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EF5B5D3E-325C-4C43-AFF7-851873E76B46}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EF5B5D3E-325C-4C43-AFF7-851873E76B46}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/CodeLiturgy.Augeas/.dockerignore b/Sharp.Augeas/.dockerignore similarity index 100% rename from CodeLiturgy.Augeas/.dockerignore rename to Sharp.Augeas/.dockerignore diff --git a/CodeLiturgy.Augeas/AugFlags.cs b/Sharp.Augeas/AugFlags.cs similarity index 97% rename from CodeLiturgy.Augeas/AugFlags.cs rename to Sharp.Augeas/AugFlags.cs index 4256b1a..90b2193 100644 --- a/CodeLiturgy.Augeas/AugFlags.cs +++ b/Sharp.Augeas/AugFlags.cs @@ -1,4 +1,4 @@ -namespace CodeLiturgy.Augeas; +namespace Sharp.Augeas; public static class AugFlags { diff --git a/CodeLiturgy.Augeas/AugSettings.cs b/Sharp.Augeas/AugSettings.cs similarity index 93% rename from CodeLiturgy.Augeas/AugSettings.cs rename to Sharp.Augeas/AugSettings.cs index 31d83b7..5996ae0 100644 --- a/CodeLiturgy.Augeas/AugSettings.cs +++ b/Sharp.Augeas/AugSettings.cs @@ -1,6 +1,6 @@ using System.Runtime.InteropServices; -namespace CodeLiturgy.Augeas.Test +namespace Sharp.Augeas.Test { [StructLayout(LayoutKind.Sequential)] public unsafe partial struct AugSettings { diff --git a/CodeLiturgy.Augeas/Augeas.cs b/Sharp.Augeas/Augeas.cs similarity index 94% rename from CodeLiturgy.Augeas/Augeas.cs rename to Sharp.Augeas/Augeas.cs index 262ae7f..f82a7a3 100644 --- a/CodeLiturgy.Augeas/Augeas.cs +++ b/Sharp.Augeas/Augeas.cs @@ -1,11 +1,11 @@ using System.Diagnostics; using System.Runtime.InteropServices; using System.Text; -using CodeLiturgy.Augeas.Test; -using static CodeLiturgy.Augeas.AugeasExtern; -using static CodeLiturgy.Augeas.AugFlags; +using Sharp.Augeas.Test; +using static Sharp.Augeas.AugeasExtern; +using static Sharp.Augeas.AugFlags; -namespace CodeLiturgy.Augeas +namespace Sharp.Augeas { /// /// Augeas Core containing the settings of this instance. @@ -21,7 +21,7 @@ namespace CodeLiturgy.Augeas ~Augeas() { // Effectively free the pointer - close_aug(_augeas); + Close(); } /// @@ -56,6 +56,7 @@ namespace CodeLiturgy.Augeas /// public void LoadFile(string configurationFilePath) { + if (_augeas == IntPtr.Zero) return; load_file(_augeas, configurationFilePath); } diff --git a/CodeLiturgy.Augeas/AugeasExtern.cs b/Sharp.Augeas/AugeasExtern.cs similarity index 95% rename from CodeLiturgy.Augeas/AugeasExtern.cs rename to Sharp.Augeas/AugeasExtern.cs index fded817..35c5dae 100644 --- a/CodeLiturgy.Augeas/AugeasExtern.cs +++ b/Sharp.Augeas/AugeasExtern.cs @@ -2,9 +2,9 @@ using System.Numerics; using System.Runtime.InteropServices; using System.Security; using System.Text; -using CodeLiturgy.Augeas.Test; +using Sharp.Augeas.Test; -namespace CodeLiturgy.Augeas +namespace Sharp.Augeas { [SuppressUnmanagedCodeSecurity] public static unsafe partial class AugeasExtern diff --git a/CodeLiturgy.Augeas/Dockerfile b/Sharp.Augeas/Dockerfile similarity index 100% rename from CodeLiturgy.Augeas/Dockerfile rename to Sharp.Augeas/Dockerfile diff --git a/CodeLiturgy.Augeas/Program.cs b/Sharp.Augeas/Program.cs similarity index 72% rename from CodeLiturgy.Augeas/Program.cs rename to Sharp.Augeas/Program.cs index aa893ca..c37061b 100644 --- a/CodeLiturgy.Augeas/Program.cs +++ b/Sharp.Augeas/Program.cs @@ -1,5 +1,5 @@ -using CodeLiturgy.Augeas; -using CodeLiturgy.Augeas.Test; +using Sharp.Augeas; +using Sharp.Augeas.Test; var path = Environment.CurrentDirectory; var root = $"{path}/root/"; @@ -8,13 +8,12 @@ AugSettings augSettings = new AugSettings(root, "/opt/homebrew/share/augeas/lens var augeas = new Augeas(augSettings); // Calling extern functions -string clSiteMatchPath = "/files/etc/apache2/sites-available/00-ci.codeliturgy.com.conf/VirtualHost"; -string clSiteFilepath = "/etc/apache2/sites-available/00-ci.codeliturgy.com.conf"; +string clSiteMatchPath = "/files/etc/apache2/sites-available/00-ci.codeliturgy.com.conf"; //AugeasCore.Benchmark( () => augeasCore.PrintAugTree(clSiteMatchPath , clSiteFilepath), 10); //AugeasCore.Benchmark( () => augeasCore.PrintPreview(clSiteMatchPath , clSiteFilepath), 10); -augeas.LoadFile(clSiteFilepath); +augeas.LoadFile("/etc/apache2/sites-available/00-ci.codeliturgy.com.conf"); augeas.PrintAugTree(clSiteMatchPath); var tree = augeas.GetTree(clSiteMatchPath); diff --git a/CodeLiturgy.Augeas/CodeLiturgy.Augeas.csproj b/Sharp.Augeas/Sharp.Augeas.csproj similarity index 91% rename from CodeLiturgy.Augeas/CodeLiturgy.Augeas.csproj rename to Sharp.Augeas/Sharp.Augeas.csproj index 408a0e7..e43a7c7 100644 --- a/CodeLiturgy.Augeas/CodeLiturgy.Augeas.csproj +++ b/Sharp.Augeas/Sharp.Augeas.csproj @@ -7,7 +7,7 @@ disable Linux true - CodeLiturgy.Augeas + Sharp.Augeas diff --git a/Sharp.Augeas/Types/AugArg.cs b/Sharp.Augeas/Types/AugArg.cs new file mode 100644 index 0000000..5c77c3c --- /dev/null +++ b/Sharp.Augeas/Types/AugArg.cs @@ -0,0 +1,7 @@ +namespace Sharp.Augeas.Types; + +public class AugArg +{ + public string Value; + public T Parent; +} \ No newline at end of file diff --git a/Sharp.Augeas/Types/AugConfig.cs b/Sharp.Augeas/Types/AugConfig.cs new file mode 100644 index 0000000..b0661a6 --- /dev/null +++ b/Sharp.Augeas/Types/AugConfig.cs @@ -0,0 +1,19 @@ +namespace Sharp.Augeas.Types; + +public interface IAugConfig{}; + +public interface IArg { }; + +public interface IProxyData { }; + +public interface IVirtualHostData { }; + +public interface IDirectiveArg : IArg { } + +public interface IProxyArg : IArg, IProxyData { } + +public interface IDirectiveConfig : IAugConfig { } + +public interface IVirtualHostConfig : IAugConfig { } + +public interface IVirtualHostArg : IArg, IVirtualHostData { }; \ No newline at end of file diff --git a/Sharp.Augeas/VirtualHost/DirectiveArg.cs b/Sharp.Augeas/VirtualHost/DirectiveArg.cs new file mode 100644 index 0000000..78cb8e5 --- /dev/null +++ b/Sharp.Augeas/VirtualHost/DirectiveArg.cs @@ -0,0 +1,6 @@ +namespace Sharp.Augeas.VirtualHost; + +public class DirectiveArg +{ + +} \ No newline at end of file diff --git a/Sharp.Augeas/VirtualHost/ProxyArg.cs b/Sharp.Augeas/VirtualHost/ProxyArg.cs new file mode 100644 index 0000000..0ff9153 --- /dev/null +++ b/Sharp.Augeas/VirtualHost/ProxyArg.cs @@ -0,0 +1,6 @@ +namespace Sharp.Augeas.VirtualHost; + +public class ProxyArg +{ + +} \ No newline at end of file diff --git a/Sharp.Augeas/VirtualHost/ProxyDirective.cs b/Sharp.Augeas/VirtualHost/ProxyDirective.cs new file mode 100644 index 0000000..1895c56 --- /dev/null +++ b/Sharp.Augeas/VirtualHost/ProxyDirective.cs @@ -0,0 +1,6 @@ +namespace Sharp.Augeas.VirtualHost; + +public class ProxyDirective +{ + +} \ No newline at end of file diff --git a/Sharp.Augeas/VirtualHost/VirtualHostArg.cs b/Sharp.Augeas/VirtualHost/VirtualHostArg.cs new file mode 100644 index 0000000..ffc273e --- /dev/null +++ b/Sharp.Augeas/VirtualHost/VirtualHostArg.cs @@ -0,0 +1,6 @@ +namespace Sharp.Augeas.VirtualHost; + +public class VirtualHostArg +{ + +} \ No newline at end of file diff --git a/Sharp.Augeas/VirtualHost/VirtualHostDirective.cs b/Sharp.Augeas/VirtualHost/VirtualHostDirective.cs new file mode 100644 index 0000000..f93aeff --- /dev/null +++ b/Sharp.Augeas/VirtualHost/VirtualHostDirective.cs @@ -0,0 +1,6 @@ +namespace Sharp.Augeas.VirtualHost; + +public class VirtualHostDirective +{ + +} \ No newline at end of file diff --git a/CodeLiturgy.Augeas/copyLibrary.sh b/Sharp.Augeas/copyLibrary.sh similarity index 81% rename from CodeLiturgy.Augeas/copyLibrary.sh rename to Sharp.Augeas/copyLibrary.sh index cf63408..6269a40 100755 --- a/CodeLiturgy.Augeas/copyLibrary.sh +++ b/Sharp.Augeas/copyLibrary.sh @@ -7,7 +7,8 @@ DESTIN=$SCRIPT_DIR/bin/Debug/net6.0 # Set the $CLAUG_LIB_PATH to the PATH where the claugeas library is located before running this script if [[ -z "${CLAUG_LIB_PATH}" ]]; then - echo "set the CLAUG_LIB_PATH in the ${LIB_FILE} location." + echo "error: set the CLAUG_LIB_PATH in the ${LIB_FILE} location." + echo return fi diff --git a/CodeLiturgy.Augeas/root/boot/grub/grub.conf b/Sharp.Augeas/root/boot/grub/grub.conf similarity index 100% rename from CodeLiturgy.Augeas/root/boot/grub/grub.conf rename to Sharp.Augeas/root/boot/grub/grub.conf diff --git a/CodeLiturgy.Augeas/root/boot/grub/menu.lst b/Sharp.Augeas/root/boot/grub/menu.lst similarity index 100% rename from CodeLiturgy.Augeas/root/boot/grub/menu.lst rename to Sharp.Augeas/root/boot/grub/menu.lst diff --git a/CodeLiturgy.Augeas/root/etc/aliases b/Sharp.Augeas/root/etc/aliases similarity index 100% rename from CodeLiturgy.Augeas/root/etc/aliases rename to Sharp.Augeas/root/etc/aliases diff --git a/CodeLiturgy.Augeas/root/etc/apache2/apache2.conf b/Sharp.Augeas/root/etc/apache2/apache2.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/apache2.conf rename to Sharp.Augeas/root/etc/apache2/apache2.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/conf-available/charset.conf b/Sharp.Augeas/root/etc/apache2/conf-available/charset.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/conf-available/charset.conf rename to Sharp.Augeas/root/etc/apache2/conf-available/charset.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/conf-available/localized-error-pages.conf b/Sharp.Augeas/root/etc/apache2/conf-available/localized-error-pages.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/conf-available/localized-error-pages.conf rename to Sharp.Augeas/root/etc/apache2/conf-available/localized-error-pages.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/conf-available/other-vhosts-access-log.conf b/Sharp.Augeas/root/etc/apache2/conf-available/other-vhosts-access-log.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/conf-available/other-vhosts-access-log.conf rename to Sharp.Augeas/root/etc/apache2/conf-available/other-vhosts-access-log.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/conf-available/security.conf b/Sharp.Augeas/root/etc/apache2/conf-available/security.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/conf-available/security.conf rename to Sharp.Augeas/root/etc/apache2/conf-available/security.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/conf-available/serve-cgi-bin.conf b/Sharp.Augeas/root/etc/apache2/conf-available/serve-cgi-bin.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/conf-available/serve-cgi-bin.conf rename to Sharp.Augeas/root/etc/apache2/conf-available/serve-cgi-bin.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/conf-enabled/charset.conf b/Sharp.Augeas/root/etc/apache2/conf-enabled/charset.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/conf-enabled/charset.conf rename to Sharp.Augeas/root/etc/apache2/conf-enabled/charset.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/conf-enabled/localized-error-pages.conf b/Sharp.Augeas/root/etc/apache2/conf-enabled/localized-error-pages.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/conf-enabled/localized-error-pages.conf rename to Sharp.Augeas/root/etc/apache2/conf-enabled/localized-error-pages.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/conf-enabled/other-vhosts-access-log.conf b/Sharp.Augeas/root/etc/apache2/conf-enabled/other-vhosts-access-log.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/conf-enabled/other-vhosts-access-log.conf rename to Sharp.Augeas/root/etc/apache2/conf-enabled/other-vhosts-access-log.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/conf-enabled/security.conf b/Sharp.Augeas/root/etc/apache2/conf-enabled/security.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/conf-enabled/security.conf rename to Sharp.Augeas/root/etc/apache2/conf-enabled/security.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/conf-enabled/serve-cgi-bin.conf b/Sharp.Augeas/root/etc/apache2/conf-enabled/serve-cgi-bin.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/conf-enabled/serve-cgi-bin.conf rename to Sharp.Augeas/root/etc/apache2/conf-enabled/serve-cgi-bin.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/envvars b/Sharp.Augeas/root/etc/apache2/envvars similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/envvars rename to Sharp.Augeas/root/etc/apache2/envvars diff --git a/CodeLiturgy.Augeas/root/etc/apache2/magic b/Sharp.Augeas/root/etc/apache2/magic similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/magic rename to Sharp.Augeas/root/etc/apache2/magic diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/access_compat.load b/Sharp.Augeas/root/etc/apache2/mods-available/access_compat.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/access_compat.load rename to Sharp.Augeas/root/etc/apache2/mods-available/access_compat.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/actions.conf b/Sharp.Augeas/root/etc/apache2/mods-available/actions.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/actions.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/actions.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/actions.load b/Sharp.Augeas/root/etc/apache2/mods-available/actions.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/actions.load rename to Sharp.Augeas/root/etc/apache2/mods-available/actions.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/alias.conf b/Sharp.Augeas/root/etc/apache2/mods-available/alias.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/alias.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/alias.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/alias.load b/Sharp.Augeas/root/etc/apache2/mods-available/alias.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/alias.load rename to Sharp.Augeas/root/etc/apache2/mods-available/alias.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/allowmethods.load b/Sharp.Augeas/root/etc/apache2/mods-available/allowmethods.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/allowmethods.load rename to Sharp.Augeas/root/etc/apache2/mods-available/allowmethods.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/asis.load b/Sharp.Augeas/root/etc/apache2/mods-available/asis.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/asis.load rename to Sharp.Augeas/root/etc/apache2/mods-available/asis.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/auth_basic.load b/Sharp.Augeas/root/etc/apache2/mods-available/auth_basic.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/auth_basic.load rename to Sharp.Augeas/root/etc/apache2/mods-available/auth_basic.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/auth_digest.load b/Sharp.Augeas/root/etc/apache2/mods-available/auth_digest.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/auth_digest.load rename to Sharp.Augeas/root/etc/apache2/mods-available/auth_digest.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/auth_form.load b/Sharp.Augeas/root/etc/apache2/mods-available/auth_form.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/auth_form.load rename to Sharp.Augeas/root/etc/apache2/mods-available/auth_form.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_anon.load b/Sharp.Augeas/root/etc/apache2/mods-available/authn_anon.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_anon.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authn_anon.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_core.load b/Sharp.Augeas/root/etc/apache2/mods-available/authn_core.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_core.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authn_core.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_dbd.load b/Sharp.Augeas/root/etc/apache2/mods-available/authn_dbd.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_dbd.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authn_dbd.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_dbm.load b/Sharp.Augeas/root/etc/apache2/mods-available/authn_dbm.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_dbm.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authn_dbm.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_file.load b/Sharp.Augeas/root/etc/apache2/mods-available/authn_file.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_file.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authn_file.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_socache.load b/Sharp.Augeas/root/etc/apache2/mods-available/authn_socache.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authn_socache.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authn_socache.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authnz_fcgi.load b/Sharp.Augeas/root/etc/apache2/mods-available/authnz_fcgi.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authnz_fcgi.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authnz_fcgi.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authnz_ldap.load b/Sharp.Augeas/root/etc/apache2/mods-available/authnz_ldap.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authnz_ldap.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authnz_ldap.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_core.load b/Sharp.Augeas/root/etc/apache2/mods-available/authz_core.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_core.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authz_core.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_dbd.load b/Sharp.Augeas/root/etc/apache2/mods-available/authz_dbd.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_dbd.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authz_dbd.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_dbm.load b/Sharp.Augeas/root/etc/apache2/mods-available/authz_dbm.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_dbm.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authz_dbm.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_groupfile.load b/Sharp.Augeas/root/etc/apache2/mods-available/authz_groupfile.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_groupfile.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authz_groupfile.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_host.load b/Sharp.Augeas/root/etc/apache2/mods-available/authz_host.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_host.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authz_host.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_owner.load b/Sharp.Augeas/root/etc/apache2/mods-available/authz_owner.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_owner.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authz_owner.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_user.load b/Sharp.Augeas/root/etc/apache2/mods-available/authz_user.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/authz_user.load rename to Sharp.Augeas/root/etc/apache2/mods-available/authz_user.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/autoindex.conf b/Sharp.Augeas/root/etc/apache2/mods-available/autoindex.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/autoindex.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/autoindex.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/autoindex.load b/Sharp.Augeas/root/etc/apache2/mods-available/autoindex.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/autoindex.load rename to Sharp.Augeas/root/etc/apache2/mods-available/autoindex.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/brotli.load b/Sharp.Augeas/root/etc/apache2/mods-available/brotli.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/brotli.load rename to Sharp.Augeas/root/etc/apache2/mods-available/brotli.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/buffer.load b/Sharp.Augeas/root/etc/apache2/mods-available/buffer.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/buffer.load rename to Sharp.Augeas/root/etc/apache2/mods-available/buffer.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/cache.load b/Sharp.Augeas/root/etc/apache2/mods-available/cache.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/cache.load rename to Sharp.Augeas/root/etc/apache2/mods-available/cache.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/cache_disk.conf b/Sharp.Augeas/root/etc/apache2/mods-available/cache_disk.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/cache_disk.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/cache_disk.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/cache_disk.load b/Sharp.Augeas/root/etc/apache2/mods-available/cache_disk.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/cache_disk.load rename to Sharp.Augeas/root/etc/apache2/mods-available/cache_disk.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/cache_socache.load b/Sharp.Augeas/root/etc/apache2/mods-available/cache_socache.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/cache_socache.load rename to Sharp.Augeas/root/etc/apache2/mods-available/cache_socache.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/cern_meta.load b/Sharp.Augeas/root/etc/apache2/mods-available/cern_meta.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/cern_meta.load rename to Sharp.Augeas/root/etc/apache2/mods-available/cern_meta.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/cgi.load b/Sharp.Augeas/root/etc/apache2/mods-available/cgi.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/cgi.load rename to Sharp.Augeas/root/etc/apache2/mods-available/cgi.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/cgid.conf b/Sharp.Augeas/root/etc/apache2/mods-available/cgid.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/cgid.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/cgid.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/cgid.load b/Sharp.Augeas/root/etc/apache2/mods-available/cgid.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/cgid.load rename to Sharp.Augeas/root/etc/apache2/mods-available/cgid.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/charset_lite.load b/Sharp.Augeas/root/etc/apache2/mods-available/charset_lite.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/charset_lite.load rename to Sharp.Augeas/root/etc/apache2/mods-available/charset_lite.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/data.load b/Sharp.Augeas/root/etc/apache2/mods-available/data.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/data.load rename to Sharp.Augeas/root/etc/apache2/mods-available/data.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/dav.load b/Sharp.Augeas/root/etc/apache2/mods-available/dav.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/dav.load rename to Sharp.Augeas/root/etc/apache2/mods-available/dav.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/dav_fs.conf b/Sharp.Augeas/root/etc/apache2/mods-available/dav_fs.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/dav_fs.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/dav_fs.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/dav_fs.load b/Sharp.Augeas/root/etc/apache2/mods-available/dav_fs.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/dav_fs.load rename to Sharp.Augeas/root/etc/apache2/mods-available/dav_fs.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/dav_lock.load b/Sharp.Augeas/root/etc/apache2/mods-available/dav_lock.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/dav_lock.load rename to Sharp.Augeas/root/etc/apache2/mods-available/dav_lock.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/dbd.load b/Sharp.Augeas/root/etc/apache2/mods-available/dbd.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/dbd.load rename to Sharp.Augeas/root/etc/apache2/mods-available/dbd.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/deflate.conf b/Sharp.Augeas/root/etc/apache2/mods-available/deflate.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/deflate.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/deflate.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/deflate.load b/Sharp.Augeas/root/etc/apache2/mods-available/deflate.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/deflate.load rename to Sharp.Augeas/root/etc/apache2/mods-available/deflate.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/dialup.load b/Sharp.Augeas/root/etc/apache2/mods-available/dialup.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/dialup.load rename to Sharp.Augeas/root/etc/apache2/mods-available/dialup.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/dir.conf b/Sharp.Augeas/root/etc/apache2/mods-available/dir.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/dir.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/dir.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/dir.load b/Sharp.Augeas/root/etc/apache2/mods-available/dir.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/dir.load rename to Sharp.Augeas/root/etc/apache2/mods-available/dir.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/dump_io.load b/Sharp.Augeas/root/etc/apache2/mods-available/dump_io.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/dump_io.load rename to Sharp.Augeas/root/etc/apache2/mods-available/dump_io.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/echo.load b/Sharp.Augeas/root/etc/apache2/mods-available/echo.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/echo.load rename to Sharp.Augeas/root/etc/apache2/mods-available/echo.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/env.load b/Sharp.Augeas/root/etc/apache2/mods-available/env.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/env.load rename to Sharp.Augeas/root/etc/apache2/mods-available/env.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/expires.load b/Sharp.Augeas/root/etc/apache2/mods-available/expires.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/expires.load rename to Sharp.Augeas/root/etc/apache2/mods-available/expires.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/ext_filter.load b/Sharp.Augeas/root/etc/apache2/mods-available/ext_filter.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/ext_filter.load rename to Sharp.Augeas/root/etc/apache2/mods-available/ext_filter.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/file_cache.load b/Sharp.Augeas/root/etc/apache2/mods-available/file_cache.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/file_cache.load rename to Sharp.Augeas/root/etc/apache2/mods-available/file_cache.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/filter.load b/Sharp.Augeas/root/etc/apache2/mods-available/filter.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/filter.load rename to Sharp.Augeas/root/etc/apache2/mods-available/filter.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/headers.load b/Sharp.Augeas/root/etc/apache2/mods-available/headers.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/headers.load rename to Sharp.Augeas/root/etc/apache2/mods-available/headers.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/heartbeat.load b/Sharp.Augeas/root/etc/apache2/mods-available/heartbeat.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/heartbeat.load rename to Sharp.Augeas/root/etc/apache2/mods-available/heartbeat.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/heartmonitor.load b/Sharp.Augeas/root/etc/apache2/mods-available/heartmonitor.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/heartmonitor.load rename to Sharp.Augeas/root/etc/apache2/mods-available/heartmonitor.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/http2.conf b/Sharp.Augeas/root/etc/apache2/mods-available/http2.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/http2.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/http2.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/http2.load b/Sharp.Augeas/root/etc/apache2/mods-available/http2.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/http2.load rename to Sharp.Augeas/root/etc/apache2/mods-available/http2.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/ident.load b/Sharp.Augeas/root/etc/apache2/mods-available/ident.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/ident.load rename to Sharp.Augeas/root/etc/apache2/mods-available/ident.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/imagemap.load b/Sharp.Augeas/root/etc/apache2/mods-available/imagemap.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/imagemap.load rename to Sharp.Augeas/root/etc/apache2/mods-available/imagemap.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/include.load b/Sharp.Augeas/root/etc/apache2/mods-available/include.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/include.load rename to Sharp.Augeas/root/etc/apache2/mods-available/include.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/info.conf b/Sharp.Augeas/root/etc/apache2/mods-available/info.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/info.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/info.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/info.load b/Sharp.Augeas/root/etc/apache2/mods-available/info.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/info.load rename to Sharp.Augeas/root/etc/apache2/mods-available/info.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/lbmethod_bybusyness.load b/Sharp.Augeas/root/etc/apache2/mods-available/lbmethod_bybusyness.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/lbmethod_bybusyness.load rename to Sharp.Augeas/root/etc/apache2/mods-available/lbmethod_bybusyness.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/lbmethod_byrequests.load b/Sharp.Augeas/root/etc/apache2/mods-available/lbmethod_byrequests.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/lbmethod_byrequests.load rename to Sharp.Augeas/root/etc/apache2/mods-available/lbmethod_byrequests.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/lbmethod_bytraffic.load b/Sharp.Augeas/root/etc/apache2/mods-available/lbmethod_bytraffic.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/lbmethod_bytraffic.load rename to Sharp.Augeas/root/etc/apache2/mods-available/lbmethod_bytraffic.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/lbmethod_heartbeat.load b/Sharp.Augeas/root/etc/apache2/mods-available/lbmethod_heartbeat.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/lbmethod_heartbeat.load rename to Sharp.Augeas/root/etc/apache2/mods-available/lbmethod_heartbeat.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/ldap.conf b/Sharp.Augeas/root/etc/apache2/mods-available/ldap.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/ldap.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/ldap.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/ldap.load b/Sharp.Augeas/root/etc/apache2/mods-available/ldap.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/ldap.load rename to Sharp.Augeas/root/etc/apache2/mods-available/ldap.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/log_debug.load b/Sharp.Augeas/root/etc/apache2/mods-available/log_debug.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/log_debug.load rename to Sharp.Augeas/root/etc/apache2/mods-available/log_debug.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/log_forensic.load b/Sharp.Augeas/root/etc/apache2/mods-available/log_forensic.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/log_forensic.load rename to Sharp.Augeas/root/etc/apache2/mods-available/log_forensic.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/lua.load b/Sharp.Augeas/root/etc/apache2/mods-available/lua.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/lua.load rename to Sharp.Augeas/root/etc/apache2/mods-available/lua.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/macro.load b/Sharp.Augeas/root/etc/apache2/mods-available/macro.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/macro.load rename to Sharp.Augeas/root/etc/apache2/mods-available/macro.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/md.load b/Sharp.Augeas/root/etc/apache2/mods-available/md.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/md.load rename to Sharp.Augeas/root/etc/apache2/mods-available/md.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/mime.conf b/Sharp.Augeas/root/etc/apache2/mods-available/mime.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/mime.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/mime.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/mime.load b/Sharp.Augeas/root/etc/apache2/mods-available/mime.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/mime.load rename to Sharp.Augeas/root/etc/apache2/mods-available/mime.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/mime_magic.conf b/Sharp.Augeas/root/etc/apache2/mods-available/mime_magic.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/mime_magic.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/mime_magic.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/mime_magic.load b/Sharp.Augeas/root/etc/apache2/mods-available/mime_magic.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/mime_magic.load rename to Sharp.Augeas/root/etc/apache2/mods-available/mime_magic.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_event.conf b/Sharp.Augeas/root/etc/apache2/mods-available/mpm_event.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_event.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/mpm_event.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_event.load b/Sharp.Augeas/root/etc/apache2/mods-available/mpm_event.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_event.load rename to Sharp.Augeas/root/etc/apache2/mods-available/mpm_event.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_prefork.conf b/Sharp.Augeas/root/etc/apache2/mods-available/mpm_prefork.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_prefork.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/mpm_prefork.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_prefork.load b/Sharp.Augeas/root/etc/apache2/mods-available/mpm_prefork.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_prefork.load rename to Sharp.Augeas/root/etc/apache2/mods-available/mpm_prefork.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_worker.conf b/Sharp.Augeas/root/etc/apache2/mods-available/mpm_worker.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_worker.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/mpm_worker.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_worker.load b/Sharp.Augeas/root/etc/apache2/mods-available/mpm_worker.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/mpm_worker.load rename to Sharp.Augeas/root/etc/apache2/mods-available/mpm_worker.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/negotiation.conf b/Sharp.Augeas/root/etc/apache2/mods-available/negotiation.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/negotiation.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/negotiation.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/negotiation.load b/Sharp.Augeas/root/etc/apache2/mods-available/negotiation.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/negotiation.load rename to Sharp.Augeas/root/etc/apache2/mods-available/negotiation.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy.conf b/Sharp.Augeas/root/etc/apache2/mods-available/proxy.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_ajp.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_ajp.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_ajp.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_ajp.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_balancer.conf b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_balancer.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_balancer.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_balancer.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_balancer.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_balancer.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_balancer.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_balancer.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_connect.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_connect.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_connect.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_connect.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_express.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_express.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_express.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_express.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_fcgi.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_fcgi.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_fcgi.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_fcgi.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_fdpass.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_fdpass.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_fdpass.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_fdpass.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_ftp.conf b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_ftp.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_ftp.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_ftp.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_ftp.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_ftp.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_ftp.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_ftp.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_hcheck.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_hcheck.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_hcheck.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_hcheck.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_html.conf b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_html.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_html.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_html.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_html.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_html.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_html.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_html.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_http.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_http.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_http.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_http.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_http2.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_http2.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_http2.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_http2.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_scgi.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_scgi.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_scgi.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_scgi.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_uwsgi.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_uwsgi.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_uwsgi.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_uwsgi.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_wstunnel.load b/Sharp.Augeas/root/etc/apache2/mods-available/proxy_wstunnel.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/proxy_wstunnel.load rename to Sharp.Augeas/root/etc/apache2/mods-available/proxy_wstunnel.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/ratelimit.load b/Sharp.Augeas/root/etc/apache2/mods-available/ratelimit.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/ratelimit.load rename to Sharp.Augeas/root/etc/apache2/mods-available/ratelimit.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/reflector.load b/Sharp.Augeas/root/etc/apache2/mods-available/reflector.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/reflector.load rename to Sharp.Augeas/root/etc/apache2/mods-available/reflector.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/remoteip.load b/Sharp.Augeas/root/etc/apache2/mods-available/remoteip.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/remoteip.load rename to Sharp.Augeas/root/etc/apache2/mods-available/remoteip.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/reqtimeout.conf b/Sharp.Augeas/root/etc/apache2/mods-available/reqtimeout.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/reqtimeout.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/reqtimeout.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/reqtimeout.load b/Sharp.Augeas/root/etc/apache2/mods-available/reqtimeout.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/reqtimeout.load rename to Sharp.Augeas/root/etc/apache2/mods-available/reqtimeout.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/request.load b/Sharp.Augeas/root/etc/apache2/mods-available/request.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/request.load rename to Sharp.Augeas/root/etc/apache2/mods-available/request.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/rewrite.load b/Sharp.Augeas/root/etc/apache2/mods-available/rewrite.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/rewrite.load rename to Sharp.Augeas/root/etc/apache2/mods-available/rewrite.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/sed.load b/Sharp.Augeas/root/etc/apache2/mods-available/sed.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/sed.load rename to Sharp.Augeas/root/etc/apache2/mods-available/sed.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/session.load b/Sharp.Augeas/root/etc/apache2/mods-available/session.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/session.load rename to Sharp.Augeas/root/etc/apache2/mods-available/session.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/session_cookie.load b/Sharp.Augeas/root/etc/apache2/mods-available/session_cookie.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/session_cookie.load rename to Sharp.Augeas/root/etc/apache2/mods-available/session_cookie.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/session_crypto.load b/Sharp.Augeas/root/etc/apache2/mods-available/session_crypto.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/session_crypto.load rename to Sharp.Augeas/root/etc/apache2/mods-available/session_crypto.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/session_dbd.load b/Sharp.Augeas/root/etc/apache2/mods-available/session_dbd.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/session_dbd.load rename to Sharp.Augeas/root/etc/apache2/mods-available/session_dbd.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/setenvif.conf b/Sharp.Augeas/root/etc/apache2/mods-available/setenvif.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/setenvif.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/setenvif.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/setenvif.load b/Sharp.Augeas/root/etc/apache2/mods-available/setenvif.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/setenvif.load rename to Sharp.Augeas/root/etc/apache2/mods-available/setenvif.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/slotmem_plain.load b/Sharp.Augeas/root/etc/apache2/mods-available/slotmem_plain.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/slotmem_plain.load rename to Sharp.Augeas/root/etc/apache2/mods-available/slotmem_plain.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/slotmem_shm.load b/Sharp.Augeas/root/etc/apache2/mods-available/slotmem_shm.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/slotmem_shm.load rename to Sharp.Augeas/root/etc/apache2/mods-available/slotmem_shm.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/socache_dbm.load b/Sharp.Augeas/root/etc/apache2/mods-available/socache_dbm.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/socache_dbm.load rename to Sharp.Augeas/root/etc/apache2/mods-available/socache_dbm.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/socache_memcache.load b/Sharp.Augeas/root/etc/apache2/mods-available/socache_memcache.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/socache_memcache.load rename to Sharp.Augeas/root/etc/apache2/mods-available/socache_memcache.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/socache_redis.load b/Sharp.Augeas/root/etc/apache2/mods-available/socache_redis.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/socache_redis.load rename to Sharp.Augeas/root/etc/apache2/mods-available/socache_redis.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/socache_shmcb.load b/Sharp.Augeas/root/etc/apache2/mods-available/socache_shmcb.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/socache_shmcb.load rename to Sharp.Augeas/root/etc/apache2/mods-available/socache_shmcb.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/speling.load b/Sharp.Augeas/root/etc/apache2/mods-available/speling.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/speling.load rename to Sharp.Augeas/root/etc/apache2/mods-available/speling.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/ssl.conf b/Sharp.Augeas/root/etc/apache2/mods-available/ssl.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/ssl.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/ssl.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/ssl.load b/Sharp.Augeas/root/etc/apache2/mods-available/ssl.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/ssl.load rename to Sharp.Augeas/root/etc/apache2/mods-available/ssl.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/status.conf b/Sharp.Augeas/root/etc/apache2/mods-available/status.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/status.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/status.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/status.load b/Sharp.Augeas/root/etc/apache2/mods-available/status.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/status.load rename to Sharp.Augeas/root/etc/apache2/mods-available/status.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/substitute.load b/Sharp.Augeas/root/etc/apache2/mods-available/substitute.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/substitute.load rename to Sharp.Augeas/root/etc/apache2/mods-available/substitute.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/suexec.load b/Sharp.Augeas/root/etc/apache2/mods-available/suexec.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/suexec.load rename to Sharp.Augeas/root/etc/apache2/mods-available/suexec.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/unique_id.load b/Sharp.Augeas/root/etc/apache2/mods-available/unique_id.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/unique_id.load rename to Sharp.Augeas/root/etc/apache2/mods-available/unique_id.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/userdir.conf b/Sharp.Augeas/root/etc/apache2/mods-available/userdir.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/userdir.conf rename to Sharp.Augeas/root/etc/apache2/mods-available/userdir.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/userdir.load b/Sharp.Augeas/root/etc/apache2/mods-available/userdir.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/userdir.load rename to Sharp.Augeas/root/etc/apache2/mods-available/userdir.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/usertrack.load b/Sharp.Augeas/root/etc/apache2/mods-available/usertrack.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/usertrack.load rename to Sharp.Augeas/root/etc/apache2/mods-available/usertrack.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/vhost_alias.load b/Sharp.Augeas/root/etc/apache2/mods-available/vhost_alias.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/vhost_alias.load rename to Sharp.Augeas/root/etc/apache2/mods-available/vhost_alias.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-available/xml2enc.load b/Sharp.Augeas/root/etc/apache2/mods-available/xml2enc.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-available/xml2enc.load rename to Sharp.Augeas/root/etc/apache2/mods-available/xml2enc.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/access_compat.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/access_compat.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/access_compat.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/access_compat.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/alias.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/alias.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/alias.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/alias.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/alias.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/alias.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/alias.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/alias.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/auth_basic.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/auth_basic.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/auth_basic.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/auth_basic.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/authn_core.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/authn_core.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/authn_core.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/authn_core.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/authn_file.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/authn_file.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/authn_file.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/authn_file.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/authz_core.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/authz_core.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/authz_core.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/authz_core.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/authz_host.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/authz_host.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/authz_host.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/authz_host.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/authz_user.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/authz_user.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/authz_user.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/authz_user.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/autoindex.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/autoindex.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/autoindex.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/autoindex.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/autoindex.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/autoindex.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/autoindex.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/autoindex.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/deflate.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/deflate.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/deflate.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/deflate.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/deflate.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/deflate.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/deflate.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/deflate.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/dir.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/dir.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/dir.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/dir.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/dir.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/dir.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/dir.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/dir.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/env.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/env.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/env.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/env.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/filter.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/filter.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/filter.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/filter.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/headers.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/headers.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/headers.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/headers.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/lbmethod_byrequests.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/lbmethod_byrequests.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/lbmethod_byrequests.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/lbmethod_byrequests.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/mime.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/mime.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/mime.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/mime.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/mime.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/mime.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/mime.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/mime.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/mpm_event.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/mpm_event.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/mpm_event.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/mpm_event.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/mpm_event.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/mpm_event.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/mpm_event.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/mpm_event.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/negotiation.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/negotiation.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/negotiation.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/negotiation.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/negotiation.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/negotiation.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/negotiation.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/negotiation.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/proxy.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/proxy.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/proxy.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/proxy.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_balancer.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_balancer.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_balancer.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_balancer.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_balancer.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_balancer.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_balancer.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_balancer.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_connect.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_connect.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_connect.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_connect.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_ftp.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_ftp.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_ftp.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_ftp.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_ftp.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_ftp.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_ftp.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_ftp.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_html.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_html.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_html.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_html.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_html.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_html.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_html.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_html.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_http.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_http.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/proxy_http.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/proxy_http.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/reqtimeout.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/reqtimeout.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/reqtimeout.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/reqtimeout.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/reqtimeout.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/reqtimeout.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/reqtimeout.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/reqtimeout.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/rewrite.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/rewrite.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/rewrite.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/rewrite.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/setenvif.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/setenvif.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/setenvif.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/setenvif.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/setenvif.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/setenvif.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/setenvif.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/setenvif.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/slotmem_shm.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/slotmem_shm.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/slotmem_shm.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/slotmem_shm.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/socache_shmcb.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/socache_shmcb.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/socache_shmcb.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/socache_shmcb.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/ssl.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/ssl.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/ssl.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/ssl.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/ssl.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/ssl.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/ssl.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/ssl.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/status.conf b/Sharp.Augeas/root/etc/apache2/mods-enabled/status.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/status.conf rename to Sharp.Augeas/root/etc/apache2/mods-enabled/status.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/status.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/status.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/status.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/status.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/xml2enc.load b/Sharp.Augeas/root/etc/apache2/mods-enabled/xml2enc.load similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/mods-enabled/xml2enc.load rename to Sharp.Augeas/root/etc/apache2/mods-enabled/xml2enc.load diff --git a/CodeLiturgy.Augeas/root/etc/apache2/ports.conf b/Sharp.Augeas/root/etc/apache2/ports.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/ports.conf rename to Sharp.Augeas/root/etc/apache2/ports.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/sites-available/00-ci.codeliturgy.com-le-ssl.conf b/Sharp.Augeas/root/etc/apache2/sites-available/00-ci.codeliturgy.com-le-ssl.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/sites-available/00-ci.codeliturgy.com-le-ssl.conf rename to Sharp.Augeas/root/etc/apache2/sites-available/00-ci.codeliturgy.com-le-ssl.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/sites-available/00-ci.codeliturgy.com.conf b/Sharp.Augeas/root/etc/apache2/sites-available/00-ci.codeliturgy.com.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/sites-available/00-ci.codeliturgy.com.conf rename to Sharp.Augeas/root/etc/apache2/sites-available/00-ci.codeliturgy.com.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/sites-available/000-default.conf b/Sharp.Augeas/root/etc/apache2/sites-available/000-default.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/sites-available/000-default.conf rename to Sharp.Augeas/root/etc/apache2/sites-available/000-default.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/sites-available/01-git.codeliturgy.com.conf b/Sharp.Augeas/root/etc/apache2/sites-available/01-git.codeliturgy.com.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/sites-available/01-git.codeliturgy.com.conf rename to Sharp.Augeas/root/etc/apache2/sites-available/01-git.codeliturgy.com.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/sites-available/02-codeliturgy.com.conf b/Sharp.Augeas/root/etc/apache2/sites-available/02-codeliturgy.com.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/sites-available/02-codeliturgy.com.conf rename to Sharp.Augeas/root/etc/apache2/sites-available/02-codeliturgy.com.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/sites-available/default-ssl.conf b/Sharp.Augeas/root/etc/apache2/sites-available/default-ssl.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/sites-available/default-ssl.conf rename to Sharp.Augeas/root/etc/apache2/sites-available/default-ssl.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/sites-available/sample_dotnet_apache_config.conf b/Sharp.Augeas/root/etc/apache2/sites-available/sample_dotnet_apache_config.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/sites-available/sample_dotnet_apache_config.conf rename to Sharp.Augeas/root/etc/apache2/sites-available/sample_dotnet_apache_config.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/sites-enabled/00-ci.codeliturgy.com-le-ssl.conf b/Sharp.Augeas/root/etc/apache2/sites-enabled/00-ci.codeliturgy.com-le-ssl.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/sites-enabled/00-ci.codeliturgy.com-le-ssl.conf rename to Sharp.Augeas/root/etc/apache2/sites-enabled/00-ci.codeliturgy.com-le-ssl.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/sites-enabled/01-git.codeliturgy.com.conf b/Sharp.Augeas/root/etc/apache2/sites-enabled/01-git.codeliturgy.com.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/sites-enabled/01-git.codeliturgy.com.conf rename to Sharp.Augeas/root/etc/apache2/sites-enabled/01-git.codeliturgy.com.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/sites-enabled/02-codeliturgy.com.conf b/Sharp.Augeas/root/etc/apache2/sites-enabled/02-codeliturgy.com.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/sites-enabled/02-codeliturgy.com.conf rename to Sharp.Augeas/root/etc/apache2/sites-enabled/02-codeliturgy.com.conf diff --git a/CodeLiturgy.Augeas/root/etc/apache2/sites-enabled/default-ssl.conf b/Sharp.Augeas/root/etc/apache2/sites-enabled/default-ssl.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apache2/sites-enabled/default-ssl.conf rename to Sharp.Augeas/root/etc/apache2/sites-enabled/default-ssl.conf diff --git a/CodeLiturgy.Augeas/root/etc/apt/apt.conf.d/01autoremove b/Sharp.Augeas/root/etc/apt/apt.conf.d/01autoremove similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apt/apt.conf.d/01autoremove rename to Sharp.Augeas/root/etc/apt/apt.conf.d/01autoremove diff --git a/CodeLiturgy.Augeas/root/etc/apt/apt.conf.d/01autoremove-kernels b/Sharp.Augeas/root/etc/apt/apt.conf.d/01autoremove-kernels similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apt/apt.conf.d/01autoremove-kernels rename to Sharp.Augeas/root/etc/apt/apt.conf.d/01autoremove-kernels diff --git a/CodeLiturgy.Augeas/root/etc/apt/apt.conf.d/50unattended-upgrades b/Sharp.Augeas/root/etc/apt/apt.conf.d/50unattended-upgrades similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apt/apt.conf.d/50unattended-upgrades rename to Sharp.Augeas/root/etc/apt/apt.conf.d/50unattended-upgrades diff --git a/CodeLiturgy.Augeas/root/etc/apt/apt.conf.d/70debconf b/Sharp.Augeas/root/etc/apt/apt.conf.d/70debconf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apt/apt.conf.d/70debconf rename to Sharp.Augeas/root/etc/apt/apt.conf.d/70debconf diff --git a/CodeLiturgy.Augeas/root/etc/apt/apt.conf.d/90cloud-init-pipelining b/Sharp.Augeas/root/etc/apt/apt.conf.d/90cloud-init-pipelining similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apt/apt.conf.d/90cloud-init-pipelining rename to Sharp.Augeas/root/etc/apt/apt.conf.d/90cloud-init-pipelining diff --git a/CodeLiturgy.Augeas/root/etc/apt/sources.list b/Sharp.Augeas/root/etc/apt/sources.list similarity index 100% rename from CodeLiturgy.Augeas/root/etc/apt/sources.list rename to Sharp.Augeas/root/etc/apt/sources.list diff --git a/CodeLiturgy.Augeas/root/etc/ceph/ceph.conf b/Sharp.Augeas/root/etc/ceph/ceph.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/ceph/ceph.conf rename to Sharp.Augeas/root/etc/ceph/ceph.conf diff --git a/CodeLiturgy.Augeas/root/etc/crontab b/Sharp.Augeas/root/etc/crontab similarity index 100% rename from CodeLiturgy.Augeas/root/etc/crontab rename to Sharp.Augeas/root/etc/crontab diff --git a/CodeLiturgy.Augeas/root/etc/default/im-config b/Sharp.Augeas/root/etc/default/im-config similarity index 100% rename from CodeLiturgy.Augeas/root/etc/default/im-config rename to Sharp.Augeas/root/etc/default/im-config diff --git a/CodeLiturgy.Augeas/root/etc/dput.cf b/Sharp.Augeas/root/etc/dput.cf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/dput.cf rename to Sharp.Augeas/root/etc/dput.cf diff --git a/CodeLiturgy.Augeas/root/etc/exports b/Sharp.Augeas/root/etc/exports similarity index 100% rename from CodeLiturgy.Augeas/root/etc/exports rename to Sharp.Augeas/root/etc/exports diff --git a/CodeLiturgy.Augeas/root/etc/fstab b/Sharp.Augeas/root/etc/fstab similarity index 100% rename from CodeLiturgy.Augeas/root/etc/fstab rename to Sharp.Augeas/root/etc/fstab diff --git a/CodeLiturgy.Augeas/root/etc/group b/Sharp.Augeas/root/etc/group similarity index 100% rename from CodeLiturgy.Augeas/root/etc/group rename to Sharp.Augeas/root/etc/group diff --git a/CodeLiturgy.Augeas/root/etc/grub.conf b/Sharp.Augeas/root/etc/grub.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/grub.conf rename to Sharp.Augeas/root/etc/grub.conf diff --git a/CodeLiturgy.Augeas/root/etc/gshadow b/Sharp.Augeas/root/etc/gshadow similarity index 100% rename from CodeLiturgy.Augeas/root/etc/gshadow rename to Sharp.Augeas/root/etc/gshadow diff --git a/CodeLiturgy.Augeas/root/etc/hosts b/Sharp.Augeas/root/etc/hosts similarity index 100% rename from CodeLiturgy.Augeas/root/etc/hosts rename to Sharp.Augeas/root/etc/hosts diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.d/ssl.conf b/Sharp.Augeas/root/etc/httpd/conf.d/ssl.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.d/ssl.conf rename to Sharp.Augeas/root/etc/httpd/conf.d/ssl.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-base.conf b/Sharp.Augeas/root/etc/httpd/conf.modules.d/00-base.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-base.conf rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/00-base.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-dav.conf b/Sharp.Augeas/root/etc/httpd/conf.modules.d/00-dav.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-dav.conf rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/00-dav.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-lua.conf b/Sharp.Augeas/root/etc/httpd/conf.modules.d/00-lua.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-lua.conf rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/00-lua.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-mpm.conf b/Sharp.Augeas/root/etc/httpd/conf.modules.d/00-mpm.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-mpm.conf rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/00-mpm.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-optional.conf b/Sharp.Augeas/root/etc/httpd/conf.modules.d/00-optional.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-optional.conf rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/00-optional.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-proxy.conf b/Sharp.Augeas/root/etc/httpd/conf.modules.d/00-proxy.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-proxy.conf rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/00-proxy.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-systemd.conf b/Sharp.Augeas/root/etc/httpd/conf.modules.d/00-systemd.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/00-systemd.conf rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/00-systemd.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/01-cgi.conf b/Sharp.Augeas/root/etc/httpd/conf.modules.d/01-cgi.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/01-cgi.conf rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/01-cgi.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/10-h2.conf b/Sharp.Augeas/root/etc/httpd/conf.modules.d/10-h2.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/10-h2.conf rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/10-h2.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/10-mod_dnssd.conf b/Sharp.Augeas/root/etc/httpd/conf.modules.d/10-mod_dnssd.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/10-mod_dnssd.conf rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/10-mod_dnssd.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/10-proxy_h2.conf b/Sharp.Augeas/root/etc/httpd/conf.modules.d/10-proxy_h2.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/10-proxy_h2.conf rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/10-proxy_h2.conf diff --git a/CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/README b/Sharp.Augeas/root/etc/httpd/conf.modules.d/README similarity index 100% rename from CodeLiturgy.Augeas/root/etc/httpd/conf.modules.d/README rename to Sharp.Augeas/root/etc/httpd/conf.modules.d/README diff --git a/CodeLiturgy.Augeas/root/etc/inittab b/Sharp.Augeas/root/etc/inittab similarity index 100% rename from CodeLiturgy.Augeas/root/etc/inittab rename to Sharp.Augeas/root/etc/inittab diff --git a/CodeLiturgy.Augeas/root/etc/kdump.conf b/Sharp.Augeas/root/etc/kdump.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/kdump.conf rename to Sharp.Augeas/root/etc/kdump.conf diff --git a/CodeLiturgy.Augeas/root/etc/krb5.conf b/Sharp.Augeas/root/etc/krb5.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/krb5.conf rename to Sharp.Augeas/root/etc/krb5.conf diff --git a/CodeLiturgy.Augeas/root/etc/logrotate.d/acpid b/Sharp.Augeas/root/etc/logrotate.d/acpid similarity index 100% rename from CodeLiturgy.Augeas/root/etc/logrotate.d/acpid rename to Sharp.Augeas/root/etc/logrotate.d/acpid diff --git a/CodeLiturgy.Augeas/root/etc/logrotate.d/rpm b/Sharp.Augeas/root/etc/logrotate.d/rpm similarity index 100% rename from CodeLiturgy.Augeas/root/etc/logrotate.d/rpm rename to Sharp.Augeas/root/etc/logrotate.d/rpm diff --git a/CodeLiturgy.Augeas/root/etc/modules.conf b/Sharp.Augeas/root/etc/modules.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/modules.conf rename to Sharp.Augeas/root/etc/modules.conf diff --git a/CodeLiturgy.Augeas/root/etc/multipath.conf b/Sharp.Augeas/root/etc/multipath.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/multipath.conf rename to Sharp.Augeas/root/etc/multipath.conf diff --git a/CodeLiturgy.Augeas/root/etc/network/interfaces b/Sharp.Augeas/root/etc/network/interfaces similarity index 100% rename from CodeLiturgy.Augeas/root/etc/network/interfaces rename to Sharp.Augeas/root/etc/network/interfaces diff --git a/CodeLiturgy.Augeas/root/etc/nginx/nginx.conf b/Sharp.Augeas/root/etc/nginx/nginx.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/nginx/nginx.conf rename to Sharp.Augeas/root/etc/nginx/nginx.conf diff --git a/CodeLiturgy.Augeas/root/etc/nrpe.cfg b/Sharp.Augeas/root/etc/nrpe.cfg similarity index 100% rename from CodeLiturgy.Augeas/root/etc/nrpe.cfg rename to Sharp.Augeas/root/etc/nrpe.cfg diff --git a/CodeLiturgy.Augeas/root/etc/nslcd.conf b/Sharp.Augeas/root/etc/nslcd.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/nslcd.conf rename to Sharp.Augeas/root/etc/nslcd.conf diff --git a/CodeLiturgy.Augeas/root/etc/ntp.conf b/Sharp.Augeas/root/etc/ntp.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/ntp.conf rename to Sharp.Augeas/root/etc/ntp.conf diff --git a/CodeLiturgy.Augeas/root/etc/pam.d/login b/Sharp.Augeas/root/etc/pam.d/login similarity index 100% rename from CodeLiturgy.Augeas/root/etc/pam.d/login rename to Sharp.Augeas/root/etc/pam.d/login diff --git a/CodeLiturgy.Augeas/root/etc/pam.d/newrole b/Sharp.Augeas/root/etc/pam.d/newrole similarity index 100% rename from CodeLiturgy.Augeas/root/etc/pam.d/newrole rename to Sharp.Augeas/root/etc/pam.d/newrole diff --git a/CodeLiturgy.Augeas/root/etc/pam.d/postgresql b/Sharp.Augeas/root/etc/pam.d/postgresql similarity index 100% rename from CodeLiturgy.Augeas/root/etc/pam.d/postgresql rename to Sharp.Augeas/root/etc/pam.d/postgresql diff --git a/CodeLiturgy.Augeas/root/etc/passwd b/Sharp.Augeas/root/etc/passwd similarity index 100% rename from CodeLiturgy.Augeas/root/etc/passwd rename to Sharp.Augeas/root/etc/passwd diff --git a/CodeLiturgy.Augeas/root/etc/php.ini b/Sharp.Augeas/root/etc/php.ini similarity index 100% rename from CodeLiturgy.Augeas/root/etc/php.ini rename to Sharp.Augeas/root/etc/php.ini diff --git a/CodeLiturgy.Augeas/root/etc/puppet/puppet.conf b/Sharp.Augeas/root/etc/puppet/puppet.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/puppet/puppet.conf rename to Sharp.Augeas/root/etc/puppet/puppet.conf diff --git a/CodeLiturgy.Augeas/root/etc/resolv.conf b/Sharp.Augeas/root/etc/resolv.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/resolv.conf rename to Sharp.Augeas/root/etc/resolv.conf diff --git a/CodeLiturgy.Augeas/root/etc/samba/smb.conf b/Sharp.Augeas/root/etc/samba/smb.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/samba/smb.conf rename to Sharp.Augeas/root/etc/samba/smb.conf diff --git a/CodeLiturgy.Augeas/root/etc/security/limits.conf b/Sharp.Augeas/root/etc/security/limits.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/security/limits.conf rename to Sharp.Augeas/root/etc/security/limits.conf diff --git a/CodeLiturgy.Augeas/root/etc/selinux/semanage.conf b/Sharp.Augeas/root/etc/selinux/semanage.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/selinux/semanage.conf rename to Sharp.Augeas/root/etc/selinux/semanage.conf diff --git a/CodeLiturgy.Augeas/root/etc/services b/Sharp.Augeas/root/etc/services similarity index 100% rename from CodeLiturgy.Augeas/root/etc/services rename to Sharp.Augeas/root/etc/services diff --git a/CodeLiturgy.Augeas/root/etc/shadow b/Sharp.Augeas/root/etc/shadow similarity index 100% rename from CodeLiturgy.Augeas/root/etc/shadow rename to Sharp.Augeas/root/etc/shadow diff --git a/CodeLiturgy.Augeas/root/etc/squid/squid.conf b/Sharp.Augeas/root/etc/squid/squid.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/squid/squid.conf rename to Sharp.Augeas/root/etc/squid/squid.conf diff --git a/CodeLiturgy.Augeas/root/etc/ssh/ssh_config b/Sharp.Augeas/root/etc/ssh/ssh_config similarity index 100% rename from CodeLiturgy.Augeas/root/etc/ssh/ssh_config rename to Sharp.Augeas/root/etc/ssh/ssh_config diff --git a/CodeLiturgy.Augeas/root/etc/ssh/sshd_config b/Sharp.Augeas/root/etc/ssh/sshd_config similarity index 100% rename from CodeLiturgy.Augeas/root/etc/ssh/sshd_config rename to Sharp.Augeas/root/etc/ssh/sshd_config diff --git a/CodeLiturgy.Augeas/root/etc/sudoers b/Sharp.Augeas/root/etc/sudoers similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sudoers rename to Sharp.Augeas/root/etc/sudoers diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/anaconda b/Sharp.Augeas/root/etc/sysconfig/anaconda similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/anaconda rename to Sharp.Augeas/root/etc/sysconfig/anaconda diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/atd b/Sharp.Augeas/root/etc/sysconfig/atd similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/atd rename to Sharp.Augeas/root/etc/sysconfig/atd diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/authconfig b/Sharp.Augeas/root/etc/sysconfig/authconfig similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/authconfig rename to Sharp.Augeas/root/etc/sysconfig/authconfig diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/autofs b/Sharp.Augeas/root/etc/sysconfig/autofs similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/autofs rename to Sharp.Augeas/root/etc/sysconfig/autofs diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/clock b/Sharp.Augeas/root/etc/sysconfig/clock similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/clock rename to Sharp.Augeas/root/etc/sysconfig/clock diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/cpuspeed b/Sharp.Augeas/root/etc/sysconfig/cpuspeed similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/cpuspeed rename to Sharp.Augeas/root/etc/sysconfig/cpuspeed diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/crond b/Sharp.Augeas/root/etc/sysconfig/crond similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/crond rename to Sharp.Augeas/root/etc/sysconfig/crond diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/crontab b/Sharp.Augeas/root/etc/sysconfig/crontab similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/crontab rename to Sharp.Augeas/root/etc/sysconfig/crontab diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/firstboot b/Sharp.Augeas/root/etc/sysconfig/firstboot similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/firstboot rename to Sharp.Augeas/root/etc/sysconfig/firstboot diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/grub b/Sharp.Augeas/root/etc/sysconfig/grub similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/grub rename to Sharp.Augeas/root/etc/sysconfig/grub diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/hsqldb b/Sharp.Augeas/root/etc/sysconfig/hsqldb similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/hsqldb rename to Sharp.Augeas/root/etc/sysconfig/hsqldb diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/httpd b/Sharp.Augeas/root/etc/sysconfig/httpd similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/httpd rename to Sharp.Augeas/root/etc/sysconfig/httpd diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/hw-uuid b/Sharp.Augeas/root/etc/sysconfig/hw-uuid similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/hw-uuid rename to Sharp.Augeas/root/etc/sysconfig/hw-uuid diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/hwconf b/Sharp.Augeas/root/etc/sysconfig/hwconf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/hwconf rename to Sharp.Augeas/root/etc/sysconfig/hwconf diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/i18n b/Sharp.Augeas/root/etc/sysconfig/i18n similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/i18n rename to Sharp.Augeas/root/etc/sysconfig/i18n diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/init b/Sharp.Augeas/root/etc/sysconfig/init similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/init rename to Sharp.Augeas/root/etc/sysconfig/init diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/iptables b/Sharp.Augeas/root/etc/sysconfig/iptables similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/iptables rename to Sharp.Augeas/root/etc/sysconfig/iptables diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/iptables-config b/Sharp.Augeas/root/etc/sysconfig/iptables-config similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/iptables-config rename to Sharp.Augeas/root/etc/sysconfig/iptables-config diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/irda b/Sharp.Augeas/root/etc/sysconfig/irda similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/irda rename to Sharp.Augeas/root/etc/sysconfig/irda diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/irqbalance b/Sharp.Augeas/root/etc/sysconfig/irqbalance similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/irqbalance rename to Sharp.Augeas/root/etc/sysconfig/irqbalance diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/kdump b/Sharp.Augeas/root/etc/sysconfig/kdump similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/kdump rename to Sharp.Augeas/root/etc/sysconfig/kdump diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/kernel b/Sharp.Augeas/root/etc/sysconfig/kernel similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/kernel rename to Sharp.Augeas/root/etc/sysconfig/kernel diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/keyboard b/Sharp.Augeas/root/etc/sysconfig/keyboard similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/keyboard rename to Sharp.Augeas/root/etc/sysconfig/keyboard diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/kudzu b/Sharp.Augeas/root/etc/sysconfig/kudzu similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/kudzu rename to Sharp.Augeas/root/etc/sysconfig/kudzu diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/libvirtd b/Sharp.Augeas/root/etc/sysconfig/libvirtd similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/libvirtd rename to Sharp.Augeas/root/etc/sysconfig/libvirtd diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/lircd b/Sharp.Augeas/root/etc/sysconfig/lircd similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/lircd rename to Sharp.Augeas/root/etc/sysconfig/lircd diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/lm_sensors b/Sharp.Augeas/root/etc/sysconfig/lm_sensors similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/lm_sensors rename to Sharp.Augeas/root/etc/sysconfig/lm_sensors diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/nasd b/Sharp.Augeas/root/etc/sysconfig/nasd similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/nasd rename to Sharp.Augeas/root/etc/sysconfig/nasd diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/netconsole b/Sharp.Augeas/root/etc/sysconfig/netconsole similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/netconsole rename to Sharp.Augeas/root/etc/sysconfig/netconsole diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/netdump_id_dsa.pub b/Sharp.Augeas/root/etc/sysconfig/netdump_id_dsa.pub similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/netdump_id_dsa.pub rename to Sharp.Augeas/root/etc/sysconfig/netdump_id_dsa.pub diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/network b/Sharp.Augeas/root/etc/sysconfig/network similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/network rename to Sharp.Augeas/root/etc/sysconfig/network diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-br0 b/Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-br0 similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-br0 rename to Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-br0 diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-eth0 b/Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-eth0 similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-eth0 rename to Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-eth0 diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-lo b/Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-lo similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-lo rename to Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-lo diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-lo.rpmsave b/Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-lo.rpmsave similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-lo.rpmsave rename to Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-lo.rpmsave diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-weird [!] (used to fail) b/Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-weird [!] (used to fail) similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-weird [!] (used to fail) rename to Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-weird [!] (used to fail) diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-wlan0 b/Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-wlan0 similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/network-scripts/ifcfg-wlan0 rename to Sharp.Augeas/root/etc/sysconfig/network-scripts/ifcfg-wlan0 diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/nfs b/Sharp.Augeas/root/etc/sysconfig/nfs similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/nfs rename to Sharp.Augeas/root/etc/sysconfig/nfs diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/ntpd b/Sharp.Augeas/root/etc/sysconfig/ntpd similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/ntpd rename to Sharp.Augeas/root/etc/sysconfig/ntpd diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/prelink b/Sharp.Augeas/root/etc/sysconfig/prelink similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/prelink rename to Sharp.Augeas/root/etc/sysconfig/prelink diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/puppet b/Sharp.Augeas/root/etc/sysconfig/puppet similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/puppet rename to Sharp.Augeas/root/etc/sysconfig/puppet diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/readonly-root b/Sharp.Augeas/root/etc/sysconfig/readonly-root similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/readonly-root rename to Sharp.Augeas/root/etc/sysconfig/readonly-root diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/rsyslog b/Sharp.Augeas/root/etc/sysconfig/rsyslog similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/rsyslog rename to Sharp.Augeas/root/etc/sysconfig/rsyslog diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/samba b/Sharp.Augeas/root/etc/sysconfig/samba similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/samba rename to Sharp.Augeas/root/etc/sysconfig/samba diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/saslauthd b/Sharp.Augeas/root/etc/sysconfig/saslauthd similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/saslauthd rename to Sharp.Augeas/root/etc/sysconfig/saslauthd diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/smartmontools b/Sharp.Augeas/root/etc/sysconfig/smartmontools similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/smartmontools rename to Sharp.Augeas/root/etc/sysconfig/smartmontools diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/spamassassin b/Sharp.Augeas/root/etc/sysconfig/spamassassin similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/spamassassin rename to Sharp.Augeas/root/etc/sysconfig/spamassassin diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/sysstat b/Sharp.Augeas/root/etc/sysconfig/sysstat similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/sysstat rename to Sharp.Augeas/root/etc/sysconfig/sysstat diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/sysstat.ioconf b/Sharp.Augeas/root/etc/sysconfig/sysstat.ioconf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/sysstat.ioconf rename to Sharp.Augeas/root/etc/sysconfig/sysstat.ioconf diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/system-config-firewall b/Sharp.Augeas/root/etc/sysconfig/system-config-firewall similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/system-config-firewall rename to Sharp.Augeas/root/etc/sysconfig/system-config-firewall diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/system-config-securitylevel b/Sharp.Augeas/root/etc/sysconfig/system-config-securitylevel similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/system-config-securitylevel rename to Sharp.Augeas/root/etc/sysconfig/system-config-securitylevel diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/system-config-users b/Sharp.Augeas/root/etc/sysconfig/system-config-users similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/system-config-users rename to Sharp.Augeas/root/etc/sysconfig/system-config-users diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/vncservers b/Sharp.Augeas/root/etc/sysconfig/vncservers similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/vncservers rename to Sharp.Augeas/root/etc/sysconfig/vncservers diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/wpa_supplicant b/Sharp.Augeas/root/etc/sysconfig/wpa_supplicant similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/wpa_supplicant rename to Sharp.Augeas/root/etc/sysconfig/wpa_supplicant diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/xend b/Sharp.Augeas/root/etc/sysconfig/xend similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/xend rename to Sharp.Augeas/root/etc/sysconfig/xend diff --git a/CodeLiturgy.Augeas/root/etc/sysconfig/xendomains b/Sharp.Augeas/root/etc/sysconfig/xendomains similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysconfig/xendomains rename to Sharp.Augeas/root/etc/sysconfig/xendomains diff --git a/CodeLiturgy.Augeas/root/etc/sysctl.conf b/Sharp.Augeas/root/etc/sysctl.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/sysctl.conf rename to Sharp.Augeas/root/etc/sysctl.conf diff --git a/CodeLiturgy.Augeas/root/etc/syslog.conf b/Sharp.Augeas/root/etc/syslog.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/syslog.conf rename to Sharp.Augeas/root/etc/syslog.conf diff --git a/CodeLiturgy.Augeas/root/etc/vsftpd.conf b/Sharp.Augeas/root/etc/vsftpd.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/vsftpd.conf rename to Sharp.Augeas/root/etc/vsftpd.conf diff --git a/CodeLiturgy.Augeas/root/etc/xinetd.conf b/Sharp.Augeas/root/etc/xinetd.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/xinetd.conf rename to Sharp.Augeas/root/etc/xinetd.conf diff --git a/CodeLiturgy.Augeas/root/etc/xinetd.d/cvs b/Sharp.Augeas/root/etc/xinetd.d/cvs similarity index 100% rename from CodeLiturgy.Augeas/root/etc/xinetd.d/cvs rename to Sharp.Augeas/root/etc/xinetd.d/cvs diff --git a/CodeLiturgy.Augeas/root/etc/xinetd.d/rsync b/Sharp.Augeas/root/etc/xinetd.d/rsync similarity index 100% rename from CodeLiturgy.Augeas/root/etc/xinetd.d/rsync rename to Sharp.Augeas/root/etc/xinetd.d/rsync diff --git a/CodeLiturgy.Augeas/root/etc/yum.conf b/Sharp.Augeas/root/etc/yum.conf similarity index 100% rename from CodeLiturgy.Augeas/root/etc/yum.conf rename to Sharp.Augeas/root/etc/yum.conf diff --git a/CodeLiturgy.Augeas/root/etc/yum.repos.d/fedora-updates.repo b/Sharp.Augeas/root/etc/yum.repos.d/fedora-updates.repo similarity index 100% rename from CodeLiturgy.Augeas/root/etc/yum.repos.d/fedora-updates.repo rename to Sharp.Augeas/root/etc/yum.repos.d/fedora-updates.repo diff --git a/CodeLiturgy.Augeas/root/etc/yum.repos.d/fedora.repo b/Sharp.Augeas/root/etc/yum.repos.d/fedora.repo similarity index 100% rename from CodeLiturgy.Augeas/root/etc/yum.repos.d/fedora.repo rename to Sharp.Augeas/root/etc/yum.repos.d/fedora.repo diff --git a/CodeLiturgy.Augeas/root/etc/yum.repos.d/remi.repo b/Sharp.Augeas/root/etc/yum.repos.d/remi.repo similarity index 100% rename from CodeLiturgy.Augeas/root/etc/yum.repos.d/remi.repo rename to Sharp.Augeas/root/etc/yum.repos.d/remi.repo diff --git a/CodeLiturgy.Augeas/root/pairs.txt b/Sharp.Augeas/root/pairs.txt similarity index 100% rename from CodeLiturgy.Augeas/root/pairs.txt rename to Sharp.Augeas/root/pairs.txt diff --git a/CodeLiturgy.Augeas/root/var/spool/cron/root b/Sharp.Augeas/root/var/spool/cron/root similarity index 100% rename from CodeLiturgy.Augeas/root/var/spool/cron/root rename to Sharp.Augeas/root/var/spool/cron/root diff --git a/CodeLiturgy.Augeas/test/AugSettings_Wrapper.cs b/Sharp.Augeas/test/AugSettings_Wrapper.cs similarity index 95% rename from CodeLiturgy.Augeas/test/AugSettings_Wrapper.cs rename to Sharp.Augeas/test/AugSettings_Wrapper.cs index 21d5cf6..3c402c4 100644 --- a/CodeLiturgy.Augeas/test/AugSettings_Wrapper.cs +++ b/Sharp.Augeas/test/AugSettings_Wrapper.cs @@ -1,6 +1,6 @@ using System.Runtime.InteropServices; -namespace CodeLiturgy.Augeas.Test; +namespace Sharp.Augeas.Test; class AugSettings_Wrapper : IDisposable {