Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
8af38ae4
Commit
8af38ae4
authored
Jun 21, 2014
by
Chris Hoffman
Committed by
Chris Hoffman
Jun 21, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding win_service module
parent
59698e7f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
148 additions
and
0 deletions
+148
-0
library/windows/win_service
+72
-0
library/windows/win_service.ps1
+76
-0
No files found.
library/windows/win_service
0 → 100644
View file @
8af38ae4
#!/usr/bin/python
# -*- coding: utf-8 -*-
# (c) 2014, Chris Hoffman <choffman@chathamfinancial.com>
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
# this is a windows documentation stub. actual code lives in the .ps1
# file of the same name
DOCUMENTATION
=
'''
---
module: win_service
version_added: "1.7"
short_description: Manages Windows services
description:
- Manages Windows services
options:
name:
description:
- Name of the service
required: true
default: null
aliases: []
start_mode:
description:
- Set the startup type for the service
required: false
choices:
- auto
- manual
- disabled
state:
description:
- C(started)/C(stopped) are idempotent actions that will not run
commands unless necessary. C(restarted) will always bounce the
service.
required: false
choices:
- started
- stopped
- restarted
default: null
aliases: []
author: Chris Hoffman
'''
EXAMPLES
=
'''
# Restart a service
win_service:
name: ncover
state: restarted
# Set service startup mode to auto and ensure it is started
win_service:
name: ncover
start_mode: auto
state: started
'''
library/windows/win_service.ps1
0 → 100644
View file @
8af38ae4
#!powershell
# This file is part of Ansible
#
# Copyright 2014, Chris Hoffman <choffman@chathamfinancial.com>
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
# WANT_JSON
# POWERSHELL_COMMON
$params
=
Parse-Args
$args
;
$result
=
New-Object
PSObject;
Set
-Attr
$result
"changed"
$false
;
If
(
-not
$params
.name.GetType
)
{
Fail-Json
$result
"missing required arguments: name"
}
If
(
$params
.state
)
{
$state
=
$params
.state.ToString
()
.ToLower
()
If
((
$state
-ne
'started'
)
-and
(
$state
-ne
'stopped'
)
-and
(
$state
-ne
'restarted'
))
{
Fail-Json
$result
"state is '
$state
'; must be 'started', 'stopped', or 'restarted'"
}
}
If
(
$params
.start_mode
)
{
$startMode
=
$params
.start_mode.ToString
()
.ToLower
()
If
((
$startMode
-ne
'auto'
)
-and
(
$startMode
-ne
'manual'
)
-and
(
$startMode
-ne
'disabled'
))
{
Fail-Json
$result
"start mode is '
$startMode
'; must be 'auto', 'manual', or 'disabled'"
}
}
$svcName
=
$params
.name
$svc
=
Get-Service
-Name
$svcName
-ErrorAction SilentlyContinue
If
(
-not
$svc
)
{
Fail-Json
$result
"Service not installed"
}
If
(
$startMode
)
{
$svcMode
=
Get-WmiObject
-Class Win32_Service -Property StartMode -Filter
"Name='
$svcName
'"
If
(
$svcMode
.StartMode.ToLower
()
-ne
$startMode
)
{
Set-Service
-Name
$svcName
-StartupType
$startMode
Set
-Attr
$result
"changed"
$true
}
}
If
(
$state
)
{
If
(
$state
-eq
"started"
-and
$svc
.Status -ne
"Running"
)
{
Start-Service
-Name
$svcName
Set
-Attr
$result
"changed"
$true
;
}
ElseIf
(
$state
-eq
"stopped"
-and
$svcName
-ne
"Stopped"
)
{
Stop-Service
-Name
$svcName
Set
-Attr
$result
"changed"
$true
;
}
ElseIf
(
$state
-eq
"restarted"
)
{
Restart-Service
-Name
$svcName
Set
-Attr
$result
"changed"
$true
;
}
}
Exit
-Json
$result
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment