copy-jdk-configs-3.3-9.el6$>K7pq^ ><3?3|d  = +NT\h n t  C HTcrk(8 9 : G H I $X (Y ,\ 8] D^ ~b d Ke Pf Sl Ut pu |v w x y  23h3n3xCcopy-jdk-configs3.39.el6JDKs configuration files copierUtility script to transfer JDKs configuration files between updates or for archiving. With script to fix incorrectly created rpmnew files[),Ax86-01.bsys.centos.org?,CentOSBSDCentOS BuildSystem Unspecifiedhttps://pagure.io/copy_jdk_configslinuxnoarch%<Ӂ큤ZZ[),A943012c2cb5ad5fa8d0f2698459e937e25d0dce0e9745fee31fe9fcbf6171bf75f4b632b3c0457880d6ca370ae1c4d9cae571ee4be608ca9a21e42cf2e596639386eaf71633bf096e6c17471f50e867dabdf14d38a157ca27a0425dc583eb9ferootrootrootrootrootrootcopy-jdk-configs-3.3-9.el6.src.rpmcopy-jdk-configs@     /bin/bash/bin/shluarpmlib(BuiltinLuaScripts)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)4.2.2-13.0.4-14.6.0-14.0-15.2-14.8.0ZmYZ@YZ@X@WWWVVVqR@VUJiri Vanek - 3.3-3Jiri Vanek - 3.3-2Jiri Vanek - 3.3-1Jiri Vanek - 1.3-1Jiri Vanek - 1.2-1Jiri Vanek - 1.2-1Jiri Vanek - 1.1-5Fedora Release Engineering - 1.1-4Jiri Vanek - 1.1-3Jiri Vanek - 1.1-2Jiri Vanek - 1.1-1- fixes issue when java.security for openjdk7 was erased - Resolves: rhbz#1503666- added another subdirs for policies files - Resolves: rhbz#1503666- updated to 3.3 - Resolves: rhbz#1503666- updated to upstream 1.3 (adding jre/lib/security/cacerts file) - Resolves: rhbz#1391735- initial import to rhel6 - commented out lua-posix - the work horse file changed to 644 (as it do not work without lua-posix) - Resolves: rhbz#1391735- updated to 1,3 which fixing nss minor issue- posttrans silenced, the error is appearing only in state, when there is nothing to copy- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild- pretrasn lua call now done in pcall (protected call) - also posttrans now always return 0- package now "installs" also during pretrans, so pretrasn scripts can use it - pretrasn "install" is removed in postrans- initial package - license handed in "old" way3.3-9.el6copy_jdk_configs.luacopy_jdk_configs_fixFiles.shLICENSE/usr/libexec//usr/share/doc/copy_jdk_configs/-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tablesdrpmxz2noarch-redhat-linux-gnuASCII textBourne-Again shell script text executablea /usr/bin/lua script text executabledirectoryRfunction createPretransScript() -- the sript must be available during pretrans, so multiply it to tmp os.execute("mkdir -p /var/lib/rpm-state") temp_path="/var/lib/rpm-state/copy_jdk_configs.lua" -- print("generating " .. temp_path) file = io.open(temp_path, "w") file:write([[#!/usr/bin/lua -- rpm call -- lua -- copy_jdk_configs.lua --currentjvm "%{uniquesuffix %{nil}}" --jvmdir "%{_jvmdir %{nil}}" --origname "%{name}" --origjavaver "%{javaver}" --arch "%{_arch}" --debug true --test call --lua -- copy_jdk_configs.lua --currentjvm "java-1.8.0-openjdk-1.8.0.65-3.b17.fc22.x86_64" --jvmdir "/usr/lib/jvm" --origname "java-1.8.0-openjdk" --origjavaver "1.8.0" --arch "x86_64" --debug true --jvmDestdir /home/jvanek/Desktop local caredFiles = {"jre/lib/calendars.properties", "jre/lib/content-types.properties", "jre/lib/flavormap.properties", "jre/lib/logging.properties", "jre/lib/net.properties", "jre/lib/psfontj2d.properties", "jre/lib/sound.properties", "jre/lib/deployment.properties", "jre/lib/deployment.config", "jre/lib/security/US_export_policy.jar", "jre/lib/security/unlimited/US_export_policy.jar", "jre/lib/security/limited/US_export_policy.jar", "jre/lib/security/policy/unlimited/US_export_policy.jar", "jre/lib/security/policy/limited/US_export_policy.jar", "jre/lib/security/java.policy", "jre/lib/security/java.security", "jre/lib/security/local_policy.jar", "jre/lib/security/unlimited/local_policy.jar", "jre/lib/security/limited/local_policy.jar", "jre/lib/security/policy/unlimited/local_policy.jar", "jre/lib/security/policy/limited/local_policy.jar", "jre/lib/security/nss.cfg", "jre/lib/security/cacerts", "jre/lib/security/blacklisted.certs", "jre/lib/ext", "lib/security", "conf", "lib/ext"} -- before import to allow run from spec if (arg[1] == "--list") then for i,file in pairs(caredFiles) do print(file) end return 0; end -- yum install lua-posix local posix = require "posix" -- the one we are installing local currentjvm = nil local jvmdir = nil local jvmDestdir = nil local origname = nil local origjavaver = nil local arch = nil local debug = false; local temp = nil; local dry = false; for i=1,#arg,2 do if (arg[i] == "--help" or arg[i] == "-h") then print("all but jvmDestdir and debug are mandatory") print(" --currentjvm") print(" NVRA of currently installed java") print(" --jvmdir") print(" Directory where to find this kind of virtual machine. Generally /usr/lib/jvm") print(" --origname") print(" convinient switch to determine jdk. Generally java-1.X.0-vendor") print(" --origjavaver") print(" convinient switch to determine jdk's version. Generally 1.X.0") print(" --arch") print(" convinient switch to determine jdk's arch") print(" --jvmDestdir") print(" Migration/testing switch. Target Mostly same as jvmdir, but you may wont to copy ouside it.") print(" --debug") print(" Enables printing out whats going on. true/false. False by default") print(" --temp") print(" optional file to save intermediate result - directory configs were copied from") print(" --dry") print(" true/fase if true, then no changes will be written to disk except one tmp file. False by default") print(" **** specil parasm ****") print(" --list") print(" if present on cmdline, list all cared files and exists") os.exit(0) end if (arg[i] == "--currentjvm") then currentjvm=arg[i+1] end if (arg[i] == "--jvmdir") then jvmdir=arg[i+1] end if (arg[i] == "--origname") then origname=arg[i+1] end if (arg[i] == "--origjavaver") then origjavaver=arg[i+1] end if (arg[i] == "--arch") then arch=arg[i+1] end if (arg[i] == "--jvmDestdir") then jvmDestdir=arg[i+1] end if (arg[i] == "--debug") then --no string, boolean, workaround if (arg[i+1] == "true") then debug = true end end if (arg[i] == "--dry") then --no string, boolean, workaround if (arg[i+1] == "true") then dry = true end end if (arg[i] == "--temp") then temp=arg[i+1] end end if (jvmDestdir == nil) then jvmDestdir = jvmdir end if (debug) then print("--currentjvm:"); print(currentjvm); print("--jvmdir:"); print(jvmdir); print("--jvmDestdir:"); print(jvmDestdir); print("--origname:"); print(origname); print("--origjavaver:"); print(origjavaver); print("--arch:"); print(arch); print("--debug:"); print(debug); end local function debugOneLinePrint(string) if (debug) then print(string) end; end --trasnform substitute names to lua patterns local name = string.gsub(string.gsub(origname, "%-", "%%-"), "%.", "%%.") local javaver = string.gsub(origjavaver, "%.", "%%.") local jvms = { } function getPath(str,sep) sep=sep or '/' return str:match("(.*"..sep..")") end function splitToTable(source, pattern) local i1 = string.gmatch(source, pattern) local l1 = {} for i in i1 do table.insert(l1, i) end return l1 end local function slurp(path) local f = io.open(path) local s = f:read("*a") f:close() return s end function trim(s) return (s:gsub("^%s*(.-)%s*$", "%1")) end local function dirWithParents(path) local s = "" local dirs = splitToTable(path, "[^/]+") for i,d in pairs(dirs) do if (i == #dirs) then break end s = s.."/"..d local stat2 = posix.stat(s, "type"); if (stat2 == nil) then debugOneLinePrint(s.." does not exists, creating") if (not dry) then posix.mkdir(s) end else debugOneLinePrint(s.." exists,not creating") end end end debugOneLinePrint("started") foundJvms = posix.dir(jvmdir); if (foundJvms == nil) then debugOneLinePrint("no, or nothing in "..jvmdir.." exit") return end debugOneLinePrint("found "..#foundJvms.."jvms") for i,p in pairs(foundJvms) do -- regex similar to %{_jvmdir}/%{name}-%{javaver}*%{_arch} bash command if (string.find(p, name.."%-"..javaver..".*"..arch) ~= nil ) then debugOneLinePrint("matched: "..p) if (currentjvm == p) then debugOneLinePrint("this jdk is already installed. exiting lua script") return end ; if (string.match(p, ".*-debug$")) then print(p.." matched but seems to be debug variant. Skipping") else table.insert(jvms, p) end else debugOneLinePrint("NOT matched: "..p) end end if (#jvms <=0) then debugOneLinePrint("no matching jdk in "..jvmdir.." exit") return end; debugOneLinePrint("matched "..#jvms.." jdk in "..jvmdir) --full names are like java-1.7.0-openjdk-1.7.0.60-2.4.5.1.fc20.x86_64 table.sort(jvms , function(a,b) -- version-sort -- split on non word: . - local l1 = splitToTable(a, "[^%.-]+") local l2 = splitToTable(b, "[^%.-]+") for x = 1, math.min(#l1, #l2) do local l1x = tonumber(l1[x]) local l2x = tonumber(l2[x]) if (l1x ~= nil and l2x ~= nil)then --if hunks are numbers, go with them if (l1x < l2x) then return true; end if (l1x > l2x) then return false; end else if (l1[x] < l2[x]) then return true; end if (l1[x] > l2[x]) then return false; end end -- if hunks are equals then move to another pair of hunks end return a "..readlinkOutput debugOneLinePrint("executing "..linkExe) os.remove(readlinkOutput) os.execute(linkExe) local link=trim(slurp(readlinkOutput)) debugOneLinePrint(" ...link is "..link) if (not ((link) == (SOURCE))) then debugOneLinePrint("WARNING link "..link.." where file "..SOURCE.." expected!") debugOneLinePrint("Will try to copy link target rather then link itself!") --replacing any NVRA by future NVRA (still execting to have NVRA for any multiple-installable targets -- lua stubbornly consider dash as inteval. Replacing by dot to match X-Y more correct as X.Y rather then not at all local linkDest=string.gsub(link, latestjvm:gsub("-", "."), currentjvm) debugOneLinePrint("attempting to copy "..link.." to "..linkDest) if (link == linkDest) then debugOneLinePrint("Those are identical files! Nothing to do!") else local exe2 = "cp".." -ar "..link.." "..linkDest dirWithParents(linkDest) debugOneLinePrint("executing "..exe2) if (not dry) then os.execute(exe2) end end else debugOneLinePrint("executing "..exe) if (not dry) then os.execute(exe) end end else debugOneLinePrint(SOURCE.." does not exists") end end]]) file:close() end -- in netinst, the above call may fail. pcall should save instalation (as there is nothing to copy anyway) -- https://bugzilla.redhat.com/show_bug.cgi?id=1295701 -- todo, decide whether to check for {rpm_state_dir} and skip on not-existing, or keep creating if pcall(createPretransScript) then -- ok else -- print("Error running copy-jdk-configs pretrans.") end# remove file created in pretrans # echo "removing /var/lib/rpm-state/copy_jdk_configs.lua" || : rm "/var/lib/rpm-state/copy_jdk_configs.lua" 2> /dev/null || :/bin/sh?@7zXZ !PH6.)J]"k%wHvX1ڋNHRFHh1ii-}!(CdĞH1ĵ#f.Hdd>Ou t#]YMuhrу9m6w3竡z<f=݆keq +%[ZP#GfhT^9リL<BPr}Oh sOZT&X'C'DS1e!'(*`ܪBzΉe%!_/\$@s 0gK:r0J 9W#$j*CU->W:O'kb? @ɔb3/Զ9WJG1J!e#Ivy0 -`8;(jOV I+m'NiMJ{7D3 >~.A h5 T߭E"c`d|}g(c֙eeÖ(G~~l#+X 'PD^j|/ƪXK4Xk'BC]VX;'7Bjq)ihrCHU0m";r5Pb"Kv,@WE̓!SkL,rr{Q9aEەZy7Mϼ$OV6!~KVvj'1A)Gnx}vf*ނ вui}Vl0;zV9C(pi< =݉ܝ^bvH[>即]! Ic-+StfoGڈWx|ijB6֫ /IJNN!ƛ!;(,wRYi(PjZ3rEK4E^E?NLMg).%W%,۫,yot+89}U͟4i_ Ԓ/(O=r AP'L[4Q)čk5`kd w%?c6=daqc2;T(8G&.U a4jRdKrίKY׀$:I_)N9|ځu )$km"Ehg}ݏ@-6|DX`"_Q{+H oɞe8 ! ?+QkHM2<9+\I(|(9"Vӊew; NWS4;X]PbwuԆ?;gHLE[=TاN|Uڊ-P'iKt%h AdF,iѠ8bm-փɍc@I˓(W; Q*QN̐ђ0n =84Dv-w0f3yu\quJ3Q&*g B~QQ.<9RI@0{sp[**/z;Xk)Tx9kʠCq(U&t_ P?LB]Ҡ=hh.?y\kE8##mh+^ Vb;RŁ)cUyI/4p> ;C{'N.Z篭'dzIrLi5kt]beRS w zuPpbLK#jg#[gkZᜮ$J+i+c1aEN#˭$ظzE.eKsnf&? 2#Gַnx}@m4pK*A=BwW?pEރFzl7F0@6t"^b+39:VzW~b3 _nW@xDH"߮J1iS_ׅR1>[Uχ4}Jv҉YmpF).hl5G¸Z3 : ʙ8q^AK!WakVi5* ? w*o?J%/"³GŊ S_PEW6|pb#3O]{tC8]£G5#1^[G!7nk:7 r#hqNFzBfԿ;I^F/-؉*ܙ] =d-w4Ƙx 1p  >HeJs>~eW&.+ =>K $ԭkj J'Gr@%݀S[LQ5SYV}]JuC}}^U=pS>(; u)B_qd#U9h}"0s{Di0(-WA-W j5e/vGA !m"MQb%D?x^OݛT*kV}7&CL650˳;9\e(.KŞ{OMNTC{FmMm$NE쇶 &Dfz,2|(}I` *̠3Ɩ=kJB_=f$-*}ܑlk 0%VlwISN{rZAniyHX{@m?ƵQ8ÜW, ɄDԞT(5xav8&1R (V?8Sۧ0I`M9+PrU]X߹BX?/" ooWvn?LDߡC|UYFLa e ?h^H\xZl]ySK:A[Þ.5G 41v,r[_:|ո(& pw)(6X@>T^8?*1L^b 80HK EYvPH=f A x}LrerB)B\[/5?6 n9;W0FVf`) gE./5b'7UEԲ.woIeL[NK/"]FyT rg`դ]30REVk PZ'`K.6unH'ƨ/0SACD$%?L(̊3,9XY 6+6jsqo<{{-`#P3$rMKq, =S$e Q r;u@gAиI"ZrDfnAC0*D!r74 bǟ2ZG=t&>z [+e7ڐY(쪏R}3(:b:ܸq끦osg胇3cC0JHwp'`((\Z4;14)t0vIKtu.k\[P pﴯg錖T-ttj =\d D-"wq>|]1iЭ ͕n`s$7Bw[:ةYS|~`3.Pp! paL[}=ϣy'ӻ^z[ 6(qľ|Z1ze|ᒐSuVuXZ8=6%9P.gkg!c ק8ѸSw0gv0JcIuπ&xgi+Q[nMv> UbZŽ&\X< YZ