Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#1872 - firestarter 1.0.0 PKGBUILD, install fire, and init script
Attached to Project:
Arch Linux
Opened by Graham Forest (vitaminmoo) - Friday, 03 December 2004, 01:36 GMT
Last edited by Dale Blount (dale) - Friday, 03 December 2004, 02:15 GMT
Opened by Graham Forest (vitaminmoo) - Friday, 03 December 2004, 01:36 GMT
Last edited by Dale Blount (dale) - Friday, 03 December 2004, 02:15 GMT
|
DetailsI'm attaching an updated PKGBUILD, firestarter.install, and firestarter.init (init script).
|
This task depends upon
Closed by Tobias Kieslich (tobias)
Sunday, 09 January 2005, 09:07 GMT
Reason for closing: Fixed
Additional comments about closing: ok I close this one then and move it to extra
Sunday, 09 January 2005, 09:07 GMT
Reason for closing: Fixed
Additional comments about closing: ok I close this one then and move it to extra
Who likes to use it with sysklogd should use srcpack I think. Changes will go to 1.0.1
Any thoughts or comments?
} else { /* Try to guess some default syslog location */
if (g_file_test ("/var/log/messages.log", G_FILE_TEST_EXISTS))
path = g_strdup ("/var/log/messages.log");
else
path = NULL;
}
let's enter another if condition in there, so that syslog-ng wins if either are installed and sysklog gets a chance if syslog-ng is not installed.
} else { /* Try to guess some default syslog location */
if (g_file_test ("/var/log/messages.log", G_FILE_TEST_EXISTS))
path = g_strdup ("/var/log/messages.log");
else if (g_file_test ("/var/log/messages", G_FILE_TEST_EXISTS))
path = g_strdup ("/var/log/messages");
else
path = NULL;
}
actually I consider these issues to be configurable through a runtime control, maybe I make a patch and commit things to the author.
Graham, please this code goes to testing. Could you check if this will work for you?
*poke*