-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsquid-downgrade-prep.py
48 lines (43 loc) · 1.6 KB
/
squid-downgrade-prep.py
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
#!/usr/bin/python -tt
# -*- coding: utf-8 -*-
#
# This script will help you to prepare downgrade for squid-3.5
# Copyright (C) 2016 Red Hat, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# he Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Authors: Lubos Uhliarik <[email protected]>
import sys
import os
import traceback
class DowngradePrep:
SQUID_LINK_PATHS=["/usr/share/squid/errors/zh-cn", "/usr/share/squid/errors/zh-tw"]
def process(self):
remove_links()
def remove_links(self):
try:
for link in DowngradePrep.SQUID_LINK_PATHS:
print "Removing symlink: " + link
if os.path.exists(link):
if os.path.islink(link):
os.remove(link)
else:
print "Symlink has been already removed"
except Exception as e:
print "Error: {0}".format(e)
sys.exit(1)
if __name__ == '__main__':
downgrade = DowngradePrep()
downgrade.process()