比较两个系统安装的rpm

需求

有的时候需要做系统适配的时候,远端的系统是经过定制的系统,本地的安装是按正常流程进行的安装,需要在远端进行安装包的离线安装,那么本地就需要提前做好一模一样的系统,本篇的脚本就是用于比较这个版本的区别,然后在本地做好一样的系统,然后再做适配

脚本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[root@build syncos]# cat check.py
#! /bin/python3
# -*- coding:utf-8 -*-

import sys
import re
#print(sys.argv[1])
#print(sys.argv[2])
qian={}
hou={}

f = open(sys.argv[1])
line = f.readline()
while line:
line=line.strip('\n')
new_rpm = re.sub(r'-\d+\.', '.', line)
new_rpm = new_rpm.split(".")[0]
qian[new_rpm]=line
line = f.readline()
f.close()

f = open(sys.argv[2])
line = f.readline()
while line:
line=line.strip('\n')
new_rpm = re.sub(r'-\d+\.', '.', line)
new_rpm = new_rpm.split(".")[0]
hou[new_rpm]=line
line = f.readline()
f.close()

print("===检查本地有远程没有的情况==需要本地卸载==")
for key,val in qian.items():
if key in hou:
if qian[key].strip(' ') == hou[key].strip(' '):
pass
else:
print(qian[key]+" "+hou[key])
else:
print("yum remove -y %s" %(key))

print("===检查远程有本地没有的情况=需要本地安装===")

for key,val in hou.items():
if key in qian:
if hou[key].strip(' ') == qian[key].strip(' '):
pass
else:
print(qian[key]+" "+hou[key])
else:
print("rpm -ivh %s" %(key))

按上面的执行后,就可以比较远程和本地的包的区别,保持一致性,后面的为目的的系统

1
rpm -qa > rpm.list

运行方法

1
python3 check.py local.list remote.list