-
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.
* first attempt to solve defaults/plist resource whitespacing * create the plist if it is missing * better handling of new plists and novel entries * Improve testing for macos_user (#48) * better "admin" test coverage for macos_user * all default suite tests passing * fix kitchen yaml to enforce idempotency * address comments in plist whitespace pull request * fix syntax error with shellescape * fix heredoc/cookstyle issue * adjust whitespace for heredoc * bump to release version
- Loading branch information
1 parent
6e8db28
commit 40180c1
Showing
18 changed files
with
103 additions
and
54 deletions.
There are no files selected for viewing
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,3 +1,7 @@ | ||
source 'https://supermarket.chef.io' | ||
|
||
metadata | ||
|
||
group :integration do | ||
cookbook 'macos_test', path: './test/cookbooks/macos_test' | ||
end |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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,19 +1,19 @@ | ||
macos_user 'create admin user randall and enable automatic login' do | ||
macos_user 'create admin user with autologin' do | ||
username 'randall' | ||
password 'correct-horse-battery-staple' | ||
autologin true | ||
admin true | ||
groups 'alpha' | ||
end | ||
|
||
macos_user 'create non-admin user johnny' do | ||
macos_user 'create non-admin user with groups' do | ||
username 'johnny' | ||
fullname 'Johnny Appleseed' | ||
password 'yang-yolked-cordon-karate' | ||
groups %w(alpha beta) | ||
end | ||
|
||
macos_user 'create non-admin user paul' do | ||
macos_user 'create non-admin without groups' do | ||
username 'paul' | ||
password 'yang-yolked-cordon-karate' | ||
password 'bacon-saffron-doormat-educe' | ||
end |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.