no other files allowed under /opt/nextcloud thanks to code signing
This commit is contained in:
parent
8092b5faff
commit
60bc44a946
3 changed files with 7 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
require_once __DIR__ . '/lib/base.php';
|
||||
require_once '/opt/nextcloud/lib/base.php';
|
||||
|
||||
if (\OCP\Util::needUpgrade()) {
|
||||
exit(99);
|
||||
|
|
|
@ -114,7 +114,8 @@ actions['install_nextcloud'] = {
|
|||
|
||||
# UPGRADE
|
||||
|
||||
files['/opt/nextcloud/upgrade_status.php'] = {
|
||||
files['/opt/nextcloud_upgrade_status.php'] = {
|
||||
'source': 'upgrade_status.php',
|
||||
'owner': 'www-data',
|
||||
'group': 'www-data',
|
||||
'mode': '640',
|
||||
|
@ -127,7 +128,7 @@ actions['upgrade_nextcloud'] = {
|
|||
'command': repo.libs.nextcloud.occ('upgrade'),
|
||||
'unless': 'sudo -u www-data php /opt/nextcloud/upgrade_status.php; test $? -ne 99',
|
||||
'needs': [
|
||||
'file:/opt/nextcloud/upgrade_status.php',
|
||||
'file:/opt/nextcloud_upgrade_status.php',
|
||||
'action:install_nextcloud',
|
||||
],
|
||||
}
|
||||
|
@ -145,7 +146,8 @@ actions['nextcloud_add_missing_inidces'] = {
|
|||
|
||||
# RESCAN
|
||||
|
||||
files['/opt/nextcloud/rescan'] = {
|
||||
files['/opt/nextcloud_rescan'] = {
|
||||
'source': 'rescan',
|
||||
'owner': 'www-data',
|
||||
'group': 'www-data',
|
||||
'mode': '550',
|
||||
|
|
|
@ -73,7 +73,7 @@ defaults = {
|
|||
'user': 'www-data',
|
||||
},
|
||||
'nextcloud-rescan': {
|
||||
'command': '/opt/nextcloud/rescan',
|
||||
'command': '/opt/nextcloud_rescan',
|
||||
'when': 'Sun 00:00:00',
|
||||
'user': 'www-data',
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue