Posted on 04-28-2021 08:19 AM
Our company is moving to Freshservice. Working on a policy to push the Freshservice agent to all our Macs. The Agnet is a pkg file and that installs fine but I can't figure out how to make it reference the json file for the registration key and account info. I tried using Composer to create a custom pkg but it flat out doesn't work. Any assistance would be appreciated.
Solved! Go to Solution.
Posted on 04-29-2021 07:18 AM
This is how I solved it with a site I worked with.
Put all 3 files in composer and then in postinstall, run both installers in the correct order.
Posted on 04-29-2021 07:10 AM
Running into the same issue over here. It says that it is able to successfully install the package and looks like it is going to work, but never reports back to FreshService.
Posted on 04-29-2021 07:18 AM
This is how I solved it with a site I worked with.
Put all 3 files in composer and then in postinstall, run both installers in the correct order.
Posted on 04-30-2021 06:40 AM
Thanks for the response I will try this out and see if I can get it going.
Posted on 05-04-2021 12:49 PM
Smiliek Thanks so much for your recommendation I followed what you did and it worked perfectly!
Posted on 05-05-2021 03:04 PM
Hi, where did you get the FreshserviceAgent.pkg? I only received the other 2 files.
Posted on 05-07-2021 04:59 AM
You create it once you build that PKG, do the file copy to the directory then you drag the freshly created FreshserviceAgent.pkg into Composer and drop it in the folder structure. Then you hit build as PKG again and that is your final package. I was confused at first too till I tried that, never would have thought about doing something like that.
Posted on 05-10-2021 01:33 PM
That works. Thanks.
Posted on 06-21-2021 04:27 PM
This is my first time using composer trying to accomplish this. Can you provide some additional steps to get this going?
Posted on 06-29-2021 11:16 AM
Start out by creating a Normal Snapshot, Name it what you like I named it similar to what SmilieK did. After the the snapshot copy the files to a folder easily accessible. I actually put it in /Users/Shared/tmp Once you have the files copied click Create Package Source. When it is finished you will see the file structure. Drag your newly created package into Composer so it adds it to folder structure. Then click Build as PKG. The create your script which actually installs the agent based on SmilieK's example script. Obviously you want to edit the file path if you aren't using what he did. It worked perfectly for me.
Posted on 06-07-2022 08:30 AM
what can i do if I want to prioritize the files? I want json file to be placed in specific location before running the installer
Posted on 06-07-2022 09:23 AM
You just need to follow your order of operations when using Composer.
Posted on 06-17-2022 07:38 AM
I've tried that solution, it work when it's a fresh install, but when it's to replace a previous version, it doesn't sync with Freshservice, someone have a solution for that ?
Posted on 08-03-2022 02:49 PM
Any updates on this? Desperately trying but the agents don't check in to FS backend. -___-
Posted on 08-04-2022 08:22 AM
Finally this way have work, I don't know why, but only my Mac doesn't work, all the rest in the company have work
What I've done, I've created a folder in the /Library/Application Support/[Business Name]/Fresh Service/ and I've dropped the FS-Agent folder inside it with the json and pkg
Drag the FS-Agent folder in composer, and Apply the permission of the Application Folder to all subfolder
Create the package, that I called FreshServiceAgent.pkg, that package will cache the installer
When the package is done, drag the package in /Library/Application Support/[Business Name]/Fresh Service folder in repackage it.
I've used this script to perform the installation that I run after
#!/bin/sh
## postinstall
wait 10
/usr/sbin/installer -allowUntrusted -pkg "/Library/Application Support/[Your Company Name]/FreshService/FreshserviceAgent.pkg" -target /
wait 10
/usr/sbin/installer -allowUntrusted -pkg "/Library/Application Support/[Your Company Name]/FreshService/FS-Agent/FS-Agent.pkg" -target /
exit 0
I hope it will help you
09-02-2022 01:23 PM - edited 09-02-2022 02:02 PM
Hey there, I'm new to using composer. Where did you input the script?
Posted on 09-07-2022 11:30 AM
I created the script in Jamf Pro console under All Setting => Computer Management => Scripts. Then when creating the policy add that script to run after. It will then exicute after it downloads the package.
Posted on 09-07-2022 12:54 PM
Thanks for the response! I was able to package the script in composer without having to enter it in the Jamf Pro console. Regardless, your step by step instructions were very helpful and concise. I was able to get it up and running! Thanks!
Posted on 12-09-2022 04:32 AM
Hi all,
We have an issue of deploying the Fresh Service Agent over MAC machines. We have followed the suggested steps as above, but it is not working as expected. The steps were follow to use the Composer and to set up the file as supposed to be. Seeing the following log from JAMF:
Can you advise what could be perform to resolve the issue?
We are seeing it as a report to be Completed, but the file is not deployed
Posted on 10-09-2024 07:05 AM
Hey iradev,
I know this is waaaayyy old but I had to package this recently and figure this all out. I don't think "wait" is supported anymore use "sleep" instead as the command in the script.
Thank You!
Paul Fye
Posted on 10-09-2024 07:18 AM
ok thanks for that.
I don't use it anymore, we've connect the Jamf Connector and removed the FS-Agent from our Mac, that way some information that we want stay as we expect when the Agent was always changing the Mac name for exemple
Posted on 10-09-2024 07:23 AM
Hey Jynotte,
Of course no problem! We had to switch just this week from the Jamf Connector application within FreshService as there is a known bug right now in FreshService with setting up Client Credentials. FreshService support said it would not be fixed until Oct 29th and we could not have assets sitting over a month not getting enrolled into our system which is why we switched!
Thank You!
Posted on 10-09-2024 07:29 AM
oh didn't know about that one
Posted on 02-20-2023 10:09 AM
We are starting to use the Asset Management module in Freshservice and used the Jamf app/integration to get all our Macs and iPads into FS. This way the assets don't count against the limit. What is the advantage of using the agent instead of the free integration?
Posted on 02-20-2023 10:12 AM
We need to be Jamf Cloud to use the asset management module. So if we are on-prem, we need another solution like the one in this post