Skip to content

Commit

Permalink
Merge pull request #69 from yel-hadd/master
Browse files Browse the repository at this point in the history
fixed code block styling not being applied
  • Loading branch information
annkots authored Mar 18, 2024
2 parents f714692 + e95da0b commit f7bb03a
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 53 deletions.
4 changes: 2 additions & 2 deletions docs/eportal-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ Puppet provides the framework to run tasks on target systems. The following is a

Unregister KernelCare agent through API call:

```bash
```
#!/bin/bash
EPORTAL_API_USERNAME=<your ePortal api user name>
Expand All @@ -616,7 +616,7 @@ curl -kL -u "${EPORTAL_API_PASSWORD}"':'"${EPORTAL_API_PASSWORD}" -X POST "${EPO

Example (unregister_server.sh):

```bash
```
#!/bin/bash
EPORTAL_API_USERNAME=admin
Expand Down
44 changes: 22 additions & 22 deletions docs/extended-lifecycle-support-for-languages/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,13 @@ rsync://repo.cloudlinux.com/PHP_ELS/

Example of creating a local mirror for all supported OS versions:

```bash
```
rsync -avSHP --delete rsync://repo.cloudlinux.com/PHP_ELS/ .
```

Example of creating a local mirror for a specific OS version:

```bash
```
rsync -avSHP --delete rsync://repo.cloudlinux.com/PHP_ELS/el6/ .
```

Expand Down Expand Up @@ -193,19 +193,19 @@ Currently, we provide OVAL data for the following OS versions:

1. Install OpenSCAP
* for rpm systems:
```bash
```
yum install openscap openscap-utils scap-security-guide -y
```
* for deb systems:
```bash
```
apt-get install libopenscap8 -y
```
2. Download OVAL stream:
```bash
```
wget https://repo.cloudlinux.com/php-els/centos6-els-php-oval.xml
```
3. Run scanning:
```bash
```
oscap oval eval --results result.xml --report report.xml centos6-els-php-oval.xml
```
Expand All @@ -221,7 +221,7 @@ When you deploy an updated version of PHP through PHP ELS, using your system’s
**The *bin* files:**
```javascript
```
[root@localhost ~]# ll /opt/alt/phpXY/usr/bin/
bytekit hphpa pear pecl phar.phar phpcb php-config phpcpd phploc phpunit-skelgen
dbunit lsphp peardev phar php php-cgi phpcov phpize phpunit ppw
Expand All @@ -230,7 +230,7 @@ dbunit lsphp peardev phar php
***Modules* and *pecl* extensions:**
```javascript
```
ls /opt/alt/phpXY/usr/lib64/php/modules/
ZendGuardLoader.so imagick.so oci8.so stem.so
amqp.so imap.so odbc.so stomp.so
Expand Down Expand Up @@ -268,14 +268,14 @@ igbinary.so oauth.so stats.so
**Running code on a specific version through the CLI:**
```javascript
```
[root@localhost ~]# /opt/alt/phpXY/usr/bin/php helloworld.php
Hello, World!
```
**Location of *ini* config files:**
```javascript
```
[root@localhost ~]# ls /opt/alt/phpXY/etc/php.d.all/
40-leveldb.ini mailparse.ini redis.ini
40-snuffleupagus.ini mbstring.ini rrd.ini
Expand Down Expand Up @@ -314,13 +314,13 @@ lzf.ini raphf.ini
**Location of *default.ini*:**
```javascript
```
ls /opt/alt/phpXY/etc/php.d/default.ini
```
**Listing enabled modules on a specific version:**
```javascript
```
[root@localhost ~]# /opt/alt/php73/usr/bin/php -m
[PHP Modules]
bz2
Expand Down Expand Up @@ -357,7 +357,7 @@ zlib
**Enabling a module through the CLI:**
```javascript
```
[root@localhost ~]# /opt/alt/php73/usr/bin/php -d "extension=igbinary.so" -m
[PHP Modules]
bz2
Expand Down Expand Up @@ -403,17 +403,17 @@ Extended Lifecycle Support (ELS) for Python from TuxCare provides security fixes
1. Download an installer script:
```bash
```
wget https://repo.cloudlinux.com/python-els/install-python-els-repo.sh
```
2. Run the installer script with keys. The installation script registers the server in the CLN with the key, adds a PGP key and adds repository to the server.
```bash
```
sh install-python-els-repo.sh --license-key XXX-XXXXXXXXXXXX
```
3. Verify that the installation was successful.
To ensure the installation has been completed successfully, run the following command. It should return the info about an available package. If information about the package will be available, it would mean that installation was successful. After that, updates will be available for installation from the repository using the usual yum upgrade command.
```bash
```
yum info python2

Available Packages
Expand All @@ -431,7 +431,7 @@ Description  : Python 2 is an old version of the language that is incompatible
             : with the 3.x line of releases.
```
4. To install python, it's necessary to enable the CodeReady Builder(CRB) repository, which contains the `gdbm` package.
```bash
```
yum install python2 --enablerepo crb
```
Once installed, you can use python2 in the usual way.
Expand All @@ -451,13 +451,13 @@ To obtain the access to the local mirroring, provide your External IP address to

To create a local mirror of the repository with security updates via `rsync`, use the following:

```bash
```
rsync://repo.cloudlinux.com/PYTHON_ELS/
```

Example of creating a local mirror for all supported OS versions:

```bash
```
rsync -avSHP --delete rsync://repo.cloudlinux.com/PYTHON_ELS/ .
```

Expand All @@ -475,14 +475,14 @@ AlmaLinux 9: [https://repo.cloudlinux.com/python-els/almalinux9-els-python-oval.
#### How to use OVAL

1. Install OpenSCAP:
```bash
```
yum install openscap openscap-utils scap-security-guide -y
```
2. Download OVAL stream:
```bash
```
wget https://repo.cloudlinux.com/python-els/almalinux9-els-python-oval.xml
```
3. Run scanning:
```bash
```
oscap oval eval --results result.xml --report report.xml almalinux9-els-python-oval.xml
```
4 changes: 2 additions & 2 deletions docs/jp/eportal-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ Puppetは、対象のシステムでタスクを実行するためのフレー

API呼び出しを介してKernelCareエージェントを登録解除します。

```bash
```
#!/bin/bash
EPORTAL_API_USERNAME=<your ePortal api user name>
Expand All @@ -275,7 +275,7 @@ curl -kL -u "${EPORTAL_API_PASSWORD}"':'"${EPORTAL_API_PASSWORD}" -X POST "${EPO

例(unregister_server.sh):

```bash
```
#!/bin/bash
EPORTAL_API_USERNAME=admin
Expand Down
6 changes: 3 additions & 3 deletions docs/jp/eportal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -464,22 +464,22 @@ ePortalサーバーをKernelCareパッチサーバーに接続して、パッチ

ePortalのテストインスタンスと本番インスタンスの違いを見てみましょう。

```bash
```
$ comm -23 \
<(ssh eportal-test "ls /usr/share/kcare-eportal/arch/K*.tar.bz2" | sort -h) \
<(ssh eportal-prod "ls /usr/share/kcare-eportal/arch/K*.tar.bz2" | sort -h) | tee patchsets.diff
```

本番環境にパッチセットをアップロードします。

```bash
```
$ cat patchsets.diff | xargs -Phav {} rsync -iv eportal-test:{} /tmp/
$ rsync -Phav /tmp/K*.tar.bz2 eportal-prod:/tmp/
```

パッチセットファイル名をパラメーターとして、展開ツールを実行します。

```bash
```
$ ssh eportal-prod 'ls /tmp/K*.tar.bz2 | sort -h | xargs -n1 kc.eportal kcare deploy'
2021-12-02 01:25:06,555 - eportal.patches - INFO - K04082020_1 was enabled in main
...
Expand Down
44 changes: 22 additions & 22 deletions docs/jp/extended-lifecycle-support-for-languages/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,13 @@ rsync://repo.cloudlinux.com/PHP_ELS/

サポートされているすべてのOSバージョンのローカルミラーを作成する例:

```bash
```
rsync -avSHP --delete rsync://repo.cloudlinux.com/PHP_ELS/ .
```

特定のOSバージョンのローカルミラーを作成する例:

```bash
```
rsync -avSHP --delete rsync://repo.cloudlinux.com/PHP_ELS/el6/ .
```

Expand Down Expand Up @@ -188,19 +188,19 @@ OSを指定するには、推奨オプションのいずれかを使用してく

1. OpenSCAPをインストールします。
* rpmシステムの場合
```bash
```
yum install openscap openscap-utils scap-security-guide -y
```
* debシステムの場合
```bash
```
apt-get install libopenscap8 -y
```
2. OVALストリームをダウンロードします。
```bash
```
wget https://repo.cloudlinux.com/php-els/centos6-els-php-oval.xml
```
3. スキャンを実行します。
```bash
```
oscap oval eval --results result.xml --report report.xml centos6-els-php-oval.xml
```
Expand Down Expand Up @@ -299,7 +299,7 @@ oscap oval eval --results result.xml --report report.xml centos6-els-php-oval.xm
***bin*ファイル:**
```javascript
```
[root@localhost ~]# ll /opt/alt/phpXY/usr/bin/
bytekit hphpa pear pecl phar.phar phpcb php-config phpcpd phploc phpunit-skelgen
dbunit lsphp peardev phar php php-cgi phpcov phpize phpunit ppw
Expand All @@ -308,7 +308,7 @@ dbunit lsphp peardev phar php
***Modules*と*pecl*拡張モジュール:**
```javascript
```
ls /opt/alt/phpXY/usr/lib64/php/modules/
ZendGuardLoader.so imagick.so oci8.so stem.so
amqp.so imap.so odbc.so stomp.so
Expand Down Expand Up @@ -346,14 +346,14 @@ igbinary.so oauth.so stats.so
**CLIを介した、特定のバージョンへのコードの実行:**
```javascript
```
[root@localhost ~]# /opt/alt/phpXY/usr/bin/php helloworld.php
Hello, World!
```
***ini*構成ファイルの場所:**
```javascript
```
[root@localhost ~]# ls /opt/alt/phpXY/etc/php.d.all/
40-leveldb.ini mailparse.ini redis.ini
40-snuffleupagus.ini mbstring.ini rrd.ini
Expand Down Expand Up @@ -392,13 +392,13 @@ lzf.ini raphf.ini
***default.ini*の場所:**
```javascript
```
ls /opt/alt/phpXY/etc/php.d/default.ini
```
**特定のバージョンで有効なモジュールのリスト表示:**
```javascript
```
[root@localhost ~]# /opt/alt/php73/usr/bin/php -m
[PHP Modules]
bz2
Expand Down Expand Up @@ -435,7 +435,7 @@ zlib
**CLIを介したモジュールの有効化:**
```javascript
```
[root@localhost ~]# /opt/alt/php73/usr/bin/php -d "extension=igbinary.so" -m
[PHP Modules]
bz2
Expand Down Expand Up @@ -481,18 +481,18 @@ TuxCareは、Python向け延長ライフサイクルサポート(ELS)によ
1. インストールスクリプトをダウンロードします。
```bash
```
wget https://repo.cloudlinux.com/python-els/install-python-els-repo.sh
```
2. キーを使用して、インストールスクリプトを実行します。インストールスクリプトを実行すると、そのキーと共にCLNにサーバーが登録され、PGPキーが追加され、リポジトリがサーバーに追加されます。
```bash
```
sh install-python-els-repo.sh --license-key XXX-XXXXXXXXXXXX
```
3. インストールが成功したことを確認します。
インストールが正常に完了したことを確認するには、以下のコマンドを実行します。コマンドを実行すると、利用可能なパッケージに関する情報が返されるはずです。パッケージに関する情報が利用可能な場合は、インストールが成功したことになります。それ以降は、通常のyum upgradeコマンドを使用して、リポジトリから更新をインストールできます。
```bash
```
yum info python2

Available Packages
Expand All @@ -510,7 +510,7 @@ Description  : Python 2 is an old version of the language that is incompatible
             : with the 3.x line of releases.
```
4. Pythonをインストールするには、CodeReady Builder(CRB) リポジトリを有効にする必要があります。このリポジトリには、`gdbm`パッケージが含まれています。
```bash
```
yum install python2 --enablerepo crb
```
インストールしたら、通常の方法でpython2を使用できます。
Expand All @@ -529,13 +529,13 @@ ELSアップデート用にPythonのローカルミラーを作成する機能

`rsync`経由でセキュリティアップデートのリポジトリのローカルミラーを作成するには、以下のコマンドを使用します。

```bash
```
rsync://repo.cloudlinux.com/PYTHON_ELS/
```

サポートされているすべてのOSバージョンのローカルミラーを作成する例:

```bash
```
rsync -avSHP --delete rsync://repo.cloudlinux.com/PYTHON_ELS/ .
```

Expand All @@ -552,14 +552,14 @@ AlmaLinux 9: [https://repo.cloudlinux.com/python-els/almalinux9-els-python-oval.
#### OVALの使用方法

1. OpenSCAPをインストールします。
```bash
```
yum install openscap openscap-utils scap-security-guide -y
```
2. OVALストリームをダウンロードします。
```bash
```
wget https://repo.cloudlinux.com/python-els/almalinux9-els-python-oval.xml
```
3. スキャンを実行します。
```bash
```
oscap oval eval --results result.xml --report report.xml almalinux9-els-python-oval.xml
```
Loading

0 comments on commit f7bb03a

Please sign in to comment.