-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
103 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,83 @@ | ||
# WildFly PowerShell Module | ||
|
||
WildFly PowerShell Module (PSWF) is a collection of useful functions and procedures to manage WildFly using PowerShell. | ||
WildFly PowerShell Module (PSWF) is a framework to manage WildFly using PowerShell. | ||
|
||
<!-- TOC depthFrom:2 depthTo:6 withLinks:1 updateOnSave:1 orderedList:1 --> | ||
|
||
1. [Usage](#usage) | ||
1. [Installation](#installation) | ||
2. [Import](#import) | ||
3. [List available functions](#list-available-functions) | ||
2. [Dependencies](#dependencies) | ||
3. [Roadmap](#roadmap) | ||
|
||
<!-- /TOC --> | ||
|
||
## Usage | ||
|
||
### Installation | ||
|
||
There are two ways of setting up the WildFly PowerShell Module on your system: | ||
1. Download the PSWF module from the [Github repository](https://github.com/Akaizoku/PSWF); | ||
1. Install the PSWF module from the [PowerShell Gallery](https://www.powershellgallery.com/packages/PSWF). | ||
|
||
```powershell | ||
Install-Module -Name "PSWF" -Repository "PSGallery" | ||
``` | ||
|
||
### Import | ||
|
||
```powershell | ||
Import-Module -Name "PSWF" | ||
``` | ||
|
||
### List available functions | ||
|
||
```powershell | ||
Get-Command -Module "PSWF" | ||
``` | ||
|
||
| CommandType | Name | Version | Source | | ||
| ----------- | ---- | ------- | ------ | | ||
| Function | Add-DataSource | 1.0.0 | PSWF | | ||
| Function | Add-JDBCDriver | 1.0.0 | PSWF | | ||
| Function | Add-Module | 1.0.0 | PSWF | | ||
| Function | Add-SecurityRole | 1.0.0 | PSWF | | ||
| Function | Add-User | 1.0.0 | PSWF | | ||
| Function | Add-UserGroupRole | 1.0.0 | PSWF | | ||
| Function | Disable-RBAC | 1.0.0 | PSWF | | ||
| Function | Enable-RBAC | 1.0.0 | PSWF | | ||
| Function | Grant-SecurityRole | 1.0.0 | PSWF | | ||
| Function | Invoke-DeployWAR | 1.0.0 | PSWF | | ||
| Function | Invoke-JBossClient | 1.0.0 | PSWF | | ||
| Function | Invoke-ReloadServer | 1.0.0 | PSWF | | ||
| Function | Invoke-UndeployWAR | 1.0.0 | PSWF | | ||
| Function | Read-DeploymentStatus | 1.0.0 | PSWF | | ||
| Function | Read-Resource | 1.0.0 | PSWF | | ||
| Function | Read-ServerState | 1.0.0 | PSWF | | ||
| Function | Remove-DataSource | 1.0.0 | PSWF | | ||
| Function | Remove-JDBCDriver | 1.0.0 | PSWF | | ||
| Function | Remove-Module | 1.0.0 | PSWF | | ||
| Function | Remove-Resource | 1.0.0 | PSWF | | ||
| Function | Remove-SecurityRole | 1.0.0 | PSWF | | ||
| Function | Remove-User | 1.0.0 | PSWF | | ||
| Function | Remove-UserGroupRole | 1.0.0 | PSWF | | ||
| Function | Resolve-ServerState | 1.0.0 | PSWF | | ||
| Function | Set-Interface | 1.0.0 | PSWF | | ||
| Function | Set-JavaOptions | 1.0.0 | PSWF | | ||
| Function | Set-PortNumber | 1.0.0 | PSWF | | ||
| Function | Set-PortOffset | 1.0.0 | PSWF | | ||
| Function | Test-JBossClientOutcome | 1.0.0 | PSWF | | ||
| Function | Test-Module | 1.0.0 | PSWF | | ||
| Function | Test-SecurityRole | 1.0.0 | PSWF | | ||
| Function | Test-ServerState | 1.0.0 | PSWF | | ||
| Function | Test-User | 1.0.0 | PSWF | | ||
| Function | Test-UserGroupRole | 1.0.0 | PSWF | | ||
|
||
## Dependencies | ||
|
||
The WildFly PowerShell Module requires the [PowerShell Tool Kit module (PSTK)](https://www.powershellgallery.com/packages/PSTK). | ||
|
||
## Roadmap | ||
|
||
- [ ] Add functions to configure logs |