]> git.donarmstrong.com Git - zsh.git/commitdiff
ulimit instead of no core specific
authormartin f. krafft <madduck@madduck.net>
Wed, 7 May 2008 18:25:23 +0000 (19:25 +0100)
committermartin f. krafft <madduck@madduck.net>
Wed, 7 May 2008 18:25:23 +0000 (19:25 +0100)
.zsh/zprofile/00_nocores [deleted file]
.zsh/zprofile/00_ulimit [new file with mode: 0644]

diff --git a/.zsh/zprofile/00_nocores b/.zsh/zprofile/00_nocores
deleted file mode 100644 (file)
index d295464..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-# zprofile/00_nocores
-#
-# Turns of core file generation
-#
-# Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
-# Released under the terms of the Artistic Licence 2.0
-#
-# Source repository: http://git.madduck.net/v/etc/zsh.git
-#
-
-ulimit -c 0
-
-# vim:ft=zsh
diff --git a/.zsh/zprofile/00_ulimit b/.zsh/zprofile/00_ulimit
new file mode 100644 (file)
index 0000000..84a0961
--- /dev/null
@@ -0,0 +1,14 @@
+# zprofile/00_ulimit
+#
+# sets process limits
+#
+# Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
+# Released under the terms of the Artistic Licence 2.0
+#
+# Source repository: http://git.madduck.net/v/etc/zsh.git
+#
+
+# disable core files
+ulimit -c 0
+
+# vim:ft=zsh