Displaying 2 results from an estimated 2 matches for "no_limit".
Did you mean:
io_limit
2016 Aug 19
1
Storing Quotas in Active Directory
On Thu, Aug 18, 2016 at 7:07 AM, Rowland Penny via samba <
samba at lists.samba.org> wrote:
>
> Hi Greg, I take it what we discussed last time didn't work.
>
I did in fact create some custom schema mods that can store the quota
information, but it just seems to be an odd way to do it. I am surprised
that others uses Samba 4 on *nix file servers don't talk about this
2001 Feb 08
0
openssh2.3.0p1 and /etc/limits
...memzero(limits, sizeof(limits));
+ memzero(deflimits, sizeof(deflimits));
+ memzero(tempbuf, sizeof(tempbuf));
+
+ /* start the checks */
+ fil = fopen(LIMITS_FILE, "r");
+ if (fil == NULL) {
+#if 0 /* no limits file is ok, not everyone is a BOFH :-). --marekm */
+ syslog(LOG_WARNING, NO_LIMITS, uname, LIMITS_FILE);
+#endif
+ return 0;
+ }
+ /* The limits file have the following format:
+ * - '#' (comment) chars only as first chars on a line;
+ * - username must start on first column
+ * A better (smarter) checking should be done --cristiang */
+ while (fgets(buf, 1024, fil)...