summaryrefslogtreecommitdiff
path: root/modules/syslog/syslog.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-08-18 01:54:36 +0000
committerDries Buytaert <dries@buytaert.net>2010-08-18 01:54:36 +0000
commit8905544936b046fd49e1697acd9ff633c7d5cf15 (patch)
tree3a98014d28cc5316ac72b6a15327bcf5a8a166e5 /modules/syslog/syslog.install
parent26dce525a2928967aaa34280e5e36d9a46226d75 (diff)
downloadbrdo-8905544936b046fd49e1697acd9ff633c7d5cf15.tar.gz
brdo-8905544936b046fd49e1697acd9ff633c7d5cf15.tar.bz2
- Patch #881540 by bjaspan: openlog() identity argument and unrelated bug fixes.
Diffstat (limited to 'modules/syslog/syslog.install')
-rw-r--r--modules/syslog/syslog.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/syslog/syslog.install b/modules/syslog/syslog.install
new file mode 100644
index 000000000..feebb6326
--- /dev/null
+++ b/modules/syslog/syslog.install
@@ -0,0 +1,16 @@
+<?php
+// $Id$
+
+/**
+ * @file
+ * Install, update and uninstall functions for the syslog module.
+ */
+
+/**
+ * Implements hook_uninstall().
+ */
+function syslog_uninstall() {
+ variable_del('syslog_identity');
+ variable_del('syslog_facility');
+ variable_del('syslog_format');
+}