This file contains hidden or 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
| REG ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\CredSSP\Parameters\ /v AllowEncryptionOracle /t REG_DWORD /d 2 |
This file contains hidden or 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
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: disable-transparent-hugepages | |
| # Required-Start: $local_fs | |
| # Required-Stop: | |
| # X-Start-Before: mongod mongodb-mms-automation-agent | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Disable Linux transparent huge pages | |
| # Description: Disable Linux transparent huge pages, to improve |
This file contains hidden or 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
| export LANGUAGE=en_US.UTF-8 | |
| export LANG=en_US.UTF-8 | |
| export LC_ALL=en_US.UTF-8 | |
| locale-gen en_US.UTF-8 | |
| locale-gen ru_RU.UTF-8 | |
| dpkg-reconfigure locales |
This file contains hidden or 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
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
This file contains hidden or 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
| --- frontends/php/app/views/monitoring.widget.problems.view.php.orig 2019-10-14 01:13:02.104862978 -0400 | |
| +++ frontends/php/app/views/monitoring.widget.problems.view.php 2019-10-14 01:23:01.615655216 -0400 | |
| @@ -197,7 +197,7 @@ | |
| ]; | |
| if ($show_opdata == OPERATIONAL_DATA_SHOW_WITH_PROBLEM && $opdata) { | |
| - $problem_link = array_merge($problem_link, [' (', $opdata, ')']); | |
| + $problem_link = array_merge($problem_link, [' ', $opdata]); | |
| } |
This file contains hidden or 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
| rem Copy curent boot config to "Windows 10 without Hyper-V" | |
| bcdedit /copy {current} /d "Windows 10 without Hyper-V" | |
| rem Edit new config, set disable hyper-v support | |
| bcdedit /set {cbd611ae-f320-11e9-9800-b8aeedea1201} hypervisorlaunchtype off | |
| rem Set new config is default | |
| bcdedit /default {cbd611ae-f320-11e9-9800-b8aeedea1201} | |
| rem Set timeout |
This file contains hidden or 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
| [DBS-003] Patch for Zabbix v4.4.0 to added Latest data in host settings page | |
| --- frontends/php/include/html.inc.php.orig 2019-10-14 23:03:10.624511675 +0500 | |
| +++ frontends/php/include/html.inc.php 2019-10-14 23:05:35.610755722 +0500 | |
| @@ -363,6 +363,13 @@ | |
| * the count of rows | |
| */ | |
| if ($lld_ruleid == 0) { | |
| + // latest data | |
| + if (!$is_template) { | |
| + $content_menu->addItem( |
This file contains hidden or 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
| [Unit] | |
| Description=Zabbix Agent | |
| After=syslog.target | |
| After=network.target | |
| [Service] | |
| Environment="CONFFILE=/etc/zabbix/zabbix_agentd.conf" | |
| EnvironmentFile=-/etc/default/zabbix-agent | |
| Type=forking | |
| Restart=on-failure |
This file contains hidden or 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
| [Unit] | |
| Description=Zabbix Server | |
| After=syslog.target | |
| After=network.target | |
| [Service] | |
| Environment="CONFFILE=/etc/zabbix/zabbix_server.conf" | |
| EnvironmentFile=-/etc/default/zabbix-server | |
| Type=forking | |
| Restart=on-failure |
This file contains hidden or 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
| [Unit] | |
| Description=Zabbix Proxy | |
| After=syslog.target | |
| After=network.target | |
| [Service] | |
| Environment="CONFFILE=/etc/zabbix/zabbix_proxy.conf" | |
| EnvironmentFile=-/etc/default/zabbix-proxy | |
| Type=forking | |
| Restart=on-failure |