File: UpdateNotifier.config.php

package info (click to toggle)
phpsysinfo 3.0.17-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,516 kB
  • ctags: 2,050
  • sloc: xml: 9,488; php: 6,524; makefile: 9
file content (29 lines) | stat: -rw-r--r-- 898 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/**
 * Update Notifier Plugin Config File
 *
 * PHP version 5
 *
 * @category  PHP
 * @package   PSI_Plugin_UpdateNotifier
 * @author    Damien ROTH <iysaak@users.sourceforge.net>
 * @copyright 2009 phpSysInfo
 * @license   http://opensource.org/licenses/gpl-2.0.php GNU General Public License
 * @version   SVN: $Id: UpdateNotifier.config.php 525 2011-11-26 10:19:27Z namiltd $
 * @link      http://phpsysinfo.sourceforge.net
 */

/**
 * define the update info file format
 * - true: Ubuntu Landscape format (file: /var/lib/update-notifier/updates-available)
 * - false: universal format   (format: A;B)
 *          A: total packages to update
 *          B: security packages to update
 */
define('PSI_PLUGIN_UPDATE_NOTIFIER_UBUNTU_LANDSCAPE_FORMAT', true);

/**
 * define the update info file
 */
define('PSI_PLUGIN_UPDATE_NOTIFIER_FILE', '/var/lib/update-notifier/updates-available');
?>