Merge lp://staging/~mvo/snappy/snappy-verify into lp://staging/~snappy-dev/snappy/snappy-moved-to-github
Proposed by
Michael Vogt
Status: | Work in progress |
---|---|
Proposed branch: | lp://staging/~mvo/snappy/snappy-verify |
Merge into: | lp://staging/~snappy-dev/snappy/snappy-moved-to-github |
Diff against target: |
468 lines (+310/-45) 9 files modified
cmd/snappy/cmd_verify.go (+43/-0) helpers/helpers.go (+4/-0) snappy/build.go (+3/-37) snappy/build_test.go (+1/-3) snappy/hashes.go (+85/-0) snappy/hashes_test.go (+65/-0) snappy/snapp.go (+26/-5) snappy/verify.go (+48/-0) snappy/verify_test.go (+35/-0) |
To merge this branch: | bzr merge lp://staging/~mvo/snappy/snappy-verify |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Leo Arias (community) | Needs Fixing | ||
Federico Gimenez (community) | continuous-integration | Needs Fixing | |
Snappy Tarmac | continuous-integration | Pending | |
Review via email: mp+261718@code.staging.launchpad.net |
Description of the change
Implement "snappy verify" that will ensure that all files are correct on
disk.
To post a comment you must log in.
Unmerged revisions
- 514. By Michael Vogt
-
fix crash when trying to verify a SystemImageSnap
- 513. By Michael Vogt
-
helpers/helpers.go: fix typo in comment (thanks Leo)
- 512. By Michael Vogt
-
cmd/snappy/
cmd_verify. go: improve help message (thanks Leo!) - 511. By Michael Vogt
-
snappy/snapp.go: remove RemoteSnapPart.
Verify, SystemImagePart .Verify - 510. By Michael Vogt
-
snappy/parts.go: take the easy route and cast to SnapPart in VerifyInstalled
- 509. By Michael Vogt
-
merged lp:snappy
- 508. By Michael Vogt
-
improve verify output
- 507. By Michael Vogt
-
ensure unpack is faithful to the permissiosn in the tar
- 506. By Michael Vogt
-
improve error message
- 505. By Michael Vogt
-
implement snappy verify
Thanks John and Leo for the review! I addressed the comments now. I will do a followup branch (or some) to address the interface problem, its too big but its hard to change unfortunately.