summaryrefslogtreecommitdiffstats
path: root/pyanaconda/flags.py
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2012-06-07 22:09:26 -0700
committerJesse Keating <jkeating@redhat.com>2012-06-08 10:06:49 -0700
commit6a5deaff7cd9710f9267f48001d4331958bacd45 (patch)
tree35b6f89f061aa98f1eb395a9c3653f2a84f25d0b /pyanaconda/flags.py
parentfcb1049bffe200acebac3372d8af7fc60926c892 (diff)
downloadanaconda-6a5deaff7cd9710f9267f48001d4331958bacd45.tar.gz
anaconda-6a5deaff7cd9710f9267f48001d4331958bacd45.tar.xz
anaconda-6a5deaff7cd9710f9267f48001d4331958bacd45.zip
Move sshpw handling out of Anaconda
This creates an ExecStartPre on the anaconda-sshd.service that will check for a kickstart entry for sshpw. It will add/modify users accordingly prior to launching the sshd service. Since now sshpw and sshd bring up happens outside of and before anaconda starts, we can remove sshd.py and any reference to it.
Diffstat (limited to 'pyanaconda/flags.py')
-rw-r--r--pyanaconda/flags.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pyanaconda/flags.py b/pyanaconda/flags.py
index f7dd431d4..954400c9d 100644
--- a/pyanaconda/flags.py
+++ b/pyanaconda/flags.py
@@ -58,7 +58,6 @@ class Flags(object):
self.targetarch = None
self.useIPv4 = True
self.useIPv6 = True
- self.sshd = 0
self.preexisting_x11 = False
self.noverifyssl = False
self.imageInstall = False
@@ -76,7 +75,7 @@ class Flags(object):
self.read_cmdline()
def read_cmdline(self):
- for f in ("selinux", "sshd", "debug"):
+ for f in ("selinux", "debug"):
self.set_cmdline_bool(f)
if "rpmarch" in self.cmdline: