Skip to content

Commit 96ad303

Browse files
authored
Merge pull request #232 from jbondpdx/master
some edits for sqlserver changes
2 parents 842add1 + 18edd1d commit 96ad303

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -177,21 +177,21 @@ sqlserver_tsql{ 'Always running':
177177
}
178178
```
179179

180-
### Advanced Example
180+
### Advanced example
181181

182-
This advanced example will:
182+
This advanced example:
183183

184-
* Install the basic SQL Server Engine from installation media mounted at 'D:\' with TCP Enabled and various directories set.
184+
* Installs the basic SQL Server Engine from installation media mounted at 'D:\' with TCP Enabled and various directories set.
185185

186-
* Uses only Windows based authentication and installs with only the user that Puppet is executing as. Note that the 'sql_sysadmin_accounts' is only applicable during the instance installation and is not actively enforced.
186+
* Uses only Windows-based authentication and installs with only the user that Puppet is executing as. Note that the 'sql_sysadmin_accounts' is only applicable during the instance installation and is not actively enforced.
187187

188-
* Creates a sqlserver::config resource which is used in later resources to connect to the newly created instance. As we only support Windows based authentication , a username and password is not required.
188+
* Creates a `sqlserver::config` resource, which is used in later resources to connect to the newly created instance. As we support only Windows-based authentication, a username and password is not required.
189189

190-
* Create a local group called 'DB Administrators', and ensure that it is SQL System Administrator (sysadmin role) along with the account used to install the instance, and that Puppet uses to manage the database instance.
190+
* Creates a local group called 'DB Administrators' and ensures that it is SQL System Administrator (sysadmin role); also creates the account that Puppet uses to install and manage the instance.
191191

192-
* Ensure that the advanced options for sp_configure are enabled so we can manage the Max Memory setting for the instance.
192+
* Ensures that the advanced options for `sp_configure` are enabled, so that Puppet can manage the `max memory` setting for the instance.
193193

194-
* Ensure that the Max Memory (MB) configuration item is set to 2048 megabytes.
194+
* Ensure that the `max memory` (MB) configuration item is set to 2048 megabytes.
195195

196196
```puppet
197197
$sourceloc = 'D:/'
@@ -274,7 +274,7 @@ Default: 'present'.
274274

275275
Specifies one or more features to manage. Valid options: 'BC', 'Conn', 'SSMS', 'ADV_SSMS', 'SDK', 'IS', 'MDS', 'BOL', 'DREPLAY_CTLR', 'DREPLAY_CLT'.
276276

277-
The 'Tools' feature is deprecated. Instead specify 'BC', 'SSMS', 'ADV_SSMS', 'Conn', and 'SDK' explicitly.
277+
The 'Tools' value for this setting is deprecated. Specify 'BC', 'SSMS', 'ADV_SSMS', 'Conn', and 'SDK' explicitly.
278278

279279
##### `install_switches`
280280

@@ -366,7 +366,7 @@ Default: 'present'.
366366

367367
*Required.* Specifies one or more features to manage. The list of top-level features includes 'AS' and 'RS'. Valid options: an array containing one or more of the strings 'SQL', 'SQLEngine', 'Replication', 'FullText', 'DQ', 'AS', 'RS', 'POLYBASE', and 'ADVANCEDANALYTICS'.
368368

369-
The 'SQL' feature is deprecated. Instead specify 'DQ', 'FullText', 'Replication', and 'SQLEngine' explicitly.
369+
The 'SQL' value for this setting is deprecated. Specify 'DQ', 'FullText', 'Replication', and 'SQLEngine' explicitly.
370370

371371
##### `install_switches`
372372

@@ -393,15 +393,15 @@ Default: `undef`.
393393

394394
##### `polybase_svc_account`
395395

396-
*Only applicable if the POLYBASE feature for SQL Server 2016 is being installed*
396+
**Applicable only if the POLYBASE feature for SQL Server 2016 is being installed.**
397397

398398
Specifies a domain or system account for the Polybase Engine service.
399399

400400
Valid options: a string specifying an existing username.
401401

402402
##### `polybase_svc_password`
403403

404-
*Only applicable if the POLYBASE feature for SQL Server 2016 is being installed*
404+
**Applicable only if the POLYBASE feature for SQL Server 2016 is being installed.**
405405

406406
Specifies the password for the Polybase Engine service
407407

@@ -1071,9 +1071,9 @@ Terminology differs somewhat between various database systems; please refer to t
10711071

10721072
This module is available only for Windows Server 2012 or 2012 R2, and works with Puppet Enterprise 3.7 and later.
10731073

1074-
This module can only manage a single SQL Server version on a host (one and only one of SQL Server 2012, 2014 or 2016). The module is able to manage multiple SQL Server instances of the same version.
1074+
This module can manage only a single version of SQL Server on a given host (one and only one of SQL Server 2012, 2014 or 2016). The module is able to manage multiple SQL Server instances of the same version.
10751075

1076-
The SQL Server Native Client SDK (also known as SNAC_SDK) can not be managed by this module. The SQL Server installation media is able to install the SDK but is not able to uninstall the SDK. Note that the 'sqlserver_features' fact will detect the presence of the SDK.
1076+
This module cannot manage the SQL Server Native Client SDK (also known as SNAC_SDK). The SQL Server installation media can install the SDK, but it is not able to uninstall the SDK. Note that the 'sqlserver_features' fact detects the presence of the SDK.
10771077

10781078
## Development
10791079

0 commit comments

Comments
 (0)