-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathembconvert.sh
executable file
·373 lines (277 loc) · 6.21 KB
/
embconvert.sh
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
#!/usr/bin/bash
# EMB_Appliance_Convert2RHEL
#
# By Matt St. Onge
#
# MIT License ( https://opensource.org/license/mit/ )
#
# version 1.0
# #####################################################
# name of my config file
EMB_CONF_FILE=myappX.conf
#######################################################
#
# Functions
#
#
#######################################################
function prepit1()
{
clear
echo "###################################"
echo "# Embedded Appliance Convert2RHEL #"
echo "# A Framework for Positive Change #"
echo "# #"
echo "# Customization to your #"
echo "# Environment is Required... #"
echo "###################################"
echo " "
echo " "
echo " MIT License ( https://opensource.org/license/mit/ )"
echo " "
echo " "
echo "...reading your configurtion file: "
echo " $EMB_CONF_FILE "
echo " "
echo " "
date '+%T'
source $EMB_CONF_FILE
if [ "$EUID" -ne 0 ]
then echo "This tool must be run as ROOT..."
exit
fi
MYOUTPUT="$EMBLOGGERPREF Initiating RHEL conversion operations"
echo $MYOUTPUT
echo $MYOUTPUT | logger
# prepit2
}
function prepit2()
{
# tests to ensure original OS is as specified
# any failure results in an EXIT from this tool
date '%T'
MYOUTPUT="$EMBLOGGERPREF Validating this system"
echo $MYOUTPUT
echo $MYOUTPUT | logger
case $MYCURRENTOSNAME in
"Rocky")
rockytests
;;
"Alma")
almatests
;;
"CentOS")
centostests
;;
*)
MYOUTPUT="OS validation has failed - EXITING!!!"
exit 0
;;
esac
}
function rockytests()
{
# tests to validate OS is Rocky Linux and its version
if [ -f /etc/os-release ]
then
source /etc/os-release
TESTOS="${ROCKY_SUPPORT_PRODUCT}"
TESTVER="${ROCKY_SUPPORT_PRODUCT_VERSION}"
fi
if [ "$TESTOS" != "Rocky Linux" ]
then
MYOUTPUT="$EMBLOGGERPREF OS Settings are not correct - reconfigure then re-run this tool."
echo $MYOUTPUT
echo $MYOUTPUT | logger
exit 1
fi
if [ "$TESTVER" != "$MYCUURENTOSVER" ]
then
MYOUTPUT="$EMBLOGGERPREF OS Settings are not correct - reconfigure then re-run this tool."
echo $MYOUTPUT
echo $MYOUTPUT | logger
exit 1
fi
prepit3
}
function centostests()
{
if [ -f /etc/os-release ]
then
source /etc/os-release
TESTOS="${NAME}"
TESTVER="${VERSION_ID}"
fi
if [ "$TESTOS" != "CentOS Linux" ]
then
MYOUTPUT="$EMBLOGGERPREF OS Settings are not correct - reconfigure then re-run this tool."
echo $MYOUTPUT
echo $MYOUTPUT | logger
exit 1
fi
if [ "$TESTVER" != "$MYCUURENTOSVER" ]
then
MYOUTPUT="$EMBLOGGERPREF OS Settings are not correct - reconfigure then re-run this tool."
echo $MYOUTPUT
echo $MYOUTPUT | logger
exit 1
fi
prepit3
}
function almatests()
{
if [ -f /etc/almalinux-release ]
then
source /etc/almalinux-release
TESTOS="${NAME}"
TESTVER="${VERSION_ID}"
fi
if [ "$TESTOS" != "AlmaLinux" ]
then
MYOUTPUT="$EMBLOGGERPREF OS Settings are not correct - reconfigure then re-run this tool."
echo $MYOUTPUT
echo $MYOUTPUT | logger
exit 1
fi
if [ "$TESTVER" != "$MYCURRENTOSVER" ]
then
MYOUTPUT="$EMBLOGGERPREF OS Settings are not correct - reconfigure then re-run this tool."
echo $MYOUTPUT
echo $MYOUTPUT | logger
exit 1
fi
prepit3
}
function prepit3()
{
pwd
date '+%T'
MYOUTPUT="$EMBLOGGERPREF Stopping Services & Sockets"
echo $MYOUTPUT
echo $MYOUTPUT | logger
#determine system status - active services, sockets, etc.
systemctl get-default > mydefault.dat
systemctl list-units --type=service --state=active --quiet | cut -d ' ' -f 3 > services.dat
systemctl list-units --type=socket --state=active --quiet | cut -d ' ' -f 3 > sockets.dat
# compare defined to actual
# stop services & sockets
for MYSVC in $MYSVCLIST; do
date '+%T'
echo "$EMBLOGGERPREF Stopping $MYSVC" | logger
echo "Stopping $MYSVC"
systemctl stop $MYSVC
done
prepit4
}
function prepit4()
{
date '+%T'
MYOUTPUT="$EMBLOGGERPREF Gathering RPM List"
echo $MYOUTPUT
echo $MYOUTPUT | logger
dnf list --installed > TMPrpmlist
sed '1,2d' TMPrpmlist > TMPrpmlist2
awk '{print $1}' TMPrpmlist2 > myrpmlist
#cleanup
rm TMPrpmlist
mv TMPrpmlist2 mylegacyrpms
backitup
}
function backitup()
{
# create a backup of /etc
date '+%T'
MYOUTPUT="$EMBLOGGERPREF backing up critical files"
echo $MYOUTPUT
echo $MYOUTPUT | logger
tar cvhf $MYEMBBACKUPDIR/mybackup.tar /etc
myoldrepos
}
function myoldrepos()
{
# determine existing enabled dnf/yum repositories and disable them
date '+%T'
MYOUTPUT="$EMBLOGGERPREF Determining active YUM/DNF repositories..."
echo $MYOUTPUT
echo $MYOUTPUT | logger
dnf repolist
dnf repolist | logger
MYOUTPUT="$EMBLOGGERPREF Disabling all active YUM/DNF repositories..."
echo $MYOUTPUT
echo $MYOUTPUT | logger
dnf config-manager --disable *
rhelrepo1
}
function rhelrepo1()
{
date '+%T'
MYOUTPUT="$EMBLOGGERPREF Mounting ISO Image as loopback device"
echo $MYOUTPUT
echo $MYOUTPUT | logger
mkdir -p /mnt/conv2rhel
mount -o loop $EMB_ISO_PATH /mnt/conv2rhel
MYOUTPUT="$EMBLOGGERPREF $(df -h | grep conv2rhel) "
date '+%T'
echo $MYOUTPUT
echo $MYOUTPUT | logger
rhelrepo2
}
function rhelrepo2()
{
date '+%T'
MYOUTPUT="$EMBLOGGERPREF Defining TEMP RHEL Repos"
echo $MYOUTPUT
echo $MYOUTPUT | logger
case $MYRHELVER in
7.9)
#
#
#
#
#
#
#
;;
8.*)
#
#
#
;;
9.*)
#
#
#
;;
*)
#
MYOUPUT="$EMBLOGGERPREF RHEL Version ERROR - CHECK YOUR CONFIG"
exit 0
;;
esac
MYOUTPUT="$EMBLOGGERPREF Listing TEMP RHEL Repos"
echo $MYOUTPUT
echo $MYOUTPUT | logger
dnf repolist
dnf repolist | logger
newkernel
}
function newkernel()
{
MYOUTPUT="$EMBLOGGERPREF Installing a RHEL kernel and bootloader"
date '+%T'
echo $MYOUTPUT
echo $MYOUTPUT | logger
# this will require modification based upon your ISO
cd $EMB_TOOL_PATH
MYOUTPUT="$EMBLOGGERPREF $(pwd)"
date '+%T'
echo $MYOUTPUT
echo $MYOUTPUT | logger
# force the kernel isntall
rpm -ify kernel grub2* grubby*
MYOUTPUT="$(rpm -qa | grep kernel )"
date '+%T'
echo $MYOUTPUT
echo $MYOUTPUT | logger
}
prepit1