Skip to content
Snippets Groups Projects
Commit 2d8834db authored by Russ Allbery's avatar Russ Allbery
Browse files

Restore missing out-of-date configuration file

The deletion of the server files was somewhat too aggressive.
parent 6a9d5b4f
No related branches found
No related tags found
No related merge requests found
##############################################################################
### Out-Of-Date Package Management
##############################################################################
## Upper bound of the random number generator; default is 12, you probably
## won't want to change this too often.
$RANDOM_HOURS = 12;
## What server is collecting this information?
$COLLECT_SERVER = "frankoz2.stanford.edu";
## Should we download and locally cache packages to-be-installed, if possible?
$CACHE_PACKAGES = 0;
## Where should we send output data?
$OUTPUT_DIR = "/var/cache/out-of-date";
## Should we run this at all? Don't override system defaults unless you
## absolutely necessary.
$TEST ||= 0;
## Do we want to print debugging information? Again, don't override
## system defaults unless absolutely necessary.
$DEBUG ||= 0;
1;
# Out-of-date Package Management
# Upper bound of the random number generator; default is 12, you probably
# won't want to change this too often.
$RANDOM_HOURS = 12;
# What server is collecting this information?
$COLLECT_SERVER = 'frankoz2.stanford.edu';
# Should we download and locally cache packages to-be-installed, if possible?
$CACHE_PACKAGES = 0;
# Where should we send output data?
$OUTPUT_DIR = '/var/cache/out-of-date';
# Should we run this at all? Don't override system defaults unless you
# absolutely necessary.
$TEST ||= 0;
# Do we want to print debugging information? Again, don't override
# system defaults unless absolutely necessary.
$DEBUG ||= 0;
1;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment