AdobeShockwaveVersioner: Error: Could not retrieve Version

162 views
Skip to first unread message

Marion Bates

unread,
Mar 4, 2016, 11:58:40 AM3/4/16
to autopkg-discuss
Hi,

Apologies if this is answered elsewhere, or if I am posting this in the wrong forum. Please set me straight in either case.

First off, this is the only occasion, out of many dozens of autopkg recipes over more than a year, when I've ever had a problem that I couldn't resolve on my own with a few minutes' research. This tool has been a Godsend to us in a K12 environment with ~1000 Macs. Words cannot express our gratitude to the developers and all the recipe-writers out there. 

My munki repo/autopkg server is running OS X Server 10.6.8. 
Autopkg is version 0.5.2. 
Python version is 2.6.1
I have run repo-update to get the freshest recipes. 

Whenever I try to run AdobeShockwavePlayer.munki, I get the following error:

bullwinkle:Cache admin$ autopkg run AdobeShockwavePlayer.munki
Processing AdobeShockwavePlayer.munki...
Could not retrieve Version from /Users/admin/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/AdobeShockwavePlayer/Distribution
Failed.

The following recipes failed:
    AdobeShockwavePlayer.munki
        Error in local.munki.AdobeShockwavePlayer: Processor: AdobeShockwaveVersioner: Error: Could not retrieve Version from /Users/admin/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/AdobeShockwavePlayer/Distribution

The following new items were downloaded:
    Download Path                                                                                           
    -------------                                                                                           
    /Users/admin/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/downloads/AdobeShockwavePlayer.dmg  

--------------------------

