Forum Replies Created

Viewing 15 posts - 16 through 30 (of 55 total)
  • Author
    Posts
  • in reply to: Using PackageMaker #379594
    foilpan
    Participant

    since the installer is already a .mpkg, you don’t necessarily need to repackage it.

    i haven’t worked with office 2011 yet, but for the most part, you could drop the office 2008 installer into your instadmg build hierarchy, and it would work.

    try it without repackaging first and keep an eye on this forum. i know others are incorporating or testing the new office mpkgs in their builds.

    in reply to: Another hour, another question – AD integration #379454
    foilpan
    Participant

    try running directoryservice in debug mode and tailing the debug log.

    [code]
    killall -USR1 DirectoryService
    tail -f /Library/Logs/DirectoryService/DirectoryService.debug.log
    [/code]

    also, be sure you can login as a local admin or ssh in to lookup accounts in AD. a simple “id ” should suffice. if that succeeds, you’re on the right track. if not, i’d look to your bind script or policy to ensure it’s doing what you expect.

    in reply to: password hash script & passwords #379344
    foilpan
    Participant

    i think the password required for vnc access is encrypted differently.

    try this:

    http://www.macgeekery.com/tips/cli/setting_remote_desktops_vnc_password_in_terminal

    in reply to: No Output File #379341
    foilpan
    Participant

    uhh… what?

    development focuses on 10.6 of late, as far as i know. and at that, the instadmg.bash script itself hasn’t changed much in awhile. if you need it changed to accommodate your environment, it’s freely editable. just make the change, post back here with your findings and don’t assume someone is willfully ignoring you.

    in reply to: current svn version 331 #379245
    foilpan
    Participant

    yeah, not sure there…

    the version i checked out this afternoon shows this:

    Path: .
    URL: http://instadmg.googlecode.com/svn/trunk
    Repository Root: http://instadmg.googlecode.com/svn
    Repository UUID: 1c3b0b9f-8c52-0410-a063-7121983eb4f7
    Revision: 331
    Node Kind: directory
    Schedule: normal
    Last Changed Author: kuehn.karl
    Last Changed Rev: 331
    Last Changed Date: 2010-08-08 03:26:12 -0400 (Sun, 08 Aug 2010)

    the instadmg.bash script appeared to be updated on my build machine, but it contained that undefined variable. the same script and revision checked out on my laptop doesn’t contain the undefined variable. go figure…

    in reply to: createUser overwrites users on local machine #379240
    foilpan
    Participant

    login via single user mode, mount the drive r/w, run [code]launchctl load /System/Library/LaunchDaemons/com.apple.DirectoryServices.plist[/code] to get directory service going, then change the user’s password with passwd or dscl.

    in reply to: Programmatically specifying SSH access #379227
    foilpan
    Participant

    i’m not mr. gallagher, but thanks. 😀

    dseditgroup might only work on a booted system, as i believe it depends on directoryservice to be running. if you need to do this all pre-boot, you’re going to have to mess with editing plists with whatever method is most convenient.

    in reply to: Programmatically specifying SSH access #379215
    foilpan
    Participant

    i’d probably use dseditgroup to add the local admin group to com.apple.access.ssh.

    check here for some pointers: http://blog.macadmincorner.com/securing-ssh/

    as far as enabling ssh goes, i’d load the launchd plist like you are but manage the sshd_config file to set options.

    here’s an example of a puppet manifest that works for me:

    [code]
    class ssh {
    file { “/System/Library/LaunchDaemons/ssh.plist”:
    owner => root,
    group => wheel,
    mode => 644,
    }

    service { “com.openssh.sshd”:
    enable => true,
    ensure => running,
    require => File[“/System/Library/LaunchDaemons/ssh.plist”],
    }
    }
    [/code]

    in reply to: Hidden Accounts unhiding? #379072
    foilpan
    Participant

    are you doing the following in your image?

    [code]
    /usr/bin/defaults write /Library/Preferences/com.apple.loginwindow Hide500Users -bool true
    /usr/bin/defaults write /Library/Preferences/com.apple.loginwindow HiddenUsersList -array username
    [/code]

    i set hidden admin users’ UIDs to something unused below 500 and ensure the above is applied at some point. haven’t had any problems.

    in reply to: disabling ASUS via shell script system wide #379038
    foilpan
    Participant

    aside from [code]softwareupdate –schedule off[/code], you could do something drastic like removing the executable bit on the actual binary.

    in reply to: this whole flat package deal? #378450
    foilpan
    Participant

    “compile” is the casper term, and i’m not entirely sure how their process differs.

    but, yes, i’ve built 10.5.8 and 10.6.3 images including all recent updates with instadmg. just use the most recent version, build on the same major OS version as mentioned above, and it should work.

    in reply to: this whole flat package deal? #378448
    foilpan
    Participant

    have you tried building an image via just the instadmg script and not using casper’s workflow? i’ve never had any major problem that way.

    in reply to: Need help with createuser #377748
    foilpan
    Participant

    you could also change it to the following and check for both 10.5 or 10.6:

    [code]
    if ( echo $HOST_SW_VERS | egrep “^10.5|^10.6″>/dev/null ); then[/code]

    or more simply:

    [code]
    if ( echo $HOST_SW_VERS | egrep “^10.[5-6]”>/dev/null ); then[/code]

    in reply to: 10.5.8 Update Killed `afctl` #377009
    foilpan
    Participant

    not that it’s any consolation, but i haven’t found afctl yet under 10.6. seems to be gone…

    in reply to: Office 2008 12.2.0 update touches python components? #376754
    foilpan
    Participant

    i was attempting to wrap up the whole thing to avoid having to apply another updater, but it doesn’t really matter in the grand scheme of things. it’s simpler to deploy one pkg than two.

Viewing 15 posts - 16 through 30 (of 55 total)