summaryrefslogtreecommitdiffstats
path: root/pyanaconda/flags.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-04-26 14:26:40 -0400
committerChris Lumens <clumens@redhat.com>2012-04-26 14:26:40 -0400
commit35e474ad39feb6d3043f360baf76275151da283e (patch)
tree1930c46e1e3b836909242c05d7d8a5f1355b6f20 /pyanaconda/flags.py
parentc431572705b856e3654f3cd7af83d894d3a49352 (diff)
downloadanaconda-35e474ad39feb6d3043f360baf76275151da283e.tar.gz
anaconda-35e474ad39feb6d3043f360baf76275151da283e.tar.xz
anaconda-35e474ad39feb6d3043f360baf76275151da283e.zip
Add a flag for if this is an automated (kickstart) install or not.
On rare occassion, it's helpful to know whether this is an automated install or an interactive install. I've purposefully not put "kickstart" into the name of the flag since all installs involve kickstart now.
Diffstat (limited to 'pyanaconda/flags.py')
-rw-r--r--pyanaconda/flags.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyanaconda/flags.py b/pyanaconda/flags.py
index 306627227..ba1060384 100644
--- a/pyanaconda/flags.py
+++ b/pyanaconda/flags.py
@@ -74,6 +74,7 @@ class Flags:
def __init__(self):
self.__dict__['flags'] = {}
+ self.__dict__['flags']['automatedInstall'] = False
self.__dict__['flags']['test'] = 0
self.__dict__['flags']['livecdInstall'] = 0
self.__dict__['flags']['dlabel'] = 0