I'm testing switching back to Apple's update servers from our own in house one.
I've removed the configuration profile that was pointing the machine to our catalogurl, run softwareupdate -l and it lists the available updates from Apple's server
ran sudo jamf removeSWUSettings
check that the catalog url has been removed with this EA which returns 'None'
#!/usr/bin/python
# EA to show if Software Updates are managed or not
import CoreFoundation
domain = 'com.apple.SoftwareUpdate'
key = 'CatalogURL'
key_value = CoreFoundation.CFPreferencesCopyAppValue(key, domain)
print "<result>{}</result>".format(key_value)
then run recon on the machine, when i check on the JSS the computer record shows Software Updates as 'No Updates Available'
any ideas what i'm missing ?