Here is the parent recipe:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Description</key>
    <string>Downloads the latest Adobe Shockwave Player disk image and imports into Munki.</string>
    <key>Identifier</key>
    <string>com.github.jleggat.AdobeShockwavePlayer.munki</string>
    <key>Input</key>
    <dict>
        <key>NAME</key>
        <string>AdobeShockwavePlayer</string>
        <key>MUNKI_REPO_SUBDIR</key>
        <string>apps/adobe</string>
    </dict>
    <key>MinimumVersion</key>
    <string>0.2.0</string>
    <key>ParentRecipe</key>
    <string>com.github.jleggat.download.AdobeShockwavePlayer</string>
    <key>Process</key>
    <array>
        <dict>
            <key>Arguments</key>
            <dict>
                <key>flat_pkg_path</key>
                <string>%pathname%/*.pkg</string>
                <key>destination_path</key>
                <string>%RECIPE_CACHE_DIR%/%NAME%</string>
                <key>purge_destination</key>
                <true/>
            </dict>
            <key>Processor</key>
            <string>FlatPkgUnpacker</string>
        </dict>
        <dict>
            <key>Processor</key>
            <string>AdobeShockwaveVersioner</string>
            <key>Arguments</key>
            <dict>
                <key>input_file_path</key>
                <string>%RECIPE_CACHE_DIR%/%NAME%/Distribution</string>
            </dict>
        </dict>
        <dict>
            <key>Processor</key>
            <string>PkgPayloadUnpacker</string>
            <key>Arguments</key>
            <dict>
                <key>pkg_payload_path</key>
                <string>%RECIPE_CACHE_DIR%/%NAME%/Shockwave12.pkg/Payload</string>
                <key>destination_path</key>
                <string>%RECIPE_CACHE_DIR%/%NAME%/Library</string>
                <key>purge_destination</key>
                <true/>
            </dict>
        </dict>
        <dict>
            <key>Arguments</key>
            <dict>
                <key>faux_root</key>
                <string>%RECIPE_CACHE_DIR%/%NAME%</string>
                <key>installs_item_paths</key>
                <array>
                    <string>/Library/Internet Plug-Ins/DirectorShockwave.plugin</string>
                </array>
            </dict>
            <key>Processor</key>
            <string>MunkiInstallsItemsCreator</string>
        </dict>
        <dict>
            <key>Processor</key>
            <string>MunkiPkginfoMerger</string>
        </dict>
        <dict>
            <key>Arguments</key>
            <dict>
                <key>additional_pkginfo</key>
                <dict>
                    <key>name</key>
                    <string>%NAME%</string>
                    <key>version</key>
                    <string>%version%</string>
                    <key>catalogs</key>
                    <array>
                        <string>testing</string>
                    </array>
                    <key>description</key>
                    <string>Adobe Shockwave Player Plugin for Web Browsers</string>
                    <key>display_name</key>
                    <string>Adobe Shockwave Player</string>
                    <key>name</key>
                    <string>%NAME%</string>
                    <key>unattended_install</key>
                    <true/>
                    <key>category</key>
                    <string>Browser Plugin</string>
                    <key>developer</key>
                    <string>Adobe</string>
                </dict>
            </dict>
            <key>Processor</key>
            <string>MunkiPkginfoMerger</string>
        </dict>
        <dict>
            <key>Arguments</key>
            <dict>
                <key>pkg_path</key>
                <string>%pathname%</string>
                <key>repo_subdirectory</key>
                <string>%MUNKI_REPO_SUBDIR%</string>
            </dict>
            <key>Processor</key>
            <string>MunkiImporter</string>
        </dict>
    </array>
</dict>
</plist>


--------------------------

Here's my recipe override:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Identifier</key>
<string>local.munki.AdobeShockwavePlayer</string>
<key>Input</key>
<dict>
<key>DOWNLOAD_URL</key>
<key>MUNKI_REPO_SUBDIR</key>
<string>apps/Adobe</string>
<key>NAME</key>
<string>AdobeShockwavePlayer</string>
</dict>
<key>ParentRecipe</key>
<string>com.github.jleggat.AdobeShockwavePlayer.munki</string>
</dict>
</plist>

--------------------------

Here are the contents of /Users/admin/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/AdobeShockwavePlayer/Distribution as of a few minutes ago:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<installer-gui-script minSpecVersion="2">
    <title>Adobe Shockwave Player 12.2</title>
    <options customize="never" allow-external-scripts="no" rootVolumeOnly="false"/>
    <domains enable_anywhere="true" enable_localSystem="true"/>
    <volume-check script="pm_volume_check();"/>
    <script>
        function pm_volume_check()
        {
            version = my.target.systemVersion.ProductVersion;
            if(!(system.compareVersions(version, '10.6') >= 0))
            {
                my.result.title = 'Failure';
                my.result.message = 'Adobe Shockwave not supported on this OS version';
                my.result.type = 'Fatal';
                return false;
            }
            if(!(my.target.availableKilobytes >= 48 * 1024 * 1024))
            {
                my.result.title = 'Failure';
                my.result.message = 'There is shortage of free disk space available on this volume';
                my.result.type = 'Fatal';
                return false;
            }
            return true;
        }
    </script>
    <background file="background" alignment="bottomleft" scaling="proportional"/>
    <readme file="ReadMe"/>
    <license file="License"/>
    <choices-outline>
        <line choice="choice0"/>
    </choices-outline>
    <choice id="choice0" title="Shockwave" description="Adobe Shockwave Player for Mac OSX 10.x">
        <pkg-ref id="com.adobe.adobeShockwavePlayer.shockwave12.pkg"/>
    </choice>
    <pkg-ref id="com.adobe.adobeShockwavePlayer.shockwave12.pkg" version="12.2.4.194" auth="Root" packageIdentifier="adobe.adobeShockwavePlayer.shockwave12.pkg" installKBytes="44051">#shockwave12.pkg</pkg-ref>
    <pkg-ref id="com.adobe.adobeShockwavePlayer.shockwave12.pkg">
        <bundle-version>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.mixtiff" path="Application Support/Adobe/Shockwave 12/Xtras/TIFF Import Export.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.speechxtra" path="Application Support/Adobe/Shockwave 12/Xtras/Speech.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.coreaudiomix" path="Application Support/Adobe/Shockwave 12/Xtras/CoreAudioMix.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.dvdasset" path="Application Support/Adobe/Shockwave 12/Xtras/DVD Asset.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.mixsound" path="Application Support/Adobe/Shockwave 12/Xtras/Sound Import Export.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.mixservices" path="Application Support/Adobe/Shockwave 12/Xtras/Mix Services.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.fontasset" path="Application Support/Adobe/Shockwave 12/Xtras/Font Asset PPC.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.shockwave.pluginshim" path="Internet Plug-Ins/DirectorShockwave.plugin"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.bootstrap" path="Application Support/Adobe/Shockwave 12/Xtras/Bootstrap PPC Xtra.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.dynamiks_320" path="Application Support/Adobe/Shockwave 12/Xtras/Dynamiks_320.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.qtasset" path="Application Support/Adobe/Shockwave 12/Xtras/QuickTime6 Asset.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.shockwave.bundle" path="Application Support/Adobe/Shockwave 12/DirectorShockwave.bundle"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.f4vasset" path="Application Support/Adobe/Shockwave 12/Xtras/F4VAsset.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.mixtarga" path="Application Support/Adobe/Shockwave 12/Xtras/Targa Import Export.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.fontxtra" path="Application Support/Adobe/Shockwave 12/Xtras/Font Xtra PPC.xtra"/>
            <bundle CFBundleShortVersionString="11.5.0r593" CFBundleVersion="11.5.0r593" id="com.adobe.director.multiusr" path="Application Support/Adobe/Shockwave 12/Xtras/Multiusr.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.soundcontrol" path="Application Support/Adobe/Shockwave 12/Xtras/Sound Control.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.textxtra" path="Application Support/Adobe/Shockwave 12/Xtras/TextXtra PPC.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.swastrm" path="Application Support/Adobe/Shockwave 12/Xtras/SWA Streaming PPC Xtra.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.swadcmpr" path="Application Support/Adobe/Shockwave 12/Xtras/SWA Decompression PPC Xtra.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.mixmpeg3" path="Application Support/Adobe/Shockwave 12/Xtras/MPEG 3 Import Export.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.mixswa" path="Application Support/Adobe/Shockwave 12/Xtras/SWA Import Export.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.flvasset" path="Application Support/Adobe/Shockwave 12/Xtras/FLVAsset.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.IMLLib.framework" path="Application Support/Adobe/Shockwave 12/DirectorShockwave.bundle/IMLLib.framework"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.DPLib.framework" path="Application Support/Adobe/Shockwave 12/DirectorShockwave.bundle/DPLib.framework"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.dynamiks" path="Application Support/Adobe/Shockwave 12/Xtras/Dynamiks.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.audiofilters" path="Application Support/Adobe/Shockwave 12/Xtras/AudioFilters.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.ProjLib.framework" path="Application Support/Adobe/Shockwave 12/DirectorShockwave.bundle/ProjLib.framework"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.audiomixer" path="Application Support/Adobe/Shockwave 12/Xtras/AudioMixer.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.mixlrg" path="Application Support/Adobe/Shockwave 12/Xtras/LRG Import Export.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.mp4asset" path="Application Support/Adobe/Shockwave 12/Xtras/MP4Asset.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.3dasset" path="Application Support/Adobe/Shockwave 12/Xtras/Shockwave 3D Asset Xtra.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.textasset" path="Application Support/Adobe/Shockwave 12/Xtras/TextAsset PPC.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.SWMenu.framework" path="Application Support/Adobe/Shockwave 12/DirectorShockwave.bundle/SwMenu.framework"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.flashasset" path="Application Support/Adobe/Shockwave 12/Xtras/Flash Asset PPC.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.cursorasset" path="Application Support/Adobe/Shockwave 12/Xtras/Cursor Asset.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.shockwave.plugin.framework" path="Application Support/Adobe/Shockwave 12/DirectorShockwave.bundle/Plugin.framework"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.mixpng" path="Application Support/Adobe/Shockwave 12/Xtras/PNG Import Export.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.mixau" path="Application Support/Adobe/Shockwave 12/Xtras/Sun AU Import Export.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.realasset" path="Application Support/Adobe/Shockwave 12/Xtras/RealMedia Asset.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.bitmapfilters" path="Application Support/Adobe/Shockwave 12/Xtras/BitmapFilters.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.netfile" path="Application Support/Adobe/Shockwave 12/Xtras/NetFile PPC Xtra.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.ineturl" path="Application Support/Adobe/Shockwave 12/Xtras/InetUrl PPC Xtra.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.agifasset" path="Application Support/Adobe/Shockwave 12/Xtras/Animated GIF Asset.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.xmlparser" path="Application Support/Adobe/Shockwave 12/Xtras/XmlParser PPC Xtra.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.cbrowser" path="Application Support/Adobe/Shockwave 12/Xtras/CBrowser PPC Xtra.xtra"/>
            <bundle CFBundleShortVersionString="12.2.4r194" CFBundleVersion="12.2.4r194" id="com.adobe.director.netlingo" path="Application Support/Adobe/Shockwave 12/Xtras/NetLingo PPC Xtra.xtra"/>
        </bundle-version>
    </pkg-ref>

--------------------------

Does anyone have any ideas about how to fix this? 

Thank you very much!

-- MB

Mr. Alan Siu

unread,
Mar 4, 2016, 12:01:54 PM3/4/16
to autopkg...@googlegroups.com
It's working for me. Maybe take the download URL out of your override recipe?


Alan Siu
Client Systems Analyst
St. Ignatius College Preparatory

--
You received this message because you are subscribed to the Google Groups "autopkg-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to autopkg-discu...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Gregory Neagle

unread,
Mar 4, 2016, 12:04:50 PM3/4/16
to autopkg...@googlegroups.com
Working here as expected as well:

% autopkg run AdobeShockwavePlayer.munki -v
Processing AdobeShockwavePlayer.munki...
URLDownloader
URLDownloader: Item at URL is unchanged.
URLDownloader: Using existing /Users/gneagle/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/downloads/Shockwave.dmg
EndOfCheckPhase
FlatPkgUnpacker
FlatPkgUnpacker: Mounted disk image /Users/gneagle/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/downloads/Shockwave.dmg
FlatPkgUnpacker: Unpacked /private/tmp/dmg.VoaFdW/Shockwave_Installer_Full.pkg to /Users/gneagle/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/Shockwave
AdobeShockwaveVersioner
AdobeShockwaveVersioner: Found version "12.2.4.194" in file "/Users/gneagle/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/Shockwave/Distribution"
AdobeShockwaveVersioner: Found Bundle ID "adobe.adobeShockwavePlayer.shockwave12" in file "/Users/gneagle/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/Shockwave/Distribution"
PkgPayloadUnpacker
PkgPayloadUnpacker: Unpacked /Users/gneagle/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/Shockwave/Shockwave12.pkg/Payload to /Users/gneagle/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/Shockwave/Library
MunkiInstallsItemsCreator
MunkiInstallsItemsCreator: Created installs item for /Library/Internet Plug-Ins/DirectorShockwave.plugin
MunkiPkginfoMerger
MunkiPkginfoMerger: Merged {'installs': (
        {
        CFBundleShortVersionString = "12.2.4r194";
        CFBundleVersion = "12.2.4r194";
        path = "/Library/Internet Plug-Ins/DirectorShockwave.plugin";
        type = bundle;
        "version_comparison_key" = CFBundleShortVersionString;
    }
)} into pkginfo
MunkiPkginfoMerger
MunkiPkginfoMerger: Merged {
    catalogs =     (
        testing
    );
    category = "Browser Plugin";
    description = "Adobe Shockwave Player Plugin for Web Browsers";
    developer = Adobe;
    "display_name" = "Adobe Shockwave Player";
    name = Shockwave;
    "unattended_install" = 1;
    version = "12.2.4.194";
} into pkginfo
MunkiImporter
MunkiImporter: Item Shockwave.dmg already exists in the munki repo as pkgs/internet/Shockwave-12.2.4.194.dmg.
Receipt written to /Users/gneagle/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/receipts/AdobeShockwavePlayer-receipt-20160304-090321.plist

Nothing downloaded, packaged or imported.

I think Alan’s suggestion about taking a look at your override is a good one.

-Greg

Marion Bates

unread,
Mar 8, 2016, 1:46:24 PM3/8/16
to autopkg-discuss
Hmm. I tried each of: Editing the override and removing the download URL as per Alan's suggestion; removing the override altogether; deleting all of

/Users/admin/Library/AutoPkg/Cache/com.github.jleggat.AdobeShockwavePlayer.munki/ ; autopkg repo-update all ; but, same error with each subsequent attempt. Oh well -- we will live.


Thank you for your replies!


-- MB

Gregory Neagle

unread,
Mar 8, 2016, 1:54:15 PM3/8/16
to autopkg...@googlegroups.com
Did you actually look at what was downloaded to "/Users/admin/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/downloads/AdobeShockwavePlayer.dmg” for clues as to what is happening?

-Greg

Marion Bates

unread,
Mar 8, 2016, 2:00:32 PM3/8/16
to autopkg...@googlegroups.com
Here's what I see: (mounted the .dmg)

Inline image 1

-- MB

--
You received this message because you are subscribed to a topic in the Google Groups "autopkg-discuss" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/autopkg-discuss/_FuQW5ToLYY/unsubscribe.
To unsubscribe from this group and all its topics, send an email to autopkg-discu...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Marion Bates, District Technology Supervisor
School Administrative Unit 70
Hanover, NH | Norwich, VT
Office: (603) 643-3431 x2714
http://www.sau70.org/

Mr. Alan Siu

unread,
Mar 8, 2016, 2:08:20 PM3/8/16
to autopkg...@googlegroups.com
I'm assuming you're mounting the .dmg just to show us what's inside and the .dmg wasn't mounted when you got the error. Is that correct?


Alan Siu
Client Systems Analyst
St. Ignatius College Preparatory

Marion Bates

unread,
Mar 8, 2016, 2:12:05 PM3/8/16
to autopkg...@googlegroups.com
That's correct.

Maybe more of a clue, or maybe just a clue to my cluelessness -- am I missing required libraries (Processor & ProcessorError)?

bullwinkle:AdobeShockwavePlayer admin$ ./AdobeShockwaveVersioner.py ~/Library/AutoPkg/Cache/local.munki.AdobeShockwavePlayer/AdobeShockwavePlayer/Distribution 
Traceback (most recent call last):
  File "./AdobeShockwaveVersioner.py", line 21, in <module>
    from autopkglib import Processor, ProcessorError
ImportError: No module named autopkglib

bullwinkle:AdobeShockwavePlayer admin$ locate autopkglib
/Library/AutoPkg/autopkglib
/Library/AutoPkg/autopkglib/AppDmgVersioner.py
/Library/AutoPkg/autopkglib/BrewCaskInfoProvider.py
/Library/AutoPkg/autopkglib/CURLDownloader.py
/Library/AutoPkg/autopkglib/CURLTextSearcher.py
/Library/AutoPkg/autopkglib/CodeSignatureVerifier.py
/Library/AutoPkg/autopkglib/Copier.py
/Library/AutoPkg/autopkglib/DmgCreator.py
/Library/AutoPkg/autopkglib/DmgMounter.py
/Library/AutoPkg/autopkglib/EndOfCheckPhase.py
/Library/AutoPkg/autopkglib/FileCreator.py
/Library/AutoPkg/autopkglib/FileFinder.py
/Library/AutoPkg/autopkglib/FileMover.py
/Library/AutoPkg/autopkglib/FlatPkgPacker.py
/Library/AutoPkg/autopkglib/FlatPkgUnpacker.py
/Library/AutoPkg/autopkglib/GitHubReleasesInfoProvider.py
/Library/AutoPkg/autopkglib/InstallFromDMG.py
/Library/AutoPkg/autopkglib/Installer.py
/Library/AutoPkg/autopkglib/MunkiCatalogBuilder.py
/Library/AutoPkg/autopkglib/MunkiImporter.py
/Library/AutoPkg/autopkglib/MunkiInfoCreator.py
/Library/AutoPkg/autopkglib/MunkiInstallsItemsCreator.py
/Library/AutoPkg/autopkglib/MunkiPkginfoMerger.py
/Library/AutoPkg/autopkglib/MunkiSetDefaultCatalog.py
/Library/AutoPkg/autopkglib/PackageRequired.py
/Library/AutoPkg/autopkglib/PathDeleter.py
/Library/AutoPkg/autopkglib/PkgCopier.py
/Library/AutoPkg/autopkglib/PkgCreator.py
/Library/AutoPkg/autopkglib/PkgExtractor.py
/Library/AutoPkg/autopkglib/PkgInfoCreator.py
/Library/AutoPkg/autopkglib/PkgPayloadUnpacker.py
/Library/AutoPkg/autopkglib/PkgRootCreator.py
/Library/AutoPkg/autopkglib/PlistEditor.py
/Library/AutoPkg/autopkglib/PlistReader.py
/Library/AutoPkg/autopkglib/SparkleUpdateInfoProvider.py
/Library/AutoPkg/autopkglib/StopProcessingIf.py
/Library/AutoPkg/autopkglib/Symlinker.py
/Library/AutoPkg/autopkglib/URLDownloader.py
/Library/AutoPkg/autopkglib/URLTextSearcher.py
/Library/AutoPkg/autopkglib/Unarchiver.py
/Library/AutoPkg/autopkglib/Versioner.py
/Library/AutoPkg/autopkglib/__init__.py
/Library/AutoPkg/autopkglib/github
/Library/AutoPkg/autopkglib/github/__init__.py
/Library/AutoPkg/autopkglib/version.plist

Reply all
Reply to author
Forward
0 new messages