Filip Pytloun
ac52e02f79
Merge pull request #92 from Martin819/master
Add ability to add ppa repo
7 years ago
Martin Polreich
09a648ae21
Add ability to add ppa repo
7 years ago
Filip Pytloun
e70606d0d2
Manage grains using support metadata
Change-Id: I25fb0eb0d4b922b8853eceb0c1c220a4040e1704
7 years ago
Filip Pytloun
3da8449582
Merge "Add variables in prometheus alerts"
7 years ago
Bartosz Kupidura
d8b54c95da
Add variables in prometheus alerts
Change-Id: I1765fc6aa4a8c3da25330f19bb043ddbf548b9ad
7 years ago
Filip Pytloun
0e5de5e26a
Merge pull request #91 from salt-formulas/pr/linux_system_repo_key
Allow direct use of gpg key in linux.system.repo
7 years ago
Petr Michalec
1ae62b1fb7
Allow direct use of gpg key in linux.system.repo
7 years ago
Filip Pytloun
be897231ea
Merge pull request #86 from avlasov-mos-de/master
Add dhclient basic configuration
7 years ago
Filip Pytloun
1b6c0e59a3
Version 2017.4.1
Change-Id: Ie8dd3ae33ee99fbc1ee7be77cd7a991ed7e4daa7
7 years ago
Filip Pytloun
df84869f9c
Fix makefile
Change-Id: Ifb7fd7260280587b0f5e4c6a5d011e325ecbe87b
7 years ago
Filip Pytloun
09820f1bbb
Version 2017.4
Change-Id: Icb8f3eaa05b747fb219da1974e4960f7ef089f08
7 years ago
Filip Pytloun
ec38d554e1
Merge pull request #90 from jiribroulik/master
README fix for purging repos
7 years ago
Jiri Broulik
34a29b491d
README fix for purging repos
7 years ago
Aleš Komárek
6e6577a609
Merge pull request #83 from salt-formulas/pr/preinstall-apt-https-tranpsort2
avoid install system pkgs before repo configured
7 years ago
Oleksandr Vlasov
27a6c3afb2
Add dhclient basic configuration
Allows configuring general section as well as configuring
each dhcp enabled interface separetly.
Does not allow alias or lease configuration.
7 years ago
Filip Pytloun
c2d83ea80b
Merge pull request #89 from damjanek/master
Add option to parametrize checks
7 years ago
Damian Szeluga
1e47abe149
Add option to parametrize checks
7 years ago
Filip Pytloun
04c652c146
Merge pull request #88 from salt-formulas/pr/preinstall-apt-https-tranpsort
preinstall apt https transport
7 years ago
Petr Michalec
c6e0784ead
Merge pull request #87 from jiribroulik/master
mkdirs in netconsole fix
7 years ago
Jiri Broulik
0792a9bcf3
mkdirs in netconsole fix
7 years ago
Jakub Pavlik
74dad5373d
Merge pull request #85 from TatyankaLeontovich/master
Fix mistake in kernel.sls
7 years ago
Tatyana Leontovich
f05e7d4eef
Fix mistake in kernel.sls
7 years ago
Filip Pytloun
d123fcd152
Merge pull request #84 from jiribroulik/master
purging repos
7 years ago
Jiri Broulik
25839cca97
purging repos
7 years ago
Filip Pytloun
361d69943b
Merge "netconsole remote kernel logger"
7 years ago
Vladimir Eremin
ccf28849b0
netconsole remote kernel logger
To configure:
* set system.netconsole.enabled to true
* create system.netconsole.target dict
* set a record with IP address and MAC and interface as subdict
It works with both static and DHCP interfaces, and applies online.
You could use bash-scripting in netconsole.conf.
You could override the MAC.
See tests/pillar/system.sls for further information.
Change-Id: I1cbde47575eb5d32a34cd6d79a063f42dbea7643
7 years ago
Petr Michalec
459da2bc65
avoid install system pkgs before repo configured
7 years ago
Petr Michalec
6969322bee
preinstall apt https transport
7 years ago
Marek Celoud
9ed340364a
add package include into repo state
Change-Id: I4fd6cafb72fb1ad89c6595782d6705f49777761b
7 years ago
Aleš Komárek
6357299ee2
Update README.rst
7 years ago
Bartosz Kupidura
0bd8565876
Add support for prometheus
Change-Id: I66576b4ed40ef160c5f13747a908f018f252b6b4
7 years ago
Bartosz Kupidura
df9b40d973
Add telegraf support
Change-Id: I03bed44bafdebbcd22f487e59ef0de45dfbf3463
7 years ago
Filip Pytloun
2a1850643e
Merge pull request #81 from jiribroulik/master
nfs filesystem mount fix
7 years ago
Jiri Broulik
b845058fe5
nfs filesystem mount fix
7 years ago
Filip Pytloun
ec6d595ce2
Merge pull request #78 from Martin819/master
Update .travis.yml and notififcations
7 years ago
Aleš Komárek
dd97816bd2
Merge pull request #79 from jiribroulik/master
nfs storage mount
7 years ago
Jiri Broulik
b017f93ade
nfs storage mount
7 years ago
Filip Pytloun
75f9723818
Fix profile.d permissions again
Change-Id: Ic7700b2d20ec84db6e44653c6db7caa61d0470d2
7 years ago
Filip Pytloun
41d775d60a
Fix /etc/profile.d permissions
Change-Id: I132c3900da9c35214df288829b5371803a1496ee
7 years ago
Filip Pytloun
914eff9e0f
Cleanup reponame.list to remove obsolete entries
Change-Id: Ifaa3adff756ed63f8e1f66d5de344cb0ab1c9e94
7 years ago
Martin Polreich
f0d157b0a9
Update .travis.yml and notififcations
7 years ago
Filip Pytloun
1e871ba239
Merge pull request #77 from noskovao/patch-1
Update etc_environment
7 years ago
Alexander Noskov
2896b7297c
Update etc_environment
Need to remove useless semicolon because it is not working properly.
For example:
root@node:~# grep http_proxy /etc/environment
http_proxy="http://10.0.0.1:8080 ";
root@node:~# env | grep http_proxy
http_proxy=http://10.0.0.1:8080 ";
root@node:~# curl http://google.com
curl: (7) Failed to connect to 10.0.0.1 port 80: Connection refused
root@node:~# export http_proxy=http://10.0.0.1:8080 ;
root@node:~# curl http://google.com
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>302 Moved</TITLE></HEAD><BODY>
<H1>302 Moved</H1>
The document has moved
<A HREF="http://www.google.co.in/?gfe_rd=cr&ei=_WTaWKLuD4iI8QfC0azABw ">here</A>.
</BODY></HTML>
7 years ago
Filip Pytloun
ffdf22388c
Merge pull request #72 from aplsms/feature-tap_custom_txqueuelen
Feature: automatically set txqueuelen for all tap* network interfaces
7 years ago
Filip Pytloun
7ee64827e6
Merge pull request #75 from salt-formulas/pr_proxy_advance2
Add system.env, system.profile, system.proxy and configure proxy for repo
7 years ago
Petr Michalec
10462bba7f
Add system.env, system.profile, system.proxy and configure proxy under system.repo
7 years ago
Simon Pasquier
a4a6f16bbe
Fix severity for the linux_system_cpu_warning alarm
Change-Id: Ic3a1e77f2d38c5d916dd3c07211a6ea160559e6f
7 years ago
Filip Pytloun
bcd470c9d0
Merge pull request #74 from pjediny/fix-salt-interfaces
Workaround for salt network interfaces bug
7 years ago
Petr Jediný
16f928f5df
Workaround for salt network interfaces bug
We need to save our manualy managed interfaces to different directory to
workaround salt bug that causes interface deconfiguration in
/etc/network/interfaces for interfaces manualy configured in
/etc/network/interfaces.d
Upstream-Bug: https://github.com/saltstack/salt/issues/40262
7 years ago
Filip Pytloun
ecc648a4dd
Merge pull request #73 from salt-formulas/pr_advanced_repo_options
Add consolidate/clean_file/refresh_db pkgrepo options
7 years ago