Find which RPM Azure repo is used in "yum repolist" for EUS or non EUS repos


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Find which RPM Azure repo is used in "yum repolist" for EUS or non EUS repos
# 1  
Old 08-27-2019
Find which RPM Azure repo is used in "yum repolist" for EUS or non EUS repos

Hello,

I'm looking for help with a script or ideally just a one line command perhaps that will check the results of yum repolist and look for a specific repo on a sever. We have some VM's using EUS repos from Red Hat and others that do not use EUS repos. The way we would see which repos are used is by issuing the yum repolist command.

Result #1 where EUS repos are used:

Code:
repo id                                                          repo name                                                                                 status
rhui-microsoft-azure-rhel7-EUS                                    Microsoft Azure RPMs for Red Hat Enterprise Linux 7                                            9
rhui-rhel-7-server-dotnet-rhui-debug-rpms/7Server/x86_64         dotNET on RHEL Debug RPMs for Red Hat Enterprise Linux 7 Server from RHUI                     78
rhui-rhel-7-server-dotnet-rhui-rpms/7Server/x86_64               dotNET on RHEL RPMs for Red Hat Enterprise Linux 7 Server from RHUI                          270

Result #2 where EUS is not used:

Code:
repo id                                                          repo name                                                                                 status
rhui-microsoft-azure-rhel7                                       Microsoft Azure RPMs for Red Hat Enterprise Linux 7                                            9
rhui-rhel-7-server-dotnet-rhui-debug-rpms/7Server/x86_64         dotNET on RHEL Debug RPMs for Red Hat Enterprise Linux 7 Server from RHUI                     78
rhui-rhel-7-server-dotnet-rhui-rpms/7Server/x86_64               dotNET on RHEL RPMs for Red Hat Enterprise Linux 7 Server from RHUI                          270

As you can see Result #1 has rhui-microsoft-azure-rhel7-EUS and Result #2 has rhui-microsoft-azure-rhel7.

is there a one line command I can issue that would provide True or False or provide the repo ID for a server?

Thank you in advance for any advice you can provide for me.
# 2  
Old 08-27-2019
How far would

Code:
if [[ $(grep -o "rhui-microsoft-azure-rhel7[^ ]*" file1) =~ EUS ]]; then echo TRUE; else echo FALSE; fi
TRUE

get you?
# 3  
Old 08-28-2019
Hello @Rudic,

Thanks very much for the reply. I'm not sure I understand the command you've provided to me. I've tried running this command on a server that is using the EUS repos and the command returned false. How does your command search in the yum repolist?

I tried another way whereby I searched for the name of the EUS file in the /etc/yum.repos.d/rh-cloud-eus.repo using the below command and it seems to be working for me in finding servers wtih the EUS repo file.

Code:
[[ -f /etc/yum.repos.d/rh-cloud-eus.repo ]] && echo "EUS Repo file Exists" || echo "EUS Repo File does not exist"

Thank you.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

find files in sub dir with tag & add "." at the beginning [tag -f "Note" . | xargs -0 {} mv {} .{}]

I am trying find files in sub dir with certain tags using tag command, and add the period to the beginning. I can't use chflags hidden {} cause it doesn't add period to the beginning of the string for web purpose. So far with my knowledge, I only know mdfind or tag can be used to search files with... (6 Replies)
Discussion started by: Nexeu
6 Replies

2. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

3. Shell Programming and Scripting

find . -path "*_nobackup*" -prune -iname "*.PDF" \( ! -name "*_nobackup.*" \)

These three finds worked as expected: $ find . -iname "*.PDF" $ find . -iname "*.PDF" \( ! -name "*_nobackup.*" \) $ find . -path "*_nobackup*" -prune -iname "*.PDF" They all returned the match: ./folder/file.pdf :b: This find returned no matches: $ find . -path "*_nobackup*" -prune... (3 Replies)
Discussion started by: wolfv
3 Replies

4. Shell Programming and Scripting

How to find a file which are not ends with ".zip" and which are ends with "*.log*" or "*.out*"?

I am new to bash/shell scripting. I want to find all the files in directory and subdirectories, which are not ends with “.zip” and which are contains in the file name “*.log*” or “*.out*”. I know below command to get the files which ends with “.log”; but I need which are not ends with this... (4 Replies)
Discussion started by: Mallikgm
4 Replies

5. Shell Programming and Scripting

Find lines with "A" then change "E" to "X" same line

I have a bunch of random character lines like ABCEDFG. I want to find all lines with "A" and then change any "E" to "X" in the same line. ALL lines with "A" will have an "X" somewhere in it. I have tried sed awk and vi editor. I get close, not quite there. I know someone has already solved this... (10 Replies)
Discussion started by: nightwatchrenba
10 Replies

6. Shell Programming and Scripting

Using sed to find text between a "string " and character ","

Hello everyone Sorry I have to add another sed question. I am searching a log file and need only the first 2 occurances of text which comes after (note the space) "string " and before a ",". I have tried sed -n 's/.*string \(*\),.*/\1/p' filewith some, but limited success. This gives out all... (10 Replies)
Discussion started by: haggismn
10 Replies

7. Shell Programming and Scripting

Problem with "find" and "grep" command

I want to list all files/lines which except those which contain the pattern ' /proc/' OR ' /sys/' (mind the leading blank). In a first approach I coded: find / -exec ls -ld {} | grep -v ' /proc/| /sys/' \; > /tmp/list.txt But this doesn't work. I got an error (under Ubuntu): grep:... (5 Replies)
Discussion started by: pstein
5 Replies

8. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

9. Shell Programming and Scripting

"find command" to find the files in the current directories but not in the "subdir"

Dear friends, please tell me how to find the files which are existing in the current directory, but it sholud not search in the sub directories.. it is like this, current directory contains file1, file2, file3, dir1, dir2 and dir1 conatins file4, file5 and dir2 contains file6,... (9 Replies)
Discussion started by: swamymns
9 Replies

10. Shell Programming and Scripting

grep to find content in between curly braces, "{" and "},"

problem String ~~~~~~~~~~~~~~~~~~ icecream= { smart peopleLink "good" LC "happy" , smartpeopleLink "dull" LC "sad" } aend = {smart vc4 eatr kalu} output needed ~~~~~~~~~~~~~~~~~~ smart peopleLink "good" LC "happy" , smartpeopleLink "dull" LC "sad" smart vc4... (4 Replies)
Discussion started by: keshav_rk
4 Replies
Login or Register to Ask a Question