I use this category to NSTask to handle administrator privilege task easily. I've made a simple installer that create a backup, remove the original file and copy the new one. This works well with 10 files or less. Here's the code.
for (NSDictionary* oneOption in self.choosedOption) {
NSArray* destinationComponent = [[oneOption objectForKey:@"destination"] componentsSeparatedByString:@","];
NSArray* pathComponent = [[oneOption objectForKey:@"fileName"] componentsSeparatedByString:@","];
for (NSString* path in pathComponent) {
NSString* destination = [destinationComponent objectAtIndex:[pathComponent indexOfObject:path]];
NSString* pathOfResource = [resourcePath stringByAppendingPathComponent:path];
NSArray* arguments = [NSArray arrayWithObjects:destination, [destination stringByAppendingString:@".backup"], nil];
[NSTask stringByLaunchingPath:@"/bin/cp" withArguments:arguments authorization:self.authorization error:&error];
if ([self checkForError: error]) break;
arguments = [NSArray arrayWithObjects:destination, nil];
[NSTask stringByLaunchingPath:@"/bin/rm" withArguments:arguments authorization:self.authorization error:&error];
if ([self checkForError: error]) break;
arguments = [NSArray arrayWithObjects:pathOfResource, destination, nil];
[NSTask stringByLaunchingPath:@"/bin/cp" withArguments:arguments authorization:self.authorization error:&error];
if ([self checkForError: error]) break;
}
if ([error code] != 0) break;
}
However, if I do an install with 20-30 files, it fails. It seems to stock a this line in the NSTask category and after 30 sec, return an error.
OSErr processError =
AuthorizationExecuteWithPrivileges(
[authorization authorizationRef],
[processPath UTF8String],
kAuthorizationFlagDefaults,
(char *const *)argv,
&processOutput);
I doesn't stop at the same file each time...
I can't do a standard install : it has a custom install built in that I cannot replicate in a pkg.
It gives me the error : (com.apple.NSTask.OneLineTasksWithOutput erreur 5505)
Any idea? Thanks, Guillaume
