Owncloud를 update 이후 자주 발생하는 문제.
업데이트 이후 아래와 같이 코드무결성 error 메세지가 발생한다.

잘못된 파일 목록을 클릭하여 검사해보면 “INVALID_HASH” 로 updater/ 아래 파일들이 다수 발견된다.
(results에 다른 항목이 있다면 별도 확인.)
Technical information
=====================
The following list covers which files have failed the integrity check. Please read
the previous linked documentation to learn more about the errors and how to fix
them.
Results
=======
- core
- INVALID_HASH
- updater/CHANGELOG.md
- updater/src/Controller/IndexController.php
- updater/src/Utils/Locator.php
- updater/vendor/autoload.php
- updater/vendor/composer/InstalledVersions.php
- updater/vendor/composer/autoload_psr4.php
- updater/vendor/composer/autoload_static.php
- updater/vendor/composer/installed.json
- updater/vendor/composer/installed.php
- updater/vendor/guzzlehttp/guzzle/CHANGELOG.md
- updater/vendor/guzzlehttp/guzzle/README.md
- updater/vendor/guzzlehttp/guzzle/composer.json
- updater/vendor/guzzlehttp/guzzle/src/BodySummarizer.php
.....(생략)
업데이터 업데이트로 인한 이슈이므로 아래와 같이 삭제하고
# rm -rf /path/to/owncloud/updater
Owncloud Home 디렉토리 아래 updater을 삭제.
github 에서 owncloud updater을 새로 다운로드(최신버전으로 링크는 확인하여 변경)
소유자 및 권한 변경하고 “다시 검색”으로 확인
curl -L https://github.com/owncloud/updater/releases/download/v1.1.2/updater.tar.gz | tar zxvf –
chown -R www-data. updater
chmod 755 updater/
무결성 에러는 사라짐. (아… 다른 에러들… ㅜㅜ)
