mirror of
https://github.com/Squidly271/community.applications.git
synced 2025-06-03 14:52:13 +08:00
revision
This commit is contained in:
parent
083b508305
commit
2ebb2ea6e2
BIN
archive/community.applications-2022.07.07-x86_64-1.txz
Normal file
BIN
archive/community.applications-2022.07.07-x86_64-1.txz
Normal file
Binary file not shown.
@ -7,8 +7,8 @@ e564b860fa0d5022df83c103922665d7 ./include/helpers.php
|
||||
d9bce32c48b39966cf5e5b6fdf6946ee ./include/paths.php
|
||||
532fffdf939594c143e679da02bd841e ./javascript/libraries.js
|
||||
71f911a818d88d3d567f8a2898094ee2 ./README.md
|
||||
ef622baa4b9017a9f907da7c4bd89c8d ./scripts/caPostHook.sh
|
||||
4418a38959208e7d5d5b8a3ed61b1c66 ./scripts/caPreHook.sh
|
||||
aa1520f5576149b5f7734d4f280ba4ee ./scripts/caPostHook.php
|
||||
b45c0067b64f05c3dafc202e423a3151 ./scripts/caPreHook.php
|
||||
d3d8286046cc7d6edf8f596067c163a2 ./scripts/checkForUpdates.php
|
||||
99a9d58a49a7f6812f18bd4be2b563b9 ./scripts/checkForUpdates.sh
|
||||
677ac9a29993ec57e09ec6a1856f1a11 ./scripts/dockerConvert.php
|
||||
|
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/php
|
||||
<?
|
||||
if ( $argv[1] == "check" || $argv[1] == "checkall" )
|
||||
return;
|
||||
|
||||
echo "Executing Community Applications Post-Plugin Settings\n";
|
||||
@unlink("/tmp/community.applications/pluginPending/{$argv[2]}");
|
||||
echo "Finished";
|
||||
?>
|
@ -1,4 +0,0 @@
|
||||
#!/bin/bash
|
||||
echo "Executing Community Applications Post-Plugin Settings"
|
||||
rm -rf /tmp/community.applications/pluginPending/$2
|
||||
echo "Finished"
|
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/php
|
||||
<?
|
||||
if ( $argv[1] == "check" || $argv[1] == "checkall" )
|
||||
return;
|
||||
|
||||
echo "Executing Community Applications Pre-Plugin Settings\n";
|
||||
@mkdir("/tmp/community.applications/pluginPending",0777,true);
|
||||
touch("/tmp/community.applications/pluginPending/{$argv[2]}");
|
||||
?>
|
@ -1,4 +0,0 @@
|
||||
#!/bin/bash
|
||||
echo "Executing Community Applications Pre-Plugin Settings"
|
||||
mkdir -p /tmp/community.applications/pluginPending
|
||||
touch /tmp/community.applications/pluginPending/$2
|
Loading…
x
Reference in New Issue
Block a user