summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2013-07-21 18:12:00 +0000
committerMatthew Jordan <mjordan@digium.com>2013-07-21 18:12:00 +0000
commit54803338b48e9829cdd80d34327b1c24f3c11d84 (patch)
tree4690609015cac59761612bc4e8c6e8d351a9c9e8 /configs
parentbdb1c6bfb03b5734f637f8678c1bc08910c1bc82 (diff)
Always install safe_asterisk; add configuration file support
This patch modifies the behavior of safe_asterisk in two ways: (1) It modifies the Asterisk Makefile such that safe_asterisk is always installed on a 'make install'. This was done as bugfixes in the safe_asterisk script were not applied in previous version of Asterisk without first removing the old version of the script. (2) In order to keep a newly installed version of safe_asterisk from impacting local modifications, a new config file - safe_asterisk.conf.sample - has been provided. Settings that were previously modified in safe_asterisk can be set there instead. (closes issue ASTERISK-21965) Reported by: Jeremy Kister patches: safe_asterisk.patch uploaded by jkister (License 6232) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@394939 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'configs')
-rw-r--r--configs/safe_asterisk.conf.sample20
1 files changed, 20 insertions, 0 deletions
diff --git a/configs/safe_asterisk.conf.sample b/configs/safe_asterisk.conf.sample
new file mode 100644
index 000000000..9e560f3a5
--- /dev/null
+++ b/configs/safe_asterisk.conf.sample
@@ -0,0 +1,20 @@
+Used by safe_asterisk startup script
+
+# comment this line out to have this script _not_ kill all mpg123 processes when
+# asterisk exits
+KILLALLMPG123=1
+
+# run asterisk with this priority
+PRIORITY=0
+
+# set system filemax on supported OSes if this variable is set
+# SYSMAXFILES=262144
+
+# Asterisk allows full permissions by default, so set a umask, if you want
+# restricted permissions.
+# UMASK=022
+
+# set max files open with ulimit. On linux systems, this will be automatically
+# set to the system's maximum files open devided by two, if not set here.
+# MAXFILES=32768
+