Skip to content

Commit

Permalink
Merge pull request #130 from yast/registered_fix
Browse files Browse the repository at this point in the history
fixed check for registered status (bnc#886116)
  • Loading branch information
lslezak committed Jul 8, 2014
2 parents f3d0f05 + 8cfd1e5 commit 52430de
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions package/yast2-registration.changes
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Jul 8 09:22:44 UTC 2014 - lslezak@suse.cz

- fixed check for registered status (bnc#886116)
- 3.1.89

-------------------------------------------------------------------
Mon Jul 7 13:46:45 UTC 2014 - lslezak@suse.cz

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-registration.spec
Expand Up @@ -17,7 +17,7 @@


Name: yast2-registration
Version: 3.1.87
Version: 3.1.88
Release: 0

BuildRoot: %{_tmppath}/%{name}-%{version}-build
Expand Down
3 changes: 2 additions & 1 deletion src/lib/registration/registration.rb
Expand Up @@ -109,7 +109,8 @@ def activated_products
end

def self.is_registered?
SUSE::Connect::System.registered?
# just a simple file check without connection to SCC
File.exist?(SCC_CREDENTIALS)
end

private
Expand Down

0 comments on commit 52430de

Please sign in to comment.