# File lib/simp/cli/config/items/data/cli_has_simp_local_user.rb, line 36
    def os_value
      begin
        Etc.getpwnam(@username)

        # just to be sure this user is from an ISO install
        if iso_install?
          return 'yes'
        else
          warn("'simp' user detected in non-ISO install. This user may not be set up to prevent lockout.")
          return 'no'
        end
      rescue ArgumentError => e
        return 'no'
      end
    end