Displaying 5 results from an estimated 5 matches for "232,4".
2002 Nov 20
0
[PATCH #9] Password expiration via /bin/passwd.
...mapping),
+ "ssh", &msg) < 0)
+ msg = NULL;
+ buffer_append(&login_message, msg, strlen(msg));
+ } else {
+ debug("authenticate() failed for user %s: %.100s", pw->pw_name, authmsg);
+ }
+ if (authmsg)
+ xfree(authmsg);
return(authsuccess);
#endif
@@ -232,4 +246,43 @@
/* Authentication is accepted if the encrypted passwords are identical. */
return (strcmp(encrypted_password, pw_password) == 0);
#endif /* !USE_PAM && !HAVE_OSF_SIA */
+}
+
+/*
+ * Perform generic password change via tty
+ * Like do_pam_chauthtok(), it throws a fatal erro...
2009 May 15
0
[PATCH server] final cleanup for service layer refactoring.
...return unless authorize_action(privilege)
- end
+ json_tree_internal(:svc_modify, :select_hardware_pools)
+ end
+ def json_tree_internal(perm_method, filter_method)
+ self.send(perm_method, params[:id]) if params[:id]
if @pool
pools = @pool.children
open_list = []
@@ -232,4 +227,9 @@ class HardwareController < PoolController
render :layout => 'popup'
end
+ def addhost
+ svc_modify(params[:id])
+ render :layout => 'popup'
+ end
+
end
diff --git a/src/app/controllers/host_controller.rb b/src/app/controllers/host_controller.r...
2011 Mar 08
6
[PATCH v1 0/6] btrfs: scrub
This series adds an initial implementation for scrub. It works quite
straightforward. The usermode issues an ioctl for each device in the
fs. For each device, it enumerates the allocated device chunks. For
each chunk, the contained extents are enumerated and the data checksums
fetched. The extents are read sequentially and the checksums verified.
If an error occurs (checksum or EIO), a good copy
2013 Aug 21
10
[PATCH v3 0/7] Enable Drivers for Intel MIC X100 Coprocessors.
ChangeLog:
=========
v2 => v3:
a) Patch 1 data structure cleanups, header file include cleanups,
IDA interface reuse and switching to device_create_with_groups(..)
as per feedback from Greg Kroah-Hartman.
b) Patch 7 signal documentation, sleep workaround removal and sysfs
access API cleanups as per feedback from Michael S. Tsirkin.
v1 => v2: @ http://lwn.net/Articles/563131/
a)
2013 Aug 21
10
[PATCH v3 0/7] Enable Drivers for Intel MIC X100 Coprocessors.
ChangeLog:
=========
v2 => v3:
a) Patch 1 data structure cleanups, header file include cleanups,
IDA interface reuse and switching to device_create_with_groups(..)
as per feedback from Greg Kroah-Hartman.
b) Patch 7 signal documentation, sleep workaround removal and sysfs
access API cleanups as per feedback from Michael S. Tsirkin.
v1 => v2: @ http://lwn.net/Articles/563131/
a)