Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
apps /
notifications /
Delete
Unzip
Name
Size
Permission
Date
Action
appinfo
[ DIR ]
drwxr-xr-x
2018-04-19 18:18
css
[ DIR ]
drwxr-xr-x
2018-04-19 18:16
docs
[ DIR ]
drwxr-xr-x
2018-04-19 18:16
img
[ DIR ]
drwxr-xr-x
2018-04-19 18:16
js
[ DIR ]
drwxr-xr-x
2018-04-19 18:16
lib
[ DIR ]
drwxr-xr-x
2018-04-19 18:16
templates
[ DIR ]
drwxr-xr-x
2018-04-19 18:16
CHANGELOG.md
2.12
KB
-rw-r--r--
2018-04-19 18:16
COPYING
33.71
KB
-rw-r--r--
2018-04-19 18:16
Makefile
2.07
KB
-rw-r--r--
2018-04-19 18:16
Save
Rename
# This file is licensed under the Affero General Public License version 3 or # later. See the COPYING file. # @author Ilja Neumann <ineumann@owncloud.com> app_name=$(notdir $(CURDIR)) project_directory=$(CURDIR)/../$(app_name) build_tools_directory=$(CURDIR)/build/tools source_build_directory=$(CURDIR)/build/artifacts/source source_package_name=$(source_build_directory)/$(app_name) appstore_build_directory=$(CURDIR)/build/artifacts/appstore appstore_package_name=$(appstore_build_directory)/$(app_name) npm=$(shell which npm 2> /dev/null) composer=$(shell which composer 2> /dev/null) occ=$(CURDIR)/../../occ private_key=$(HOME)/.owncloud/certificates/$(app_name).key certificate=$(HOME)/.owncloud/certificates/$(app_name).crt sign=php -f $(occ) integrity:sign-app --privateKey="$(private_key)" --certificate="$(certificate)" sign_skip_msg="Skipping signing, either no key and certificate found in $(private_key) and $(certificate) or occ can not be found at $(occ)" ifneq (,$(wildcard $(private_key))) ifneq (,$(wildcard $(certificate))) ifneq (,$(wildcard $(occ))) CAN_SIGN=true endif endif endif # Removes the appstore build .PHONY: clean clean: rm -rf ./build/artifacts # Builds the source and appstore package .PHONY: dist dist: make source make appstore # Builds the source package .PHONY: source source: rm -rf $(source_build_directory) mkdir -p $(source_build_directory) tar cvzf $(source_package_name).tar.gz ../$(app_name) \ --exclude-vcs \ --exclude="../$(app_name)/build" \ --exclude="../$(app_name)/js/node_modules" \ --exclude="../$(app_name)/node_modules" \ --exclude="../$(app_name)/*.log" \ --exclude="../$(app_name)/js/*.log" \ # Builds the source package for the app store, ignores php and js tests .PHONY: appstore appstore: rm -rf $(appstore_build_directory) mkdir -p $(appstore_package_name) cp --parents -r \ appinfo \ css \ img \ js \ lib \ templates \ $(appstore_package_name) ifdef CAN_SIGN $(sign) --path="$(appstore_package_name)" else @echo $(sign_skip_msg) endif tar -czf $(appstore_package_name).tar.gz -C $(appstore_package_name)/../ $(app_name)