Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
agent
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
7
Merge Requests
0
Wiki
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
0cf18b73
authored
Nov 20, 2018
by
Czémán Arnold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
linux: remove unnecessary distro specific hostname setting
Issue:
#21
parent
f302ef53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
10 deletions
+2
-10
linux/_linuxcontext.py
+2
-10
No files found.
linux/_linuxcontext.py
View file @
0cf18b73
...
@@ -105,16 +105,8 @@ class Context(BaseContext):
...
@@ -105,16 +105,8 @@ class Context(BaseContext):
@staticmethod
@staticmethod
def
set_hostname
(
hostname
):
def
set_hostname
(
hostname
):
if
distro
==
'debian'
:
with
open
(
'/etc/hostname'
,
'w'
)
as
f
:
with
open
(
'/etc/hostname'
,
'w'
)
as
f
:
f
.
write
(
hostname
)
f
.
write
(
hostname
)
elif
distro
==
'rhel'
:
for
line
in
fileinput
.
input
(
'/etc/sysconfig/network'
,
inplace
=
1
):
if
line
.
startswith
(
'HOSTNAME='
):
print
'HOSTNAME=
%
s'
%
hostname
else
:
print
line
.
rstrip
()
with
open
(
'/etc/hosts'
,
'w'
)
as
f
:
with
open
(
'/etc/hosts'
,
'w'
)
as
f
:
f
.
write
(
"127.0.0.1 localhost
\n
"
f
.
write
(
"127.0.0.1 localhost
\n
"
...
...
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