vote up 1 vote down star

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

flag

1 Answer

vote up 0 vote down

It's pretty difficult to even guess what's going on without more information about the error you're seeing returned. Is there any reason why you can't build a standard installer package and simply add all of this extra functionality to a preflight or preinstall script?

link|flag
I've edited the question... – Gcamp Oct 13 at 15:57
Are any of these commands generating output you need to look at? Why don't you write the entire thing out into a single script which handles everything it needs to and then run that from your bundle with one NSTask? Firing off a brand new one for every single "cp" and "rm" seems both silly and unnecessarily difficult to debug. – NSD Oct 13 at 17:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.