# File lib/simp/cli/config/items/data/cli_has_simp_local_user.rb, line 8
    def initialize
      super
      @key         = 'cli::has_simp_local_user'
      @description = %Q{Whether the server has the local 'simp' user created by
an ISO install.

Per security policy, SIMP, by default, disables login via ssh for all
users, including 'root', and beginning with SIMP 6.0.0 disables, root
logins at the console.  So, to prevent lockout in systems for which
no administrative user account has yet been created or both console
access is not available and the administrative user's ssh access
has not yet been enabled, the SIMP ISO installation creates a
local user, 'simp', for which su and ssh privileges will be enabled
via the simp::server manifest, when SIMP is bootstrapped.}
      @data_type  = :internal  # don't persist this as it needs to be
                               # evaluated each time simp config is run
      @username = 'simp'

      # FIXME This is especially fragile....ASSuming ISO install because a
      # file installed by the ISO (and unfortunatley, a file that should be,
      # but, as of now, is not managed by SIMP) exists.
      @iso_marker = '/etc/yum.repos.d/simp_filesystem.repo'
    end