Commit Graph

5965 Commits

Author SHA1 Message Date
Thomas S Hatch
e75baade0f when acls are enabled the client needs read access to the pki_dir
But only the dir, not the private keys, and no write access
2012-08-17 22:54:55 -06:00
Thomas S Hatch
e04f400820 missed the newline 2012-08-17 22:29:28 -06:00
Thomas S Hatch
7508374e28 return empty payload if auth fails 2012-08-17 22:26:25 -06:00
Thomas S Hatch
015c898da5 Gracefully exit if client fails to authenticate 2012-08-17 22:24:32 -06:00
Thomas S Hatch
c55442406a If the clear load does not have a defined user
then the user should be assumed to be the same as the master is running
as
2012-08-17 22:18:25 -06:00
Thomas S Hatch
2fdeacd63e more acl fixes 2012-08-17 22:11:25 -06:00
Thomas S Hatch
f670816b5c clean stray print statement 2012-08-17 21:46:33 -06:00
Thomas S Hatch
20ecbc6b8a Set up user run as key 2012-08-17 21:45:59 -06:00
Thomas S Hatch
7ce86d6471 fix user return data 2012-08-17 21:19:12 -06:00
Thomas S Hatch
4c3d3d40ae No longer make a "root" key,
but make a key for the user running the master
2012-08-17 21:12:34 -06:00
Thomas S Hatch
bc72fc9637 don't failif not running the master as root 2012-08-17 20:58:01 -06:00
Thomas S Hatch
1040041c5d Merge pull request #1847 from seanchannel/patch-1
Update HACKING.rst
2012-08-17 19:50:33 -07:00
Sean Channel
0cf35b4792 Update HACKING.rst
one line added to indicate the need for swig and libssl-dev to be installed. This sort of assumes that those are the correct package names on distros other that ubuntu. Alternatively just indicate generically that 'the libssl development headers' are needed, etc.
2012-08-17 19:28:54 -07:00
Thomas S Hatch
1a2f638d4a Add a space to terse output 2012-08-17 16:49:10 -06:00
Thomas S Hatch
cbb7d0fa81 Add state output option
State printout has been enhanced, now by default the state output shows
everything, but two options have been added to the configs that allow
for the output to be more granularly configured. state_verbose is the
same as it was, it just now defaults to True, and the new state_output
option allows for states to printout a terse return which should be nice
when running a tree with many low chunks
2012-08-17 16:41:38 -06:00
Thomas S Hatch
e087efa4d5 close color on terse output 2012-08-17 16:40:15 -06:00
Thomas S Hatch
253b13d9ed Add state_output option 2012-08-17 16:38:02 -06:00
Thomas S Hatch
81b0e23c87 Fix state_verbose output in salt-call 2012-08-17 16:20:46 -06:00
Thomas S Hatch
36fe81b5a0 change default state output to be verbose 2012-08-17 16:12:31 -06:00
Thomas S Hatch
f0716ab81e Finish moving state_verbose into the outputer 2012-08-17 15:06:07 -06:00
Thomas S Hatch
4beb793974 Add pem_finger function to utils for #1842 2012-08-17 13:58:06 -06:00
Thomas S Hatch
d731211a07 single quotes 2012-08-17 13:22:03 -06:00
Thomas S Hatch
25ca03f662 Merge branch 'develop' of github.com:saltstack/salt into develop 2012-08-17 02:30:01 -06:00
Thomas S Hatch
2ff2cfa0dd Merge pull request #1839 from jeffh/cron
Fixed cron.set_special.
2012-08-17 00:38:44 -07:00
Jeff Hui
8b0aee03ce Fixed set_special from returning stderr on success instead of 'new'. 2012-08-17 00:19:15 -07:00
Jeff Hui
133c935da9 Fixed set_special always appending its command. 2012-08-17 00:12:12 -07:00
Jeff Hui
576219c2e2 Fixed keyerror when running cron.set_special. 2012-08-16 23:48:33 -07:00
Thomas S Hatch
da954be595 Merge pull request #1828 from kjkuan/develop
Fix the problem that file.recurse does not set file ownerships and permissions when creating new files
2012-08-16 13:56:38 -07:00
Thomas S Hatch
0ee6447178 Merge pull request #1836 from fatbox/umount
Umount
2012-08-16 13:44:44 -07:00
Thomas S Hatch
b567e6a1a9 Clean up spacing 2012-08-16 14:42:01 -06:00
Thomas S Hatch
fdd6957a7d Merge pull request #1835 from harleypig/develop
added opts to grains if set in configuration
2012-08-16 13:40:25 -07:00
Thomas S Hatch
08ab48c295 Merge pull request #1834 from fabulops/FEATURE-at
Initial at(1) module.
2012-08-16 13:39:47 -07:00
Thomas S Hatch
b4ef4c5c5e Merge pull request #1833 from egut/develop
Collect grains on AWS Cloud
2012-08-16 13:35:46 -07:00
Evan Borgstrom
08a5496b1e Add a umount function
Does the opposite of mount. Fancy that :)
2012-08-16 16:29:32 -04:00
Evan Borgstrom
5f89a958ba Merge remote branch 'origin/develop' into develop 2012-08-16 16:24:00 -04:00
Evan Borgstrom
91086c37c3 Merge remote branch 'upstream/develop' into develop 2012-08-16 16:23:46 -04:00
Harley Pig
848af122dd added opts to grains if set in configuration 2012-08-16 13:18:05 -06:00
Jack Kuan
280d703f48 Merge branch 'develop' of https://github.com/saltstack/salt into develop 2012-08-16 11:58:23 -04:00
Jack Kuan
8408ea0601 Fix previous commit.
Needed to take care of the cases when mode is None when passing it
into _makedirs() or _makedirs_perms().
2012-08-16 11:57:00 -04:00
Jack Kuan
c2ca75b0b6 Fix an incorrect ownership and mode bug for intermediate directories in the name of a file.recurse.
The use of _makedirs() to create parent directories of name in
file.recurse does not set the user, group and mode for the directories
created by os.makedirs as mentioned in its comment.

To fix this issue, I copied and modified os.makedirs to include a step
that sets the metadata of the directories created.

Also, simplified the code that adds the executable bits to dir mode in
_makedirs.
2012-08-16 11:20:55 -04:00
Adam Garside
5b1d46e457 Initial at(1) module.
- Tested on CentOS 5.8
- Tested on Ubuntu 12.04/10.04
- Tested on OpenBSD 5.0
2012-08-16 08:47:42 -04:00
Erik Günther
86e2466d6e If running on AWS this will collect some AWS specific grains data 2012-08-16 07:11:50 +00:00
Thomas S Hatch
c10b7bcb06 Need to pass data in via kwargs 2012-08-15 23:21:11 -06:00
Thomas S Hatch
3ddb66bedf restore low chink execution 2012-08-15 22:41:01 -06:00
Thomas S Hatch
25811911dc Move state_verbose into the outputter 2012-08-15 22:31:50 -06:00
Thomas S Hatch
72ed9d1872 single quotes 2012-08-15 22:21:29 -06:00
Thomas S Hatch
16565484c4 Add brief doc on sending SIGUSR1 2012-08-15 22:05:06 -06:00
Thomas S Hatch
0c1b60d710 Fix pillar checks for minion that are pre "os_family" 2012-08-15 18:46:24 -06:00
Jack Kuan
c34825eb78 Merge branch 'develop' of https://github.com/saltstack/salt into develop 2012-08-15 13:10:47 -04:00
Jack Kuan
b685a8fe56 Add missing chanegs from last commit. 2012-08-15 12:14:40 -04:00