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
f6c3dce4
Commit
f6c3dce4
authored
Oct 07, 2013
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4336 from orkaa/devel
Fixes service update-rc.d functionality on debian
parents
a8902e87
672a0c04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
library/system/service
+6
-0
No files found.
library/system/service
View file @
f6c3dce4
...
...
@@ -634,6 +634,12 @@ class LinuxService(Service):
self
.
changed
=
True
break
# Debian compatibility
for
line
in
err
.
splitlines
():
if
self
.
enable
and
line
.
find
(
'no runlevel symlinks to modify'
)
!=
-
1
:
self
.
changed
=
True
break
if
self
.
module
.
check_mode
:
self
.
module
.
exit_json
(
changed
=
self
.
changed
)
...
...
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