diff options
author | ChrisTX <xpipe@hotmail.de> | 2012-09-23 12:30:30 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-10-04 15:14:04 +0200 |
commit | c2f7fc047c2e5bbb899c820590ce07fee593b28f (patch) | |
tree | dca97896004c71a484d6dd189e78e40732a5f041 /make/template/inspircd | |
parent | 6f5414e1bf63228471e078f29a5889f44e598a8c (diff) |
Replace hardcoded paths with configurable ones
This patchset aims to ease the packaging of InspIRCd for a system-wide installation scenario.
Changes in detail:
configure: Add the options --log-path and --data-path
m_ssl_gnutls, openssl: Change the hardcoded "conf/" to the existent CONFIG_PATH macro
m_xline_db: Make the location of xline.db configurable. It will use --data-path as default value, but this can be
changed using the configuration files.
Diffstat (limited to 'make/template/inspircd')
-rw-r--r-- | make/template/inspircd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/template/inspircd b/make/template/inspircd index a75140c5d..88eb7ee6a 100644 --- a/make/template/inspircd +++ b/make/template/inspircd @@ -26,7 +26,7 @@ use Fcntl; my $basepath = "@BASE_DIR@"; my $confpath = "@CONFIG_DIR@/"; my $binpath = "@BINARY_DIR@"; -my $runpath = "@BASE_DIR@"; +my $runpath = "@DATA_DIR@"; my $valgrindlogpath = "$basepath/valgrindlogs"; my $executable = "@EXECUTABLE@"; my $version = "@VERSION@"; @@ -382,7 +382,7 @@ sub getpidfile } # End of includes / No includes found. Using default. - $pidfile = $runpath . "/data/inspircd.pid"; + $pidfile = $runpath . "/inspircd.pid"; } sub getstatus { |