rc: stop depending on config.lib.inc instead of config.inc

Looks like the reason for this file has gone.  We shall merge
the code into config.inc soon.
This commit is contained in:
Franco Fichtner 2017-05-04 22:37:27 +02:00
parent 0280a875ed
commit cde9b8f8dd
4 changed files with 7 additions and 8 deletions

View File

@ -28,7 +28,7 @@
*/
require_once("util.inc");
require_once("config.lib.inc");
require_once("config.inc");
require_once("system.inc");
$fp = fopen('php://stdin', 'r');

View File

@ -28,8 +28,8 @@
POSSIBILITY OF SUCH DAMAGE.
*/
require_once("config.lib.inc");
require_once("util.inc");
require_once("config.inc");
require_once("system.inc");
$fp = fopen('php://stdin', 'r');

View File

@ -27,8 +27,8 @@
POSSIBILITY OF SUCH DAMAGE.
*/
require_once("config.lib.inc");
require_once("util.inc");
require_once("config.inc");
require_once("system.inc");
$fp = fopen('php://stdin', 'r');

View File

@ -1,9 +1,8 @@
#!/usr/local/bin/php
<?php
/**
* Backup to Google Drive (if configured)
*/
require_once("util.inc");
require_once("config.lib.inc");
require_once("util.inc");
require_once("config.inc");
/* Backup to Google Drive (if configured) */
backup_to_google_drive();