Issus integrity test upgrade to nextcloud 17 in text app

After upgrading to Nextcloud 17.0.1 the integrity test failed on the admin web/gui

On CLI occ integrity:check-core is OK, but the output of occ integrity:check-app text
is:

  • EXCEPTION:
    • class: OC\IntegrityCheck\Exceptions\InvalidSignatureException
    • message: Signature data not found.

I removed text app with the cli and reinstalled but the error persist.

The log file don’t show something special and text app seems to work correctely.

Has any body an idea?

Best regards

Martin

Nextcloud version 17.0.1:
Ubuntu 18.04-3:
Apache 2.4.29:
PHP : 7.2.24
MariaDB: 10.1.41

config.php
$CONFIG = array (
‘instanceid’ => ‘XXXXXXX’,
‘passwordsalt’ => ‘XXXXXXXX’,
‘secret’ => ‘XXXXXXXX’,
‘trusted_domains’ =>
array (
0 => ‘XXXXXX’,
1 => ‘XXXXXX’,
2 => ‘XXXXXXX’,

),
‘datadirectory’ => ‘/var/www/nextcloud/data’,
‘overwrite.cli.url’ => ‘XXXXXX’,
‘dbtype’ => ‘mysql’,
‘version’ => ‘17.0.1.1’,
‘dbname’ => ‘owncloud’,
‘dbhost’ => ‘localhost’,
‘dbtableprefix’ => ‘oc_’,
‘dbuser’ => ‘owncloud’,
‘dbpassword’ => ‘XXXXXXX’,
‘logtimezone’ => ‘UTC’,
‘installed’ => true,
‘mail_from_address’ => ‘XXXX’,
‘mail_smtpmode’ => ‘smtp’,
‘mail_domain’ => ‘XXXXXX’,
‘loglevel’ => 0,
‘maintenance’ => false,
‘appstore.experimental.enabled’ => true,
‘mail_smtpport’ => ‘1025’,
‘updatechecker’ => false,
‘theme’ => ‘’,
‘app_install_overwrite’ =>
array (
0 => ‘twofactor_rcdevsopenotp’,
1 => ‘bookmarks_fulltextsearch’,
),
‘updater.release.channel’ => ‘stable’,
‘mail_sendmailmode’ => ‘smtp’,
‘mail_smtphost’ => ‘127.0.0.1’,
‘mail_smtpauthtype’ => ‘LOGIN’,
‘mail_smtpauth’ => 1,
‘mail_smtpname’ => ‘XXXXXX’,
‘mail_smtppassword’ => ‘XXXXXX’,
‘memcache.local’ => ‘\OC\Memcache\APCu’,
‘updater.secret’ => ‘XXXXXXXX’,
);

This seems to be a known issue and will probably be fixed by an update of the text app. Meanwhile, I got rid of the integrity test warning by deleting the superfluous files (which you can see at your.cloud.url/settings/integrity/failed).

See also the other topic here in the forum: [SOLVED] Integrity check - text

Thanks. Sorry I didn’t found your linked tread. So you removed in …/apps/text/
those files:
package-lock.json
package.json
.github/ISSUE_TEMPLATE/Feature_request.md
.github/ISSUE_TEMPLATE/Bug_report.md
.github/pull_request_template.md
.tx/config
.l10nignore
.gitattributes
README.md
l10n/.gitkeep
.eslintrc.js
?
thanks
martin

Yes.

To be precise, here is the list of rm commands I did in the ..../apps/text/folder:

rm .eslintrc.js 
rm .gitattributes
rm .github/ISSUE_TEMPLATE/Bug_report.md 
rm .github/ISSUE_TEMPLATE/Feature_request.md 
rm .github/pull_request_template.md 
rm .l10nignore
rm .tx/config 
rm README.md
rm l10n/.gitkeep 
rm package-lock.json
rm package.json

And because after this these two folders are empty I also did:

rm -rf .github
rm -rf .tx