ae1540a455
- Bugfix: clean up `change` attribute from interface dict (upstream) Issue: https://github.com/saltstack/salt/issues/41461 PR: 1. https://github.com/saltstack/salt/pull/41487 2. https://github.com/saltstack/salt/pull/41533 Added: * clean-up-change-attribute-from-interface-dict.patch - Bugfix: orchestrate and batches returns false failed information https://github.com/saltstack/salt/issues/40635 - speed-up cherrypy by removing sleep call - wrong os_family grains on SUSE - fix unittests (bsc#1038855) - fix setting the language on SUSE systems (bsc#1038855) - Bugfix: unable to use hostname for minion ID as '127' (upstream) - Bugfix: remove sleep call in CheppryPy API handler (upstream) - Fix core grains constants for timezone (bsc#1032931) - Added: * bugfix-unable-to-use-127-as-hostname.patch * fix-grain-for-os_family-on-suse-series.patch * fix-os_family-case-in-unittest.patch * fix-setting-language-on-suse-systems.patch * fixed-issue-with-parsing-of-master-minion-returns-wh.patch * rest_cherrypy-remove-sleep-call.patch * use-correct-grain-constants-for-timezone.patch - Update to 2016.11.4 See https://docs.saltstack.com/en/develop/topics/releases/2016.11.4.html for full changelog - Changed: * add-options-for-dockerng.patch * fix-regression-in-file.get_managed-add-unit-tests.patch OBS-URL: https://build.opensuse.org/request/show/514025 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:saltstack/salt?expand=0&rev=89 |
||
---|---|---|
.gitattributes | ||
.gitignore | ||
add-a-salt-minion-service-control-file.patch | ||
add-options-for-dockerng.patch | ||
add-ssh-option-to-salt-ssh.patch | ||
add-unit-test-for-skip-false-values-from-preferred_i.patch | ||
add-yum-plugin.patch | ||
add-zypp-notify-plugin.patch | ||
adding-support-for-installing-patches-in-yum-dnf-exe.patch | ||
avoid-failures-on-sles-12-sp2-because-of-new-systemd.patch | ||
bugfix-unable-to-use-127-as-hostname.patch | ||
change-travis-configuration-file-to-use-salt-toaster.patch | ||
check-if-byte-strings-are-properly-encoded-in-utf-8.patch | ||
clean-up-change-attribute-from-interface-dict.patch | ||
do-not-generate-a-date-in-a-comment-to-prevent-rebui.patch | ||
fix-grain-for-os_family-on-suse-series.patch | ||
fix-os_family-case-in-unittest.patch | ||
fix-regression-in-file.get_managed-add-unit-tests.patch | ||
fix-salt-summary-to-count-not-responding-minions-cor.patch | ||
fix-setting-language-on-suse-systems.patch | ||
fixed-issue-with-parsing-of-master-minion-returns-wh.patch | ||
fixing-beacons.list-integration-test-failure.patch | ||
html.tar.bz2 | ||
README.SUSE | ||
rest_cherrypy-remove-sleep-call.patch | ||
run-salt-api-as-user-salt-bsc-990029.patch | ||
run-salt-master-as-dedicated-salt-user.patch | ||
salt-2016.11.4.tar.gz | ||
salt-tmpfiles.d | ||
salt.changes | ||
salt.spec | ||
search-the-entire-cache_dir-because-storage-paths-ch.patch | ||
setting-up-os-grains-for-sles-expanded-support-suse-.patch | ||
special-salt-minion.service-file-for-rhel7.patch | ||
translate-variable-arguments-if-they-contain-hidden-.patch | ||
travis.yml | ||
tserong-suse.com-we-don-t-have-python-systemd-so-not.patch | ||
update-documentation.sh | ||
use-correct-grain-constants-for-timezone.patch |
Salt-master as non-root user ============================ With this version of salt the salt-master will run as salt user. Why an extra user ================= While the current setup runs the master as root user, this is considered a security issue and not in line with the other configuration management tools (eg. puppet) which runs as a dedicated user. How can I undo the change ========================= If you would like to make the change before you can do the following steps manually: 1. change the user parameter in the master configuration user: root 2. update the file permissions: as root: chown -R root /etc/salt /var/cache/salt /var/log/salt /var/run/salt 3. restart the salt-master daemon: as root: rcsalt-master restart or systemctl restart salt-master NOTE ==== Running the salt-master daemon as a root user is considers by some a security risk, but running as root, enables the pam external auth system, as this system needs root access to check authentication. For more information: http://docs.saltstack.com/en/latest/ref/configuration/nonroot.html