##osx-server

/

      • foigus has quit
      • Digg3r joined the channel
      • rickardsj joined the channel
      • vmiller has quit
      • vitaliy has quit
      • vitaliy joined the channel
      • thumpba joined the channel
      • mosen
        adamcodega: yeah are there people doing that?
      • bochoven has quit
      • adamcodega
        mosen: Doing what?
      • mosen
        adamcodega: fully cloud hosted fileshares?
      • thumpba has quit
      • adamcodega
        Well there isn't the fileshare mentality, it's all people owning files and folders instead of non user folders.
      • Dropbox, Box, someone has to be the owner of the folder.
      • mosen
        egnyte seemed a little closer to that
      • adamcodega
        Compared to your local network share people think of.
      • gbatye joined the channel
      • gbatye has quit
      • Corey84 has quit
      • Corey84 joined the channel
      • Corey84 has quit
      • ideopathic joined the channel
      • ideopathic has quit
      • foigus joined the channel
      • ideopathic joined the channel
      • gerald|off is now known as geraldbrent
      • ::yawn::
      • mosen
        long day AC?
      • Corey84 joined the channel
      • ideopathic has quit
      • ideopathic joined the channel
      • adamcodega
        kind of a boring day.
      • Have some network stuff I need to attend you but not motivated.
      • making meatballs and pasta for dinner.
      • mscottblake joined the channel
      • mosen
        cool
      • mscottblake has quit
      • mscottblake joined the channel
      • DialsMavis
        mmmmmmmmmm mmmmeatballs
      • mosen has quit
      • jotterbot joined the channel
      • jotterbo_ has quit
      • adamcodega
        From the frozen aisle at that.
      • Trying to get rid of the Barila in the house.
      • rderewianko joined the channel
      • ideopathic has quit
      • I feel like everyone is boomeranging emails and it's failing.
      • getting a few emails I think people are writing as if they were being sent tomorrow morning.
      • rderewianko
        they're [prepping for a snow day
      • adamcodega
        hehe
      • except their emails aren't delayed.
      • school's canceled tomorrow.. drive should be nice and easy.
      • rderewianko
        ah east coast problems.
      • adamcodega
        Indeed.
      • chuckfromis joined the channel
      • I just thought of an iBeacon in my pocket, unlocking things in Self Service when I'm at someone's desk.
      • rderewianko
        I thought of enabling one for around my desk
      • when you come by it opens up the helpdesk page
      • adamcodega
        Yeah we wouldn't use sign-in for SS, so to give SS an IT section, I can manually add the laptop to the smart group, or find some other trigger to set it.
      • rderewianko
        we do
      • adamcodega
        Like laptop is near beacon.
      • rderewianko
        its an interesting usecase
      • chuckfromis has quit
      • i read that as chucknorirs^
      • ideopathic joined the channel
      • adamcodega
        Haha
      • DialsMavis
        that moment when you try to log in as root and instead log in as "toot"
      • adamcodega
        Haha, those suckers won't know I changed the username to toor
      • Sol_Rosenberg joined the channel
      • thumpba joined the channel
      • alarmmm
        i feel bad when i type pythong and someone is watching
      • rderewianko
        heh
      • ibiwan has quit
      • jeremyagost has quit
      • thumpba has quit
      • jeremyagost joined the channel
      • adamcodega
        I cook like a admin, slowly and with Bash.
      • flip047
        with a sprig of vi and a 2-finger pinch of nano?
      • adamcodega
        That sounds tasty.
      • I troll developers by talking about Sublime Text.
      • mscottblake has quit
      • flip047
        I've not used Sublime Text before. How are you trolling? Is it good or terrible?
      • SB_ joined the channel
      • Sol_Rosenberg has quit
      • adamcodega
        real developers use vim :)
      • just as bad as vi vs nano vs emacs
      • Sublime has an add-on for plist support (binary), otherwise I just don't like that TextWrangler icon ;)
      • Digg3r has quit
      • macmule has quit
      • rderewianko has quit
      • ideopathic has quit
      • mscottblake joined the channel
      • jotterbot has quit
      • Corey84 has quit
      • Corey84 joined the channel
      • msim joined the channel
      • ideopathic joined the channel
      • geraldbrent is now known as gerald|off
      • Matto-NZ has quit
      • SB_ has quit
      • ideopathic has quit
      • Matto-NZ joined the channel
      • Digg3r joined the channel
      • msim
        I don't seem to be able to find anything on this that is dumbed down to my level, but I am trying to add this in to a script that will run out of automator, but it's erroring. osascript -e 'do shell script "chmod 755 "/Applications/Utilities/Log WiFi.app/"" with administrator privileges'
      • flip047
        Any specific reason why you are using Automator and applescript msim?
      • eholtam
        Probably need to escape the quotes around the application path.
      • msim
        I need something that users can run while not connected to the network (to take logs of wireless connectivity issues) so I am using automator to create a .app, and I am wanting it to save in to /Applications/Utilities/app
      • (I also just thought of something which I will now try, if that works I feel very stupid)
      • eholtam
        That chmod will only change that specific folder. Why the perm change?
      • foigus
        msim: Yeah, it's the double quotation marks
      • msim
        Okay, I'm dumb, I can just change the privileges on the .app before I deploy it and it works.
      • foigus
        but...why...osascript "applescript do shell script "shellscript""
      • Or, ok, if you're skinning this cat some other way
      • (now, I might be aware of a postflight script that one of our vendors provided (in their pkg) that does that)
      • msim
        Give me a sec to work out what dumb logic I am using
      • (I haven't slept for 30+ hours, only awake due to excessive caffeine)
      • Okay, so the app when launched runs under the user, but I need it to run with elevated priveleges to be able to sudo the chmod, but when doing a sudo chmod the user isn't prompted, so I wanted to use applescript to do the shell command, and with admin priveleges specified it will prompt the user to auth as an admin
      • foigus
        What are you trying to accomplish?
      • msim
        Allowing the script to write to the the directory of that app, it gathers info and writes it to a .txt file under appname.app/Contents/file.txt
      • Being that it's under Applications/Utilities/appname.app by default the user can't write to it
      • I'm sure I am doing it a horribly redundant and convoluted way, but my brain is fried
      • foigus
        Why does the application need to write a file into itself (as opposed to /Users/Shared or some other more neutral location)?
      • msim
        I came to the realisation that I can just change the permissions on the app before I deploy it, and completely removing the need for the applescript
      • chuckfromis joined the channel
      • I didn't want it writing to /Users/Shared, wanted it somewhere users wouldn't touch
      • foigus
        You could write out to a file with a leading period, then users won't see it
      • msim
        That is true
      • Didn't think of that one.
      • adamcodega
        double true
      • what happens to the file after it's written
      • msim
        It's stays there until network connectivity is back and I can fetch the files
      • adamcodega
        Yeah I'd dot hide it, what's the worst that's inside of it?
      • msim
        Nothing sensitive really
      • I just didn't want users to see it and go "huh what's that?" and delete it
      • adamcodega
        Yeah, dot will help that.
      • flip047
        Nobody ever uses /Users/Shared anyway
      • :P
      • msim
        Yeah, that one didn't occur to my fried brain
      • adamcodega
        Haha flip047
      • foigus
        msim: Nah, users never delete things. "Microsoft User Data? Don't use that, gotta nuke it."
      • adamcodega
        Hell, give it a dot name and put it on their Desktop.
      • but /Users/Shared is a good idea.
      • foigus
        Which was tremendously entertaining with Entourage, because Entourage continues to run even though the Database was in the trash
      • But following a reboot, Entourage stops working
      • chuckfromis has quit
      • flip047
        He's a resilient bugger
      • oh wait, no he isn't
      • foigus
        Like a roach
      • pretty_function joined the channel
      • pretty_function has quit