Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion salt/modules/aptpkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -2134,7 +2134,8 @@ def _parse_repo_keys_output(cmd_ret):
lines = [line for line in cmd_ret.splitlines() if line.strip()]

# Reference for the meaning of each item in the colon-separated
# record can be found here: https://goo.gl/KIZbvp
# record can be found here:
# https://github.com/CSNW/gnupg/blob/master/doc/DETAILS
for line in lines:
items = [
_convert_if_int(item.strip()) if item.strip() else None
Expand Down
3 changes: 2 additions & 1 deletion salt/modules/useradd.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,8 @@ def delete(name, remove=False, force=False, root=None, local=False):
# We've hit the bug, let's log it and not fail
log.debug(
"While the userdel exited with code 12, this is a known bug on "
"debian based distributions. See http://goo.gl/HH3FzT"
"debian based distributions."
"See https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1023509"
)
return True

Expand Down
12 changes: 6 additions & 6 deletions salt/modules/win_smtp_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"""

# IIS metabase configuration settings:
# https://goo.gl/XCt1uO
# https://learn.microsoft.com/en-us/previous-versions/iis/settings-schema/aa347565(v=vs.90)?redirectedfrom=MSDN
# IIS logging options:
# https://goo.gl/RL8ki9
# https://goo.gl/iwnDow
# https://learn.microsoft.com/en-us/previous-versions/iis/6.0-sdk/ms524877(v=vs.90)?redirectedfrom=MSDN
# https://learn.microsoft.com/en-us/previous-versions/iis/6.0-sdk/ms524877(v=vs.90)?redirectedfrom=MSDN
# MicrosoftIISv2 namespace in Windows 2008r2 and later:
# http://goo.gl/O4m48T
# https://learn.microsoft.com/en-us/answers/tags/828/developer-technologies
# Connection and relay IPs in PowerShell:
# https://goo.gl/aBMZ9K
# http://goo.gl/MrybFq
# https://learn.microsoft.com/en-us/archive/msdn-technet-forums/aff78c7a-db4e-4039-babb-cb68dad9c21e
# https://asknicks.blogspot.com/2015/04/allow-ip-address-in-smtp-connection.html


import logging
Expand Down
3 changes: 2 additions & 1 deletion salt/modules/yumpkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,8 @@ def list_pkgs(versions_as_list=False, **kwargs):
for line in output.splitlines():
pkginfo = salt.utils.pkg.rpm.parse_pkginfo(line, osarch=__grains__["osarch"])
if pkginfo is not None:
# see rpm version string rules available at https://goo.gl/UGKPNd
# see rpm version string rules available at
# https://blog.jasonantman.com/2014/07/how-yum-and-rpm-compare-versions/#package-naming-and-parsing
pkgver = pkginfo.version
epoch = None
release = None
Expand Down
3 changes: 2 additions & 1 deletion salt/utils/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,8 @@ def is_fcntl_available(check_sunos=False):
Simple function to check if the ``fcntl`` module is available or not.

If ``check_sunos`` is passed as ``True`` an additional check to see if host is
SunOS is also made. For additional information see: http://goo.gl/159FF8
SunOS is also made. For additional information see:
https://github.com/saltstack/salt/commit/bed877f8bd5c
"""
if check_sunos and salt.utils.platform.is_sunos():
return False
Expand Down
4 changes: 2 additions & 2 deletions salt/utils/gitfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -716,8 +716,8 @@ def clean_stale_refs(self):

# Attempt to force all output to plain ascii english, which is what some parsing code
# may expect.
# According to stackoverflow (http://goo.gl/l74GC8), we are setting LANGUAGE as well
# just to be sure.
# According to stackoverflow, we are setting LANGUAGE as well just to be sure.
# https://askubuntu.com/q/311767
env = os.environ.copy()
if not salt.utils.platform.is_windows():
env[b"LANGUAGE"] = b"C"
Expand Down
Loading