-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #172 from Microsoft/release/2.9
Release/2.9
- Loading branch information
Showing
12 changed files
with
148 additions
and
11 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us improve | ||
title: "[BUG]" | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Describe the Bug | ||
A clear and concise description of what the bug is. | ||
|
||
## Error Message | ||
Error message(s) if any. | ||
|
||
## Chef Exception | ||
Chef exception(s) if any. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for this project | ||
title: "[FEATURE]" | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Describe the feature | ||
A clear and concise description of what the feature is. | ||
|
||
## Describe the reasoning behind the feature | ||
A clear and concise description of why the feature should be implemented. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
name: Pull Request | ||
about: File a pull request to help us improve | ||
title: "[PR]" | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Describe the Pull Request | ||
A clear and concise description of what the Pull Request aims to do. | ||
|
||
## Justification | ||
A clear and concise description of issues the Pull Requests solves if any. |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,45 @@ | ||
dock_plist = '/Users/vagrant/Library/Preferences/com.apple.dock.plist' | ||
macoscookbook_plist = '/Users/vagrant/com.microsoft.macoscookbook.plist' | ||
|
||
plist 'show hidden files' do | ||
path '/Users/vagrant/Library/Preferences/com.apple.finder.plist' | ||
entry 'AppleShowAllFiles' | ||
value true | ||
owner 'vagrant' | ||
group 'staff' | ||
end | ||
|
||
plist 'put the Dock on the left side' do | ||
path '/Users/vagrant/Library/Preferences/com.apple.dock.plist' | ||
path dock_plist | ||
entry 'orientation' | ||
value 'left' | ||
owner 'vagrant' | ||
group 'staff' | ||
end | ||
|
||
plist 'disable window animations and Get Info animations' do | ||
path '/Users/vagrant/Library/Preferences/com.apple.dock.plist' | ||
path dock_plist | ||
entry 'DisableAllAnimations' | ||
value true | ||
owner 'vagrant' | ||
group 'staff' | ||
end | ||
|
||
plist 'create a plist that does not exist to test plist creation' do | ||
path macoscookbook_plist | ||
entry 'PokeballEatenByDog' | ||
value true | ||
owner 'vagrant' | ||
group 'staff' | ||
encoding 'us-ascii' | ||
mode '0600' | ||
end | ||
|
||
plist 'add another value to the new plist' do | ||
path macoscookbook_plist | ||
entry 'CaughtEmAll' | ||
value false | ||
owner 'vagrant' | ||
group 'staff' | ||
encoding 'us-ascii' | ||
end |
This file contains 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
This file contains 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