From 5f6f124d960df9a808f43aa6a6b637b9d26f802e Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Thu, 25 Jan 2024 12:17:25 -0800 Subject: Switch links to https: that are found in comments These are for use by humans only. --- deployment/websites/manifests/perl.pp | 2 +- manifests/extlookup.pp | 2 +- modules/apache/manifests/cve-2011-3192.pp | 2 +- modules/apache/templates/mod/wsgi.conf | 2 +- modules/buildsystem/manifests/youri_submit.pp | 2 +- modules/git/files/create_git_repo.sh | 2 +- modules/git/manifests/server.pp | 8 ++++---- modules/gnupg/manifests/keys.pp | 2 +- modules/libvirtd/manifests/init.pp | 2 +- modules/mediawiki/manifests/config.pp | 2 +- modules/ntp/templates/ntp.conf | 2 +- modules/phpbb/files/phpbb_apply_config.pl | 2 +- modules/postfix/templates/sympa_aliases | 2 +- modules/postfix/templates/virtual_aliases | 2 +- modules/postgresql/manifests/hba_entry.pp | 2 +- modules/subversion/manifests/client.pp | 2 +- modules/subversion/manifests/repository.pp | 4 ++-- modules/sympa/templates/sympa.conf | 2 +- modules/transifex/templates/20-engines.conf | 2 +- modules/transifex/templates/50-project.conf | 2 +- modules/xymon/templates/hobbitserver.cfg | 2 +- 21 files changed, 25 insertions(+), 25 deletions(-) diff --git a/deployment/websites/manifests/perl.pp b/deployment/websites/manifests/perl.pp index 1911588b..2b4849fb 100644 --- a/deployment/websites/manifests/perl.pp +++ b/deployment/websites/manifests/perl.pp @@ -43,7 +43,7 @@ class websites::perl { group => $login, } - # http://www.mageia.org/pipermail/mageia-sysadm/2012-March/004337.html + # https://www.mageia.org/pipermail/mageia-sysadm/2012-March/004337.html cron { 'update pkgcpan stats': hour => 23, minute => 30, diff --git a/manifests/extlookup.pp b/manifests/extlookup.pp index 554958ed..0837818b 100644 --- a/manifests/extlookup.pp +++ b/manifests/extlookup.pp @@ -1,4 +1,4 @@ -# see http://www.devco.net/archives/2009/08/31/complex_data_and_puppet.php +# see https://www.devco.net/archives/2009/08/31/complex_data_and_puppet.php $extlookup_datadir = '/etc/puppet/extdata' $extlookup_precedence = ['%{fqdn}', 'common'] diff --git a/modules/apache/manifests/cve-2011-3192.pp b/modules/apache/manifests/cve-2011-3192.pp index 0ec3dcd3..1e39ac04 100644 --- a/modules/apache/manifests/cve-2011-3192.pp +++ b/modules/apache/manifests/cve-2011-3192.pp @@ -1,7 +1,7 @@ class apache::cve-2011-3192 { include apache::base # temporary protection against CVE-2011-3192 - # http://httpd.apache.org/security/CVE-2011-3192.txt + # https://httpd.apache.org/security/CVE-2011-3192.txt apache::config { "${apache::base::conf_d}/CVE-2011-3192.conf": content => template('apache/CVE-2011-3192.conf'), diff --git a/modules/apache/templates/mod/wsgi.conf b/modules/apache/templates/mod/wsgi.conf index 0ecba31a..347affc6 100644 --- a/modules/apache/templates/mod/wsgi.conf +++ b/modules/apache/templates/mod/wsgi.conf @@ -1,4 +1,4 @@ -# http://code.google.com/p/modwsgi/wiki/ApplicationIssues +# https://code.google.com/p/modwsgi/wiki/ApplicationIssues # mainly for viewvc at the moment , when doing a diff WSGIRestrictStdout Off # again viewvc : diff --git a/modules/buildsystem/manifests/youri_submit.pp b/modules/buildsystem/manifests/youri_submit.pp index 1d097494..6b4d7dc2 100644 --- a/modules/buildsystem/manifests/youri_submit.pp +++ b/modules/buildsystem/manifests/youri_submit.pp @@ -21,7 +21,7 @@ class buildsystem::youri_submit { } $release_managers = group_members('mga-release_managers') # ordering is automatic : - # http://docs.puppetlabs.com/learning/ordering.html#autorequire + # https://docs.puppetlabs.com/learning/ordering.html#autorequire file { '/etc/youri/': ensure => 'directory'; diff --git a/modules/git/files/create_git_repo.sh b/modules/git/files/create_git_repo.sh index 28afde40..144d063b 100644 --- a/modules/git/files/create_git_repo.sh +++ b/modules/git/files/create_git_repo.sh @@ -1,6 +1,6 @@ #!/bin/bash umask 0002 -# http://eagleas.livejournal.com/18907.html +# https://eagleas.livejournal.com/18907.html name="$1" mkdir -p $name cd $name diff --git a/modules/git/manifests/server.pp b/modules/git/manifests/server.pp index 692befba..3f07ed9c 100644 --- a/modules/git/manifests/server.pp +++ b/modules/git/manifests/server.pp @@ -20,16 +20,16 @@ class git::server { # TODO # define common syntax check, see svn - # http://stackoverflow.com/questions/3719883/git-hook-syntax-check + # https://stackoverflow.com/questions/3719883/git-hook-syntax-check # proper policy : fast-forward-only - # ( http://progit.org/book/ch7-4.html ) + # ( https://progit.org/book/ch7-4.html ) # no branch ? # no binary # no big file # no empty commit message # no commit from root - # see http://www.itk.org/Wiki/Git/Hooks - # automated push to another git repo ( see http://noone.org/blog/English/Computer/VCS/Thoughts%20on%20Gitorious%20and%20GitHub%20plus%20a%20useful%20git%20hook.futile + # see https://www.itk.org/Wiki/Git/Hooks + # automated push to another git repo ( see https://noone.org/blog/English/Computer/VCS/Thoughts%20on%20Gitorious%20and%20GitHub%20plus%20a%20useful%20git%20hook.futile # # how do we handle commit permission ? # mail sending diff --git a/modules/gnupg/manifests/keys.pp b/modules/gnupg/manifests/keys.pp index a9187137..b99ed393 100644 --- a/modules/gnupg/manifests/keys.pp +++ b/modules/gnupg/manifests/keys.pp @@ -1,5 +1,5 @@ # debian recommend SHA2, with 4096 - # http://wiki.debian.org/Keysigning + # https://wiki.debian.org/Keysigning # as they are heavy users of gpg, I will tend # to follow them # however, for testing purpose, 4096 is too strong, diff --git a/modules/libvirtd/manifests/init.pp b/modules/libvirtd/manifests/init.pp index 059c09c0..f0cbb887 100644 --- a/modules/libvirtd/manifests/init.pp +++ b/modules/libvirtd/manifests/init.pp @@ -40,7 +40,7 @@ class libvirtd { package { 'qemu': } } - # see http://wiki.libvirt.org/page/SSHPolicyKitSetup + # see https://wiki.libvirt.org/page/SSHPolicyKitSetup define group_access() { # to pull polkit and create the directory include libvirtd::base diff --git a/modules/mediawiki/manifests/config.pp b/modules/mediawiki/manifests/config.pp index 559f897d..0c54cdf6 100644 --- a/modules/mediawiki/manifests/config.pp +++ b/modules/mediawiki/manifests/config.pp @@ -1,6 +1,6 @@ # the class is just here to handle global configuration # a smart variation of the methods exposed on -# http://puppetlabs.com/blog/the-problem-with-separating-data-from-puppet-code/ +# https://puppetlabs.com/blog/the-problem-with-separating-data-from-puppet-code/ class mediawiki::config( $pgsql_password, $secretkey, diff --git a/modules/ntp/templates/ntp.conf b/modules/ntp/templates/ntp.conf index 4dc42c85..72f233c0 100644 --- a/modules/ntp/templates/ntp.conf +++ b/modules/ntp/templates/ntp.conf @@ -25,7 +25,7 @@ driftfile /var/lib/ntp/drift multicastclient # listen on default 224.0.1.1 broadcastdelay 0.008 -# http://www.kb.cert.org/vuls/id/348126 +# https://www.kb.cert.org/vuls/id/348126 restrict default nomodify notrap nopeer noquery restrict -6 default nomodify notrap nopeer noquery # https://isc.sans.edu/forums/diary/NTP+reflection+attack/17300 diff --git a/modules/phpbb/files/phpbb_apply_config.pl b/modules/phpbb/files/phpbb_apply_config.pl index 5bd094e4..a58df24e 100644 --- a/modules/phpbb/files/phpbb_apply_config.pl +++ b/modules/phpbb/files/phpbb_apply_config.pl @@ -16,7 +16,7 @@ my $dbh = DBI->connect("dbi:Pg:","","", { my $table = "phpbb_config"; # FIXME add rollback if there is a problem -# http://docstore.mik.ua/orelly/linux/dbi/ch06_03.htm +# https://docstore.mik.ua/orelly/linux/dbi/ch06_03.htm my $update = $dbh->prepare("UPDATE $table SET config_value = ?, is_dynamic = ? WHERE config_name = ?"); my $insert = $dbh->prepare("INSERT INTO $table ( config_value, is_dynamic, config_name ) VALUES ( ? , ? , ? )"); diff --git a/modules/postfix/templates/sympa_aliases b/modules/postfix/templates/sympa_aliases index e5f74c0b..436e7a28 100644 --- a/modules/postfix/templates/sympa_aliases +++ b/modules/postfix/templates/sympa_aliases @@ -1,5 +1,5 @@ # everything is handled with transports in postfix, -# but according to http://www.sympa.org/faq/postfix, we also need this one +# but according to https://www.sympa.org/faq/postfix, we also need this one <% escaped_domain = ( 'ml.' + domain ).sub('.','\.') %> /^(.*)-owner\@<%= escaped_domain %>$/ $1+owner@ml.<%= domain %> # redirect the mail from the ml domain to sysadmin diff --git a/modules/postfix/templates/virtual_aliases b/modules/postfix/templates/virtual_aliases index 2b9174e7..861e79c6 100644 --- a/modules/postfix/templates/virtual_aliases +++ b/modules/postfix/templates/virtual_aliases @@ -16,7 +16,7 @@ security@<%= domain %> security@group.<%= domain %> # Temporary(?) alias until there is a real board-commits@ list board-commits@ml.<%= domain %> board-public@ml.<%= domain %> -# TODO see http://www.ietf.org/rfc/rfc2142.txt +# TODO see https://www.ietf.org/rfc/rfc2142.txt <% ['postmaster','hostmaster','abuse','noc','listmaster','MAILER-DAEMON'].each { |a| %> diff --git a/modules/postgresql/manifests/hba_entry.pp b/modules/postgresql/manifests/hba_entry.pp index 595fd33c..30fccda0 100644 --- a/modules/postgresql/manifests/hba_entry.pp +++ b/modules/postgresql/manifests/hba_entry.pp @@ -5,7 +5,7 @@ # === Parameters # # See pgsql doc for more details about pg_hba.conf parameters : -# http://www.postgresql.org/docs/9.1/static/auth-pg-hba-conf.html +# https://www.postgresql.org/docs/9.1/static/auth-pg-hba-conf.html # # [*namevar*] # namevar is not used. diff --git a/modules/subversion/manifests/client.pp b/modules/subversion/manifests/client.pp index a2aa42ee..083a58da 100644 --- a/modules/subversion/manifests/client.pp +++ b/modules/subversion/manifests/client.pp @@ -2,7 +2,7 @@ class subversion::client { # svn spam log with # Oct 26 13:30:01 valstar svn: No worthy mechs found # without it, - # http://mail-index.netbsd.org/pkgsrc-users/2008/11/23/msg008706.html + # https://mail-index.netbsd.org/pkgsrc-users/2008/11/23/msg008706.html # $sasl2_package = $::architecture ? { x86_64 => 'lib64sasl2-plug-anonymous', diff --git a/modules/subversion/manifests/repository.pp b/modules/subversion/manifests/repository.pp index 8d6156b9..77b32765 100644 --- a/modules/subversion/manifests/repository.pp +++ b/modules/subversion/manifests/repository.pp @@ -24,12 +24,12 @@ define subversion::repository($group = 'svn', $syntax_check = '', $extract_dir = '') { # check permissions - # http://svnbook.red-bean.com/nightly/fr/svn.serverconfig.multimethod.html + # https://svnbook.red-bean.com/nightly/fr/svn.serverconfig.multimethod.html # $name ==> directory of the repo include subversion::server # TODO set umask -> requires puppet 2.7.0 # unfortunatly, umask is required - # http://projects.puppetlabs.com/issues/4424 + # https://projects.puppetlabs.com/issues/4424 exec { "/usr/local/bin/create_svn_repo.sh ${name}": user => 'root', group => $group, diff --git a/modules/sympa/templates/sympa.conf b/modules/sympa/templates/sympa.conf index 238c8f9a..eff7749b 100644 --- a/modules/sympa/templates/sympa.conf +++ b/modules/sympa/templates/sympa.conf @@ -593,7 +593,7 @@ dmarc_protection_mode dkim_signature,dmarc_reject ## Password validation ## The password validation techniques to be used against user passwords that ## are added to mailing lists. Options come from Data::Password -## (http://search.cpan.org/~razinf/Data-Password-1.07/Password.pm#VARIABLES) +## (https://search.cpan.org/~razinf/Data-Password-1.07/Password.pm#VARIABLES) # password_validation MINLEN=8,GROUPS=3,DICTIONARY=4,DICTIONARIES=/pentest/dictionaries ###\\\\ Authentication with LDAP ////### diff --git a/modules/transifex/templates/20-engines.conf b/modules/transifex/templates/20-engines.conf index 13eb0334..6523dfd4 100644 --- a/modules/transifex/templates/20-engines.conf +++ b/modules/transifex/templates/20-engines.conf @@ -3,7 +3,7 @@ ## Database configuration -# http://docs.djangoproject.com/en/dev/ref/settings/#database-engine +# https://docs.djangoproject.com/en/dev/ref/settings/#database-engine DATABASE_ENGINE = 'postgresql_psycopg2' # Use file path for sqlite3 DATABASE_NAME = 'transifex' diff --git a/modules/transifex/templates/50-project.conf b/modules/transifex/templates/50-project.conf index 761dc725..17281d9a 100644 --- a/modules/transifex/templates/50-project.conf +++ b/modules/transifex/templates/50-project.conf @@ -68,7 +68,7 @@ INSTALLED_APPS = [ 'authority', # Transifex specific apps: 'transifex.txcommon', - # It's coming here due http://trac.transifex.org/ticket/596 + # It's coming here due https://trac.transifex.org/ticket/596 'userprofile', 'transifex.languages', 'transifex.projects', diff --git a/modules/xymon/templates/hobbitserver.cfg b/modules/xymon/templates/hobbitserver.cfg index e0f7f4da..deb15608 100644 --- a/modules/xymon/templates/hobbitserver.cfg +++ b/modules/xymon/templates/hobbitserver.cfg @@ -29,7 +29,7 @@ PATH="/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/lib64/xy # 2011-07-17 15:32:54 Oversize status msg from # 212.85.158.149 for jonund.mageia.org:procs truncated (n=350049, limit=262144) # -# http://en.wikibooks.org/wiki/System_Monitoring_with_Xymon/Other_Docs/FAQ#Q._How_do_I_fix_.22Oversize_status_msg_from_192.168.1.31_for_test.my.com:ports_truncated_.28n.3D508634.2C_limit.3D262144.29.22 +# https://en.wikibooks.org/wiki/System_Monitoring_with_Xymon/Other_Docs/FAQ#Q._How_do_I_fix_.22Oversize_status_msg_from_192.168.1.31_for_test.my.com:ports_truncated_.28n.3D508634.2C_limit.3D262144.29.22 MAXMSG_STATUS="496" ##### Normally you do not need to modify anything below this point ##### -- cgit v1.2.1