summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2019-07-03 09:27:09 +0100
committerPeter Powell <petpow@saberuk.com>2019-07-03 10:02:13 +0100
commit25359c08847a447544b67d6c60d99ad48168ca5e (patch)
tree9808e4568d9be6efb463d3b64b794d87580ddfc1 /make
parentce6c5fc3de38ab42173d85c3c91bb2ac34a0f792 (diff)
Fix finding files when the init script is not in the cwd.
This should fix #1621.
Diffstat (limited to 'make')
-rw-r--r--make/template/inspircd32
1 files changed, 15 insertions, 17 deletions
diff --git a/make/template/inspircd b/make/template/inspircd
index 91b269412..d0978ee29 100644
--- a/make/template/inspircd
+++ b/make/template/inspircd
@@ -50,7 +50,7 @@ use constant {
my $scriptpath = "@SCRIPT_DIR@";
my $basepath = "@BASE_DIR@";
-my $confpath = "@CONFIG_DIR@/";
+my $confpath = "@CONFIG_DIR@";
my $binpath = "@BINARY_DIR@";
my $runpath = "@BASE_DIR@";
my $datadir = "@DATA_DIR@";
@@ -59,6 +59,15 @@ my $executable = "inspircd";
my $version = "@VERSION_FULL@";
my $uid = "@UID@";
+sub expand_fragment($$) {
+ my ($base, $fragment) = @_;
+ if ($fragment =~ /^\//) {
+ return $fragment;
+ } else {
+ return "$base/$fragment";
+ }
+}
+
if (!(grep { $_ eq '--runasroot' } @ARGV) && ($< == 0 || $> == 0)) {
if ($uid !~ /^\d+$/) {
# Named UID, look it up
@@ -88,7 +97,7 @@ for my $a (@ARGV)
}
}
if (!defined $conf) {
- $conf = $confpath . "inspircd.conf";
+ $conf = expand_fragment $confpath, "inspircd.conf";
push @ARGV, '--config='.$conf;
}
@@ -351,11 +360,9 @@ sub getpidfile
if ($pid ne "") {
return;
}
- # Are We using a relative path?
- if ($file !~ /^\//) {
- # Convert it to a full path.
- $file = $runpath .'/'. $file;
- }
+
+ # Expand any relative paths.
+ $file = expand_fragment $confpath, $file;
# Have we checked this file before?
return if $filesparsed{$file};
@@ -377,16 +384,7 @@ sub getpidfile
if (($i =~ /<pid file=\"(\S+)\">/i) && ($i !~ /^#/))
{
# Set the PID file and return.
- $pidfile = $1;
- if (-f $pidfile)
- {
- return;
- }
- elsif (-f "$runpath/$pidfile")
- {
- $pidfile = "$runpath/$pidfile";
- return;
- }
+ $pidfile = expand_fragment $datadir, $1;
return;
}
}