Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Fedora – Remove SSL Verify On Repo

Posted on October 26, 2017 By David Kittell

If/When you run into a situation where you can not access repos due to SSL below should help.

# Remove SSL Verify
sed -i.orig 's|failovermethod=priority|failovermethod=priority\nsslverify=false|'  /etc/yum.repos.d/fedora.repo
sed -i.orig 's|failovermethod=priority|failovermethod=priority\nsslverify=false|'  /etc/yum.repos.d/fedora-updates.repo
sed -i.orig 's|failovermethod=priority|failovermethod=priority\nsslverify=false|'  /etc/yum.repos.d/fedora-updates-testing.repo.orig
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code Fedora UNIX UNIX Shell Scripts

Post navigation

Previous post
Next post

Related Posts

Delete Logs Older Than 6 Months

Posted on February 25, 2013October 26, 2015

DELETE FROM LogTable WHERE log_datetime < dateAdd(m, -6, getDate()) Originally Posted on February 25, 2013Last Updated on October 26, 2015 All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test…

Read More

Linux/Unix/Mac OSX – Find & Remove Empty Directories

Posted on May 4, 2016January 29, 2024

Occasionally you get empty directories and need to clear them out, these scripts below will help with that, just be careful what directory you choose. The scripts below are set to ~/ (current user home directory) but can easily be changed to any directory on your system. # List empty…

Read More

Prevent Spaces In Textbox

Posted on November 7, 2013October 26, 2015

<script type="text/javascript"> function stripspaces(input) { input.value = input.value.replace(/s/gi, ""); return true; } </script> <input type="text" ID="txtUserID" MaxLength="20" onkeyup="javascript:stripspaces(this)" onkeydown="javascript:stripspaces(this)"> Originally Posted on November 7, 2013Last Updated on October 26, 2015 All information on this site is shared with the intention to help. Before any source code or program is ran…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes