This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <schema version="1.0" xmlns="http://www.apple.com/metadata" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.apple.com/metadata file:///System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Resources/MetadataSchema.xsd"> | |
| <!-- | |
| Compiled from /Applications/Microsoft\ Outlook.app/Contents/Library/Spotlight/Microsoft\ Outlook\ Spotlight\ Importer.mdimporter/Contents/Resources/schema.xml | |
| with info from http://xensoft.com/search-mac-outlook-2011-mail-with-raw-queries/ | |
| --> | |
| <types> | |
| <type name="com.microsoft.outlook15.contact"> | |
| <allattrs> | |
| kMDItemTitle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:16.04 | |
| MAINTAINER [email protected] | |
| RUN echo 'Starting latest Ubuntu' && \ | |
| apt-get update && \ | |
| apt-get -y install sudo && \ | |
| apt-get install -y wget && \ | |
| echo 'getting puppet for Xenial' && \ | |
| wget https://apt.puppetlabs.com/puppetlabs-release-pc1-xenial.deb && \ | |
| echo 'installing puppet repo' && \ | |
| sudo dpkg -i puppetlabs-release-pc1-xenial.deb && \ |