mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-07 23:00:30 +08:00
Add snippets and templates - Fix Education Math spin
This commit is contained in:
25
snippets/repository-debuginfo.ks
Normal file
25
snippets/repository-debuginfo.ks
Normal file
@@ -0,0 +1,25 @@
|
||||
# %post modifications to enable debuginfo repository
|
||||
|
||||
awk '
|
||||
BEGIN {
|
||||
debuginfo = 0
|
||||
}
|
||||
/^\[.*\]/ {
|
||||
if (/debuginfo/) {
|
||||
debuginfo = 1
|
||||
} else {
|
||||
debuginfo = 0
|
||||
}
|
||||
print
|
||||
next
|
||||
}
|
||||
/enabled=0/ && debuginfo {
|
||||
print "enabled=1"
|
||||
next
|
||||
}
|
||||
{
|
||||
print
|
||||
next
|
||||
}' < /etc/yum.repos.d/fedora.repo > /etc/yum.repos.d/fedora.repo.tmp
|
||||
mv /etc/yum.repos.d/fedora.repo{.tmp,}
|
||||
|
||||
Reference in New Issue
Block a user