Displaying 2 results from an estimated 2 matches for "apache_auth".
Did you mean:
  apache_auth_
  
2001 Oct 24
0
[RHSA-2001:124-04] Updated mod_auth_pgsql packages available
...the following command:
    rpm --checksig  <filename>
If you only wish to verify that each package has not been corrupted or
tampered with, examine only the md5sum with the following command:
    rpm --checksig --nogpg <filename>
8. References:
http://cert.uni-stuttgart.de/advisories/apache_auth.php
Copyright(c) 2000, 2001 Red Hat, Inc.
_______________________________________________
Redhat-watch-list mailing list
To unsubscribe, visit: https://listman.redhat.com/mailman/listinfo/redhat-watch-list
2013 Jan 11
13
Profiles, Hiera, and create_resources('class','...')
...gs, where hiera has all 
defaults in yaml explicitly
sets each variable:
apache_ssl_enabled: True
apache_vhost_default_conf: ''apache/vhost-default.conf.erb''
apache_priority: ''25''
apache_servername: ''''
apache_serveraliasess: ''''
apache_auth: false
apache_redirect_ssl: false
.
.
.
and about 35 more lines like this.
class apache::params {
  if $hiera_enabled {
    
    $ssl           = hiera(apache_ssl_enabled, True)
    $template      = hiera(apache_vhost_default_conf, 
''apache/vhost-default.conf.erb'')
    $priority...