Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions readmes/README_ja_JP.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,24 @@ C:\\WINDOWS\\System32
../relative_path
```

#### `Stdlib::Ensure::Service`

サービスリソースの使用可能なensure値と一致します。

使用可能なインプット例:

```shell
停止済み
実行中
```

使用不可能なインプット例:

```shell
true
false
```

#### `Stdlib::Httpsurl`

HTTPS URLに一致します。
Expand Down Expand Up @@ -351,6 +369,30 @@ Unixオペレーティングシステムのパスに一致します。
C:/whatever
```

#### `Stdlib::Filemode`

8進数で有効な4桁モードと一致します。

使用可能なインプット例:

```shell
0644
```

```shell
1777
```

使用不可能なインプット例:

```shell
644
```

```shell
0999
```

#### `Stdlib::Windowspath`

Windowsオペレーティングシステムのパスに一致します。
Expand Down Expand Up @@ -1651,6 +1693,22 @@ shell_split('foo\ bar ba\"z') => ['foo bar', 'ba"z']

*タイプ*: 右辺値

#### `sprintf_hash`

名前が指定されたテキストのリファレンスでprintfスタイルのフォーマットを実行します。

最初のパラメータは、ハッシュ内での残りのパラメータのフォーマット方法を記述するフォーマット文字列です。詳細については、Rubyの`Kernel::sprintf`機能のマニュアルを参照してください。

例:

```puppet
$output = sprintf_hash('String: %<foo>s / number converted to binary: %<number>b',
{ 'foo' => 'a string', 'number' => 5 })
# $output = 'String: a string / number converted to binary: 101'
```

*Type*: rvalue

#### `sort`

文字列と配列を語彙的に分類します。
Expand Down