fedora-release-workstation-26-1$>Be)!)<(B>?7?7d  " f  5V\cC+%++ + + + , ,,--0-L-d- .$ /I (/|8/9/:1 >2?2@2G3H3 I38X3@Y3T\3d]3|^4b4d5e5f5l5t5u5v66666Cfedora-release-workstation261Base package for Fedora Workstation-specific default configurationsProvides a base package for Fedora Workstation-specific configuration files to depend on.YVbuildvm-11.phx2.fedoraproject.orgFedora ProjectFedora ProjectMITFedora ProjectSystem Environment/Basehttps://pagure.io/fedora-releaselinuxnoarch-- This is intended to be run as an RPM scriptlet. -- Keep this file in sync with the convert-to-edition -- shell script local VARIANT_FILE = "/usr/lib/variant" -- Read in /usr/lib/variant and determine the edition local function read_variant() local variant local f = io.open(VARIANT_FILE, "r") if f ~= nil then while true do local line = f:read() if line == nil then break end local m = line:match("^VARIANT_ID=([^\n]+)") if m ~= nil then variant = m end end f:close() end return variant end -- Atomically replace a file with new contents local function writefile(path, data) local tmp = path .. ".convert-to-edition" local f = io.open(tmp, "w+") if f == nil then return end f:write(data) f:close() if not os.rename(tmp, path) then os.remove(tmp) end end -- Forcibly replace a symlink local function symlink(from, to) os.remove(to) assert(posix.symlink(from, to)) end -- Run a subroutine in a child process local function execute(...) local pid = posix.fork() if pid == 0 then posix.exec(...) posix.exit(1) elseif pid ~= -1 then local status = posix.wait(pid) if status ~= 0 then local program = ... error(program .. " exited with status " .. status) end end end -- Remove preset files for other editions -- This should never be necessary, but it's best to be safe local function clear_presets() local path = "/usr/lib/systemd/system-preset" for file in posix.files(path) do if file:match("^80-.*%.preset$") then os.remove(path .. "/" .. file) end end end -- Get a list of presets that need to be enabled or disabled -- as part of the installation of this edition local function read_presets(path) local result = {} local f = assert(io.open(path)) if f ~= nil then while true do local line = f:read() if line == nil then break end local cmd, arg = line:match("^([^ \t]+)[ \t]+([^\n \t]+)") if cmd == "enable" or cmd == "disable" then result[#result + 1] = arg end end f:close() end return result end local function set_variant(variant) writefile(VARIANT_FILE, "VARIANT_ID=" .. variant .. "\n") end local function set_release(release) symlink("./os.release.d/os-release-" .. release, "/usr/lib/os-release") end local function set_issue(release) symlink("./os.release.d/issue-" .. release, "/usr/lib/issue") end -- release: the VARIANT_ID for os-release -- issue: which /etc/issue file to install -- presets: whether this edition has extra presets beyond the -- defaults to enable or disable local variants = { atomichost = {release = "atomichost", issue = "fedora", presets = false}, cloud = {release = "cloud", issue = "fedora", presets = false}, nonproduct = {release = "fedora", issue = "fedora", presets = false}, server = {release = "server", issue = "server", presets = true}, workstation = {release = "workstation", issue = "fedora", presets = true}, } -- Call out to systemctl to enable or disable presets local function set_presets(edition, apply_presets) if variants[edition].presets then local target = "/usr/lib/systemd/system-preset/80-" .. edition .. ".preset" symlink("../../os.release.d/presets/80-" .. edition .. ".preset", target) if apply_presets then local presets = read_presets(target) local systemctl = "/usr/bin/systemctl" if posix.access(systemctl, "x") then --fork off a systemctl call local pid = assert(posix.fork()) if pid == 0 then -- Child posix.exec(systemctl, "preset", "-q", table.unpack(presets)) -- In case exec() fails os.exit(17) else -- RPM assert(posix.wait(pid)) end end end end end local function convert_to_edition(edition, apply_presets) local variant = variants[edition] if variant == nil then error("undefined edition: " .. edition) end set_release(variant.release) set_issue(variant.issue) clear_presets() set_presets(edition, apply_presets) end local function install_edition(edition) -- Create the variant file if it does not already exist. This needs -- to be done on both installation and upgrade, to ensure that we -- upgrade from F23 and earlier properly. if not posix.access(VARIANT_FILE, "f") then set_variant(edition) end if read_variant() == edition then -- (On initial installation only), fix up after %systemd_post -- in packages possibly installed before our preset file was -- added -- On upgrades, do not enable or disable presets to avoid -- surprising the user local initial_install = arg[2] == 1 convert_to_edition(edition, initial_install) end end local function uninstall_edition(edition) -- If we are uninstalling, we need to reset the variant file and -- force the os-release file back to os-release-fedora. We do this -- in %preun so that we don't have any time where the os-release -- symlink is dangling (since in %postun, the os-release-$EDITION -- file will have already been removed) if arg[2] == 0 then if read_variant() == edition then set_variant("nonproduct") convert_to_edition("nonproduct", false) end end end install_edition("workstation")-- This is intended to be run as an RPM scriptlet. -- Keep this file in sync with the convert-to-edition -- shell script local VARIANT_FILE = "/usr/lib/variant" -- Read in /usr/lib/variant and determine the edition local function read_variant() local variant local f = io.open(VARIANT_FILE, "r") if f ~= nil then while true do local line = f:read() if line == nil then break end local m = line:match("^VARIANT_ID=([^\n]+)") if m ~= nil then variant = m end end f:close() end return variant end -- Atomically replace a file with new contents local function writefile(path, data) local tmp = path .. ".convert-to-edition" local f = io.open(tmp, "w+") if f == nil then return end f:write(data) f:close() if not os.rename(tmp, path) then os.remove(tmp) end end -- Forcibly replace a symlink local function symlink(from, to) os.remove(to) assert(posix.symlink(from, to)) end -- Run a subroutine in a child process local function execute(...) local pid = posix.fork() if pid == 0 then posix.exec(...) posix.exit(1) elseif pid ~= -1 then local status = posix.wait(pid) if status ~= 0 then local program = ... error(program .. " exited with status " .. status) end end end -- Remove preset files for other editions -- This should never be necessary, but it's best to be safe local function clear_presets() local path = "/usr/lib/systemd/system-preset" for file in posix.files(path) do if file:match("^80-.*%.preset$") then os.remove(path .. "/" .. file) end end end -- Get a list of presets that need to be enabled or disabled -- as part of the installation of this edition local function read_presets(path) local result = {} local f = assert(io.open(path)) if f ~= nil then while true do local line = f:read() if line == nil then break end local cmd, arg = line:match("^([^ \t]+)[ \t]+([^\n \t]+)") if cmd == "enable" or cmd == "disable" then result[#result + 1] = arg end end f:close() end return result end local function set_variant(variant) writefile(VARIANT_FILE, "VARIANT_ID=" .. variant .. "\n") end local function set_release(release) symlink("./os.release.d/os-release-" .. release, "/usr/lib/os-release") end local function set_issue(release) symlink("./os.release.d/issue-" .. release, "/usr/lib/issue") end -- release: the VARIANT_ID for os-release -- issue: which /etc/issue file to install -- presets: whether this edition has extra presets beyond the -- defaults to enable or disable local variants = { atomichost = {release = "atomichost", issue = "fedora", presets = false}, cloud = {release = "cloud", issue = "fedora", presets = false}, nonproduct = {release = "fedora", issue = "fedora", presets = false}, server = {release = "server", issue = "server", presets = true}, workstation = {release = "workstation", issue = "fedora", presets = true}, } -- Call out to systemctl to enable or disable presets local function set_presets(edition, apply_presets) if variants[edition].presets then local target = "/usr/lib/systemd/system-preset/80-" .. edition .. ".preset" symlink("../../os.release.d/presets/80-" .. edition .. ".preset", target) if apply_presets then local presets = read_presets(target) local systemctl = "/usr/bin/systemctl" if posix.access(systemctl, "x") then --fork off a systemctl call local pid = assert(posix.fork()) if pid == 0 then -- Child posix.exec(systemctl, "preset", "-q", table.unpack(presets)) -- In case exec() fails os.exit(17) else -- RPM assert(posix.wait(pid)) end end end end end local function convert_to_edition(edition, apply_presets) local variant = variants[edition] if variant == nil then error("undefined edition: " .. edition) end set_release(variant.release) set_issue(variant.issue) clear_presets() set_presets(edition, apply_presets) end local function install_edition(edition) -- Create the variant file if it does not already exist. This needs -- to be done on both installation and upgrade, to ensure that we -- upgrade from F23 and earlier properly. if not posix.access(VARIANT_FILE, "f") then set_variant(edition) end if read_variant() == edition then -- (On initial installation only), fix up after %systemd_post -- in packages possibly installed before our preset file was -- added -- On upgrades, do not enable or disable presets to avoid -- surprising the user local initial_install = arg[2] == 1 convert_to_edition(edition, initial_install) end end local function uninstall_edition(edition) -- If we are uninstalling, we need to reset the variant file and -- force the os-release file back to os-release-fedora. We do this -- in %preun so that we don't have any time where the os-release -- symlink is dangling (since in %postun, the os-release-$EDITION -- file will have already been removed) if arg[2] == 0 then if read_variant() == edition then set_variant("nonproduct") convert_to_edition("nonproduct", false) end end end uninstall_edition("workstation")if [ $1 -eq 0 ] ; then glib-compile-schemas /usr/share/glib-2.0/schemas &> /dev/null || : fiRJ'A큤YVYVYVYVYVYV0218b5b70fa6eec8aac41cb0d466c6d1d5d6a598ee49e643c88f12b7d6b746ecbf5ba68775a1f338ac83f5c081f002f48f5ddfaf8ff0d9b1a4241dfb5f99f52e7b096c7092b4d60338eeb1b8e1855fe037bc42119f6e30e545099c8a49d71738e98708047560db5a5bcf7495c3108709760cbf6202df7b216cbd7918725e7d0f@rootrootrootrootrootrootrootrootrootrootrootrootfedora-release-26-1.src.rpmconfig(fedora-release-workstation)fedora-release-workstationsystem-release-productsystem-release-workstationsystem-release-workstation(26)      /bin/sh/bin/sh/usr/bin/glib-compile-schemas/usr/bin/glib-compile-schemasNetworkManager-config-connectivity-fedoraconfig(fedora-release-workstation)fedora-releaserpmlib(BuiltinLuaScripts)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)26-126-14.2.2-13.0.4-14.6.0-14.0-15.2-14.13.0.1YV=@Y;@Xg@Xf@X2@X2@X=W Mohan Boddu - 26-0.8Mohan Boddu - 26-0.7Mohan Boddu - 26-0.6Dennis Gilmore - 26-0.5Dennis Gilmore - 26-0.4Zbigniew Jędrzejewski-Szmek - 26-0.3Stephen Gallagher - 26-0.2Mohan Boddu - 26-0.1- Setup for F26 Final - Enable NetworkManager-wait-online.service to match NetworkManager.service- Enable cups on-demand socket activation - Enable ostree-remount on ostree-based systems- Disable systemd-networkd-wait-online.service- update for branching- bump for needed rebuild- Fix mangled Release tag- Move convert-to-edition to its own subpackage - Eliminate circular dependency on bash from the base package - Enable switcheroo-control.service- setup for rawhide being f26/bin/sh26-126-1os-release-workstation80-workstation.preset80-workstation.presetorg.gnome.shell.gschema.overridefedora-release-workstationLICENSE/usr/lib/os.release.d//usr/lib/os.release.d/presets//usr/lib/systemd/system-preset//usr/share/glib-2.0/schemas//usr/share/licenses//usr/share/licenses/fedora-release-workstation/-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686 -fasynchronous-unwind-tablesdrpmxz2noarch-redhat-linux-gnuASCII textcannot open `/builddir/build/BUILDROOT/fedora-release-26-1.noarch/usr/lib/systemd/system-preset/80-workstation.preset' (No such file or directory)directoryglib-compile-schemas /usr/share/glib-2.0/schemas &> /dev/null || :/bin/shutf-8?7zXZ !#,#v]"k%ڪl< sL!.}+U$)QLRrT MBr:.zS)X$#wez2}l&TN$-O?kXwprgt$'L 2y:&Q$!*1{s|P`_N+U)ɑGy?+&Ef~R Yɾd=D$R58CSBXHV?#KOmeGUku9*ܱ(s~>d`v{QU3>5|<BN4F¹Gw:f~9?aa7-}1Zy&sa2!@'Dzg t)cW WOg]r0Ul޼PB!3Nግ~%;TH1t{z=nv-9mH,+~&)>3RnXIC奚h y><7lÌ#lٌ-B >.Fڶx{Wj`0t; Mgh2@=TS;W~SC|Јgqp>Q[_;T`!D2NK;Q fcbq%( 0%_28:nqfy;fJc8YђGAbTyl*ҊG״wtg] {2AyIj+E.ӮJ_Gb]3—9J4hg&xUqHcdnd9~eJ_꼖4I&(4 us&p-&c) o&6s4eNk-Vmso7Vn氋TYf|ѹ $a>q_8/]*ha|PS²vWt$G/ D؁UAX{1D#ygwR[G jGEvϘ?M%+wn<82W!HIְGHChs8k~@2 ?#p/IQlrk4BYwb) d ơâ v%5qci'(w@淓ר[oPm04a#pny[c(+y@y0VJYv$BpRf#+G~N3sW3qVCp{=5-n~` /gW%7 ;}51{fx7"V|GEjd:7L)ǚ'Wٝ$NW 'j /c~OnH1)j58\Zs>鐉NW. EܪZeя_ԧt{FJ^g/H!w`&)mq3PQ$ć}٭̤aBuW^MYS ptq*N2MzwZY.@Gܘ9 _ִ *z<4 zlSPp.MAp8nv@ 5 ]i/r QeAhV8͑JYv |7)U޿TH]֠6p,R@  YZ