-
Notifications
You must be signed in to change notification settings - Fork 2
/
metadata.json
81 lines (81 loc) · 3.66 KB
/
metadata.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "edestecd-mobileconfig_profile",
"version": "0.1.4",
"source": "https://github.com/edestecd/puppet-mobileconfig_profile.git",
"author": "Chris Edester",
"license": "GPLv3+",
"summary": "Puppet Module for managing OSX Configuration profiles",
"description": "Puppet Module for managing OSX Configuration profiles (both device and user profiles)",
"project_page": "https://github.com/edestecd/puppet-mobileconfig_profile",
"operatingsystem_support": [
{
"operatingsystem": "Darwin",
"operatingsystemrelease": [
"12.0.0",
"12.3.0",
"12.4.0",
"12.5.0"
]
}
],
"requirements": [
{
"name": "pe",
"version_requirement": "3.x"
},
{
"name": "puppet",
"version_requirement": "3.x"
}
],
"dependencies": [
{
"name": "puppetlabs/stdlib",
"version_requirement": ">= 4.1.0"
}
],
"types": [
{
"name": "config_profile",
"doc": "Manage (install/remove) OS X configuration profile plists (mobileconfig) created with:\nProfile Manager part of OSX server :( -- (Settings_for_xx.mobileconfig)\n https://itunes.apple.com/us/app/os-x-server/id537441259?mt=12\n http://www.apple.com/support/osxserver/profilemanager/\nmcxToProfile by timsutton :) -- (Settings_for_xx_supplemental.mobileconfig)\n https://github.com/timsutton/mcxToProfile\n\nThis resource type uses the profiles command (man profiles) and\nCan manage both user or device (system) profiles.\n\nInstalls/Updates profile when:\n no profile with identifier is installed\n profile (plist (mobileconfig)) file content changes - requires subscribe/notify\n\nYou must manage getting the profile file on the system and give it's path.\n**Autorequires:** file in path and user and user home, if possible.\n\nNote:\n users must be logged into the GUI desktop and have finder/preferences running to load user profiles...\n Hence we check if logged in with who command before installing them.\n - also console means desktop and not tty or ssh alone",
"properties": [
{
"name": "ensure",
"doc": "What state the profile should be in. (installed/removed) This defaults to `installed`.\n\nValid values are `present` (also called `installed`), `absent` (also called `removed`). "
}
],
"parameters": [
{
"name": "name",
"doc": "The unique identifier for this mobileconfig profile (usually user_identifier, for user profiles).\n\n"
},
{
"name": "identifier",
"doc": "The main PayloadIdentifier in the mobileconfig profile (usually at end of plist). Can be the same for multiple users...\n\n"
},
{
"name": "path",
"doc": "The path to the profile file on your system.\n\n"
},
{
"name": "system",
"doc": "Is this a device (system wide) profile?\n\nValid values are `true`, `false`. "
},
{
"name": "user",
"doc": "The user to manage this profile for. system must be false if you set this.\n\n"
},
{
"name": "home",
"doc": "The users home dir, if it can't be guessed.\n\n"
}
],
"providers": [
{
"name": "profiles",
"doc": "Configuration Profile (mobileconfig) management via `profiles` command on OS X.\n/usr/bin/profiles must be present.\nhttps://developer.apple.com/library/mac/documentation/Darwin/Reference/Manpages/man1/profiles.1.html\n\n* Required binaries: `/bin/rm`, `/usr/bin/grep`, `/usr/bin/profiles`, `/usr/bin/su`, `/usr/bin/touch`, `/usr/bin/who`.\n* Default for `operatingsystem` == `darwin`."
}
]
}
]
}