yast2-installation-4.1.50-lp151.2.15.1<>,cP^K/=„(Xƙe5 ̪Cvi ܩ&ZO$ 39>cb_d pڵeь!yb#>*G(R=@˶Y}F[Wh~{dK kJD5Sjv9oK="9dї:`tBi)|`-|Em%XG iwPIC+zk],.Ny 2Cĭ*܁A|H]3S %5>OP?Pd ) D  M$l   " ` af(kpq uTu$v|$x;$xxy6(yf8yp09~00:0=>?@BFGH\I"X#Y#Z#[#\#](4^<7%b@cA+dAeAfAlAuAvF4wGxK\yOzPP P$PtP|PPPCyast2-installation4.1.50lp151.2.15.1YaST2 - Installation PartsSystem installation code as present on installation media.^Kobs-arm-9 MopenSUSE Leap 15.1openSUSEGPL-2.0-onlyhttp://bugs.opensuse.orgSystem/YaSThttp://github.com/yast/yast-installationlinuxnoarch test -n "$FIRST_ARG" || FIRST_ARG="$1" # disable migration if initial install under systemd [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$FIRST_ARG" -eq 1 ]; then for service in YaST2-Second-Stage.service YaST2-Firstboot.service ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in YaST2-Second-Stage.service YaST2-Firstboot.service ; do # The tag file might have been left by a preceding # update (see 1059627) rm -f "/run/rpm-yast2-installation-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-yast2-installation-update-$service-new-in-upgrade" fi done for service in YaST2-Second-Stage.service YaST2-Firstboot.service ; do sysv_service="${service%.*}" if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --save $sysv_service || : done fi PNAME=security SUBPNAME=-checksig SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" -a -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -eq 1 ]; then if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl preset YaST2-Second-Stage.service YaST2-Firstboot.service || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in YaST2-Second-Stage.service YaST2-Firstboot.service ; do if [ ! -e "/run/rpm-yast2-installation-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-yast2-installation-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in YaST2-Second-Stage.service YaST2-Firstboot.service ; do sysv_service=${service%.*} if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --apply $sysv_service || : touch /var/lib/systemd/migrated/$sysv_service || : done fi # bsc#924278 Always enable these services by default, they are already listed # in systemd-presets-branding package, but that works for new installations # only, it does not work for upgrades from SLE 11 where scripts had different # name and were not handled by systemd. # When we upgrade/update from systemd-based system, scripts are always enabled # by the service_add_post macro. systemctl enable YaST2-Second-Stage.service systemctl enable YaST2-Firstboot.service test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable YaST2-Second-Stage.service YaST2-Firstboot.service || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop YaST2-Second-Stage.service YaST2-Firstboot.service ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_RESTART_ON_UPDATE" && . /etc/sysconfig/services test "$DISABLE_RESTART_ON_UPDATE" = yes -o \ "$DISABLE_RESTART_ON_UPDATE" = 1 && exit 0 /usr/bin/systemctl try-restart YaST2-Second-Stage.service YaST2-Firstboot.service ) || : fi else # package uninstall for service in YaST2-Second-Stage.service YaST2-Firstboot.service ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi fi~ a SpD< VN  * z/\^QLVYLj^^e\W^VbYZGiWOK[UWclMoXTX]pX^deK\QVM\ZNlOSQU^MVX]E\MXUZIVTOOIR!rR#L+<*7 #*; n;Cs ~@_?Q 5P k86M$A   l ) I&|*]X[ 2CE- 2+c srVdPl+T =(<| lIo> yg:Yn{p|yG ?FA큤AAA큤AA큤A큤A큤A큤A큤A큤A큤A큤큤A큤A큤A큤A큤A큤A큤AA큤A큤AAAA큤AA큤A큤AA^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^:^:^;^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^:^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^;^F^[^;^;0379800c76b30b8b34255227edd0c7e24a7be5ff017622caaf9460933b96f2d5d2807a673fcab8987c835dbc49bd6bd76b8206997bda13ab5427c30cf61edde5b9c226d13b7995646c0b733937997acb00e7b61dc582fc02b49aeff5b4bcefaf592dd707b4ff0e0f8a3d0cfc979d3ba1e05942afa5e84e07064454d8882ca2fb6acd5da54297da7f1a33643ea3656b31991dd61785452fb06ff4c9601cfccec358fb0d7de90165efe380b23ce9d4366e568ea2ffa7dab184980fd2ca6dfd8dae035066e50324b7ee9947151f6b4816517516496757d26d948089dd6a4efd05314a9375fac0151e931f600683a7a432b181d397cc56eb37ab5da4b924abfd0a14ccf63c5fcc69f76e936813e2fd252b26d65383e606ffa5d35db653bfc12c3f76e6c1bb585d8bed0486fe6a7e060d137d13a26ab697b1a44dd6c2eabf7d050c5ded30a18aa1d18eab00d179fdab30b881dda241478221174462424f817a15bcc7eba2c944c6b1ce469f9901e25331cbe707c05081bdd817090f14c720eaaf448bc4fc7739c49c951c116ce3b889074cbe95206acd8b731efe113ee8f480bb30a5610415a73d18f01b6cba49b07ec39d7ac3a047326ddfcad0aedee7f8d3da68cbe65e48fa274f4095dfd464747c31aea5b82207a2e3b5668d5b98fe6797acbc79a1d1c5f5106e78900fadea8efab9ab1332cb6d3f39fc1ffcb96eb30aef70912b9bdfab71b67cbc88d76caba715e055da995ab8588af9347af5d1814450841fd164a9a9883df974d1562dfb8723f76caedde7dd85be11fc02d571fe452d185b17dc3c99c081e209e4a5611c0b645f20409d64fa78c4250439f0ab3c4408488beeef7087c5d70bff08596e25c3e0cc8ea82209af91e2920091337b679aec15b6194059694bbc158b8d49eacfe91e12fa9fb6b18cf9740bb2ef6a35a0edbbc962a80119933c456f4f48430105642ba5411291e3a28d64645978fea8cb4e0e4c8eacdcb068b628daab7034278b6107a38dafcac750f70a25d1a5f1c30c075a33a37f24228912794541bde322cb37879bcdcf962295aef520f0af4f78be2bd9a064232e945255238fa9975349cb4c7a8f7805c1f766767cefd70a32a68bcbbe2d5fb68096b9228491b3bb58c54304e3ea2a554beba6414b60c1b1d138cc6576ff4c4763b8b8ce4e133509ed0a1e8a00a26a443cd31237e3389cddd402c6b4e056897088e9adaf640d0be54f11a1a2ce71ed5061bee1de0b63e703ee212e69d703c5a2b6c065fa92783f73e99e7ffe6e0a4a275296a9d935beefcdf790d8bbf8ffc94f2e30ee17a0e07a99efb6963b9cf0930f7979d543e2ef66dda2fddd4c9c35c48bf0c0160fc63fe2d6822282748b299d9c4559a21be2b2e3e9f0575131897b533d6109d84daad0f76e7a42f1257d6845ffa6bec2d9db54b6d0f3da496d6709ef63ebb5d5c1aefc5936a4851ce3ef3ee618f3153c6d8eea911b0b40106a7ca530d914d64c674299ed12a14ddc35fcc2b011280b668f9dc04e4432f94b4805b4d431c67b0f55ad50a273c71ef9e6920ccb1e23a52cfae62026d97862df816b6460cad0ea7587cd9536e183c835710385a77b9c06769ddf35fccde18bbd12b988b9d25da067b60cbb2aae9b11a92e4741d13ca9ae2c2a8633dc00768bba60a7aa34669e4ff26639dc74d9d9c3010a8a843be7000f79385416042059adf7e97b9bd9736411bbc5a29617d9820ef7bccb5aaed367d40d5af73a55516060c60619ffd4e110aca409e185c808198a11c1b8e267ebd878f7930c7834eb54c1be7ee12ff786faa04b05c9acb1495e0c7a5ea4f36ade7a45bb8f7f2139ce6f62e1e05d351a74ae98b85a8fc40d9e3a057bd790be509710423dd62d0ecb44059d69860dbdb05eb15fed4d23be2bfd0c7831af854cbb265603700815432ee435d15e76d3d6558bcd5975b765ff1b582640f6884d8dc2a1a907cb79698c88358b342881bef10dddc0b85e4a08563817bb785205bb30c72d1be57862a6caeb0a808000c60d2b782f45bc11b1fb9999f37f79c7b03ef3f470e4794b18a84e971d30abfeffb89cdd140bd95a6287c019f0b881ff3f812b1f2eeda32f240bcc6b232864470f8fe09f5dc24a126d23255e1dc02d46680fe42e0d7f3a32e5fb351abed41bef9bb23e9d3bce8c383c15757e474995bd62cc741820f12be65ed4e16bfb9ced25f6bc33bd175488c275915146a461d1cf1a5e4625d2f9244fba50320ef6d5f96b4e24a76724727e91d5f995055926180a89c4b0105a5d6660a982a82ff5473299a04de83802b3ad101534e02100ff56b05eebfc5131d15406bbd615f4e7c747b115e9bd4e56d22fd569f4cb69c0455da277fd1a3e92da6ee4db3dcf7c8c6056f45645cbe8962babaab343e3df1c08733edd598377a1fbeb34a8617f1e4755eaf444411e90fe259f3286bfbce801dc0b82fa7303a51a3b5a2eb7203d89f64bb10b2fd092a915dabf895095672800e69fc0228eeb368426c9be962157725d0d0e49b3925a1ef7907ef14e48956392ccc250554f63a9b247bb5a7e887e9f5581c3de900be8d5497173707d2ddcd6ec79ae5cf39debedad5afbb1984bb7a1ee9617ef740b46736a6a6ddceb775a9f710524ba4a3e4504fc6556ead9aa92d9c97afabbc94e2ec161a83a5d2f613b597af7a2b1edc776adf18dde3c58acec43cac88da58381ee4df2c221c18b60e37fa97cd88aa1c48c2aa80ffd4fc1ad1e943664c5a178719fad97625efb88ef52f4de9841ee93cced97e26a4aa5df7e2f7a33d83f12bb1b9c7497cd6af96e1ad915614c413ddf1addc79fc33138177476b9cde905abd4881ff629aa94337dd6d23cae90bf719c2dce0a7c0c8a791bf9fc67fae52900c86328ff1cab8863f8bf0b610fee8293eb572ea14e289ea3b9a350d92c6c5bf451e34a0ede71dce635f50b617614a0da59d93988046f3f3aba607d90b882c96a178bb7fc38bd7effd87e01fd215d057f860ca7de6e0dedeb90689c7c9d6a882486fbacf19cf7906f3de2693d7ba0be6ed12966ab783edee531abf4e89ca927ae035a9a5812391a93c09ff343121e5841aa6c6896f7b1a756520bac115a65f0eb02911bc73fae3bb295b35a353e675519d5f4f3d4f08c0400378a44e40095207c3ef25430ec835d4bc91bc29f24e1b7111f355c6bc302b8ee62dbd125744818cdb85e6b646619c7c379d3c72d865346a64c5291d6015a6daa9401f98c132cc3f58c7348e77f7991d13bdc33aeac1c21b5a539d452f16ac484a8ff5693369a7179d25830679dd93b1786733310435c9fa12ff085b89ccbdd0979b07100b2b844f5359770f675b38d75fe8fccf7f0bb34bea8cec0f48eeae1d87e784cb2d498741fbb0b84c74ec4b2de9e29f919bf5a3bfcc1c5ff3396666525785c356d45da7d6d600a244ca40c9662e2425fe216e94251676782aa78b513b49e0424605cd873d6d91a05f338c482abc1d70320a2f094ee33c6068641f74270c1c2ba7c27ddd3306822e0edcb4a5446b2c929df4544fb222739c7e19274848d5ce17280ad38b33002237098e5c832174ef0c2df33fe0e32ba43cf21897f7e2e881ff2aa13a0634d43ef5f101299c89c55f1b02aba7afdcf16d956e9f4fd17cda670c8d4c99ad47af97c7d5d664d7652864f635aa247f0547eba13f5ff85a76eeceefb0888b30e13ee155e24705071df15a3a3ae55f43bc532397745aad25d1bbf3be5b0437f2f202bcd4baf87bd815ee87d28611faf2790e912efa508c7216e882d6f9347f3763f24fb543d1f1fa4fe3f4da8861ac6315aaddae2a6a0d7b493162f63c4df44fb5a15246e5f1917f5a93aadc392ebb38a4230a44607db34b8d605d421b3e222ebfe82c633fe781ca506c41b6e0e2153f17f8e8b1f6fe959cfd8b28feedda7f9f974f9848f3e6674a8de589161bafa7ea6cd992a3e0465f616e9bb22282565c985fa35e2e3c2f9a599bb60a35915ebc348be66da722370bba7e947b2a262e82f046cfd761416aa192887728c0bb34b659e7c29253929d87c950cbf70656e4a45e47d39e18b8acb8ef4c6715d8cb637d802a8a51d4df97253ac1a7115eb409d25502bbce3e7ea26ffeea3ea97ea5901c94ca5f77a22f83da1c9dd47bff5d97df4e6fcbc2a298cbd18c186757c7749df218cea0a1c011e106debd1250e426fd61df1221e6a2c8e8674dce9197c5445d9f219a34a5875ca98cd0a936f8d0c8addfe7f00d65a02a6763fc81665411e230324f9833c783d1899e72cabad9d93bf4a392580c0260116f31e4b0fe152fbdc82b216e453b5058040ef39279d8be142f5aa2cdbfe92c4d8b1438ee8096a9c55925371ddac077c53cb28ea4d0584cdbcf605237180b0dca87a829ef9ed6ecbc09db4d07cdb2ee5289b46e5c289aaac4c24227f423d183a7ab2bf8a545d85d6bd7e6dad08590542433f7d3a8c1f66b055e53e9f4ceed0b95150e1a3b0bf5151d356bdd2e88b8ba948b08108e5a5661851922c63cd3379d94314d51c377b1c027b0b66406120c9bc033c9919de02af6207fc6217e55e2eda8804153a0431290af16e8a8d536a247fc681cec8fc7ff0faec1d06934e44053ac9ae8e49a2d568f1a2681fb84e5c064929c21f15b731de72119940ee80a05b32642203a5873e365fe9ec3f1b16b71ae945d585f22c4868f70c0777c88b82508363860ae9b79599d469cba2a6a27fae5b26629ba02e3a24a801187a04b814343fbf1002d3308f0c5810aa29956927903cf3a020d747c8d5d39bb0355f55c77646a4aa9e07ee10b3a7d1837d21563a5b48fec035a2b6be502adce9b21036b5b174743bc09cce3724678ccb9ced565f24d686f424fed5dd88fcf43f317736bf478f50da45c5934697846417f92e35af5d8fce5bacf5e74a5536b227abe3bc01029cbcfe991ee50ca43d703cc83ef2948d20ab4a18a5b7a463b64f784819f345ff462de30fc715d5143857845af9f846569490f14a23ef33576d2719165b1d4e44d83af74a3dbb78b985a8e55d7152448ccc194eaa57be3c11b2c4eef608084a53fffc5597242e5e84aa5c1f34c0e05d498b9d5522de71450db80690d2be70fc3305ebf3871ef6260df73c4a3ce8502254ab649723defd4913ffa889a197a616c18df75471da4a2345b2e7b8c644c1eaf10e5414d3b14f5218ca3dce42975ec57b5421389054c43ed0217e90b5801dcd8d0d8e1adcaf580042ca0da27e546d5baa220e79d4eda2384b801e1f30df55255a5807e53c5f8df7bcb57e939a10a88bb3737d620d9fc1a35c7b3e75e7ee10661982cc79a65bec99794967b76068b9f1d55467fa654aad869f7cf336ee4114e46194b2cce0e9a35cecc493a4bc44137ed462b4380f860df21e0f2ddd1bf29b1e2300be40a125807f26b92d5a115e449aa58ee308d9f1a6e9ff89ef561641b891f1156bfc2c28bd18c3672736b21e6a17d01ebd152694f44983997c66fac335b6d78e06bc09390f2e535c50420e9237737d7f019187252fa3e2c457cdd536ed07aa0cffed2746df025781c1bccf961008e2d599edfde1a66d4b51aac86c467f92dbbfa322a650ce5e05d09530af9135ebc938c9b9c5592708566770c7b57393cb9fb4d9cadfd427830e54e728d805fa97a779fd4f001da85c84c9f108b1ac6d2d06e0f953dbd7b4f7157970e4ecda10caa0082711d402bb3e46c016f94d19b5a22377d650e279fe893b0ddfb6e682f4f3c93dd2cbd12e767ead149ebf4f2214509e3dfaa627f3bd0b9607f8ad2eed6a19e3e259e0d0aec53fa95febadfdccdf8efeaba2f0fa01005de2a8709e310560f9000dc293e5af43af5e97556f22a8fb017bd627dc64c1a1433910aa5cd4ed61eec67459b40d869e04c724693872747b200ee96afd87b8db3de2039e399e38ec562594e2c8a29e19923aa475e3f36a9a667c14195115ac294f46d87c5d43ebb6814baf1a02d85dcff89aeb82fcab6201cb854db4d5bc199ac648f1bd7d950a70cd8e2ddce5a34e222ff5e8ecb9f547703df2cfdfcebc6783b6040f7c48bc9199ca445a8d22930c46ba30d474c0d071a3481b24415fc35fd7d4a6343197e874dfaee8b465328db5e5e7d656e7cb261d04a3e86b3612a03f3a3c2ddc106ec253c98a6275eb33a4ee2289bb0a94e49d6307a6fdf23eb1f2ff5cf6aed1de4009b505ff22d600d4ef50a3fee7091c929b97df7bc3d35b012f688f4a2fd1369cb29185bc0a110358fa020febeee85a792613b3ddd208954e8e1252206c8533594ab19046cbfe584c14fce1f14d855c68bad12383c38441e828ec69a3d65cc9f00fabf0ee3c06c99384bb931c79d01f4ad286d3e15e2f262119cad3dd8f1ab0dbdea5c10d836a86afe021ce0a61cb9700ce53d1e3bfbddc537f4d8369136ceabdd416fc98efa71b2b6b0a32f4278bc7a8096dd526c07cd68e742be3efbe3b526924d607e76a3a38e27a666a563b4b369b2c1cdc3c09c0e1b9cc9408810875788b78683eb08b7127bfef87e8253a0be8dce244c19ac677a4767da9eab93d7d5902c5f5676bbb395891d996e268dda2a00b605fd3c99e3068c7344d9fd9bd3a10b2f981186f4d32f4663854e082f73ce187f269b1ee0e51200c2f5112e6e180f9f6bd7970f6546bb50267cbd04f560d1b9c743db82923ad94c6171d82a41e520777627228c6fc8c11126b4b81bc8a0b1e87fd7132f0c9f1ea40ac00a20882001c8081e7990ad0a5d741cb584c8aca350f9b9415a158310f4c5a337349c2e2035f2a6641c380ee0ca87b6797603707dcb8280fc0e50fe56cb65e46e3f8ef2f62fe862c39d830997c28ca0920ccaf80397e3e4a5a1d2e0ef8dc170cdabb1897bcff310eda88ba9a008065ca0b8bbd2c2f9715257a9fcdebfd331df3b6aeba644e0087189e36af9ddcbb36689bd5b6b37cb165d960ecdcd2c8b51b57c8c9a1ec0e0e9a4963ba8dc961d24662ead714aab04376d18e7f55f318821a8b0291fd45ddcbfc4b3e353a98956a2d5b2faa5f3b30ba93b97abffc06a964691e4cd03d8f55804775583c14faaabaaa742c65c2273d2febaca06d3b5ecb09aee0fc6c144425bba0fb7921da282f333bf039887713587cf537d1010927418cfa3645af439e4f42c6d0900aa88c9c81add5bb2a4f67ed4b27c7918ec54ca208167d249f946e2215beabea51a2bfc45c5932a5941677f9de052978de815147070918325cc709df8fa5161ff858a09fe5eb748545d0a65f3d3fb72cfcb20a08083c8aace40265a309bbf1262bbf1ccdbea269f959121aea9e942bc1df3c9635a6a937a38d983b86f4c473a4abfae760a34e4a334ff3a9572c7b38e1fa06b69e9a27bff86e722da00c2db42f7b2e13ced8002c5374537f733f72bdba61e27c39aa4903feb436ec6a09897b5cac49d26f9a68486fa5a34a7ad88f4f451f934d94c55d825a548c163f3d19f2991868af148ca0bd719dbe664519a67c7169848bd13537d203322a068ac80bcf26c5db60bdb49632515b7c5c0b008a28b946f5bb23724867ef15ccbf0cab493fa8aee50720695255cd1dcb3dbc0d8907909ff740cb1835a0757c825edbd55f2447877888418cbd3fcfe129678e6f1a5e2820906611c2da3d503a0962cdd587a76b5c245a4cd57aaaefc398f6ac5d54a3d985abaf43cd2e368086e279dcdb85e85d6ed0dce3335527683d9ca3f7446360207585106f3a669d5a8b139496c1acc482e694691b3790c429bbc526f66e9c342608896bb37525259ebdc1d9cde6c3829395f470209a652123d52eba8c39f07874c01d738a44558b726c2513389bf13bd34101af70a880bfa10bc9383d6b7e71e2ef80a47e6e7a531a0683210bc9f0b15af54e7a4d1ed9387fcb382f33effdbd757d016858a98242d313bd2a189cb2d81be71953eeb5719616e6561bb34f105b4391b58102933e3ca2d82e59e2c3486abbdc5683c7f457657f359628f9961a4b6b6b534fcd2b4234c49aed9ceb761b6bc7f3169bf19fcc23d8d4c23590e23e6ec39f97d40da4166ddf007ee78bc0b173ceb17b2d5bf3c810ea24ab7be4f92f3431530d380055b1925053fea2ea9c7d6865bcf618d43f0538e45c15cf5c3e4b8985d193cd649c19eaa1c4d4c8136222277f1ab38cbc61a6e6205b94b527403b3a88c1fd318ef107449a1c72c8c63b17576193d2f88138e40eb184a9931860064608463064b785f0125b406723ab11d55ffd3f4a8844d4d12e16147f7c8c1e3a7831b4d7189bbd8ae632a29ebf0555c135f335b7220c774ca75924d02228fb329c218bbbef00b56b5b620a7c7682dc251b97a315be732b554d9ac6dc2c7f46e3eecd9cff61e60ce6092bbe76f6d81485c8ee6f808d6c02282e6bbc4322cddb32871e9fc43748667d8c5853f3c2c4eae8460185e2a19fb9e0a504d26e81ed3fd0922854012ba02d6865db2c689a122ed41f1741e9921983a8855acf06d5300b34bc39b043ffca29b81e25edfae39dacec403172b6bce7875de1c0b912e8ecfb539625cff2b782c28a93b14e02e173bc1d01f9ebe2e549783014f02c89c303f9d7be035e10f54e220eaa1a6ef716def2bfd5f0d0aebc2cb97e885053e8b0d8fd1eb8f16f07a761bbde12463cee18af58c7e03c118d8fbfa43ce916838a627c6a26d97eaca616bfadb9702ffa54dc36c4205f2176521b151ab12a3538dfa491b91f888b0b029845167b0379a994e103ac0ffa8d03af51df4a5da7b406019d69836185e65e5bd378ec69611172cae0414fd41560947da066fac20431594e6a9ab9f0c01fc4907cc524a8bc3792be2e0ed895496b9da663df374c258d9c5f68852b0a6c6b8a0293ff716b1b825d93a3da78138a0f8d67f05d759653b4963a2817cadc481871a5417d4c60082e4a5de8596677a75741d180c953091e3c59b3ce1bcb8646aba62043f876f735bd29bfeaf472a06d4f1876636c07d7e19fc96cfd8ec66b172dba7f358b831eff0086277222012910e04329dfbd1e48e844106881c14cc8c03a794b2a87f22e39abec124045b1fab94816a3ab24f7eacd3feea92d7bdd07504afc6b400196f45c23fa5d08710a8e2c05eb30bd6485662e668018028fc69963baa6bd8ffe4440efa378456f5c91a8d8d7d141c96f5a7bc992412593703604e76694189e237152ef17c48210fa495be0f0d1f6b66e7c32df141ba47cdde9ef78f86848ff02b5a380bbeb886e5e385d331539361e2cf317880977874004d67b831d021c04ebbc1baa0bd5b096bcc27054486844c8912941a3b76172983facf588142e16eb8d2314a20c924678e597bac165ae7d9ef0edea35c5fde58287d5f71c4b4a4afa2072502f20877f6e9a132282da541652adace438bf1b5b71ad6040f67631bafe5ccd21e0728d948557b0999205691dffdafba8b50779d312b839fbb2006f055d876a1a89965c5d18b0de719c4ada1f92ef0b42d0999686a59f2919d1b3c7c2a7fb61accbc02149b2049d435a272adf9674d3cc88cd7b3f5fa12b600459a978b1dd8045b2baee1dd78fbbd39c2419303f55b93aca0567ea14907b9e410f5a8a4a584029406c160d9e7da0591218d2a20655cb8d73cb1190f9aae9f94ca09587120123c0f075c1d8043c6c6366607082b1f8ae68687493d91a06e33d2b5b0357bdc3959ef27dcc24ce3dd0fa47ed77503e20127c3bffb0fedd93ae1a6cd7c16b84f7dcdd4dbe80dd73928e2fbbb7b0655eea2dfeb205cb297be091a8712bb0eba545ba062b8ad3db71a22eae2039f1fd45e38e95641c52cb43a389469c9d425da55412db65f2cc8ec2a32a665b8fbdf24473aa06b1db8442f8d598f34ff49fe9f584ad89967a76c9fcad6683da86d511dc3bf706f4dc6d8a99a733333300984980de9854301c60193ef688b10169cfbe2c28f42e9f8c14e05b71a8ba05802b5bf2c76494e14f41b47c49f1cebaea71aede63be086d23ba14015b506fdfd2d5fe6254418d62eef81b5f97b48f0fb56d3afffbf72accc616fb1127435d91d6ac871d3c62672259fb4e99916b328a1a3fc04c1ed6362cf3164a2235473165b7d54c95f3bb934e384c46774224c9dba314d00692b0fa52c0630e5047c98d02512ffd818b86f9fa1f56e225d77a3d8b98248bf1851524ec165e3ef272bd4e57d6cf01dc9cc283a56d1b3c442b81ac70287d3319e9b5caaf139636c80341513953f97ee3fec5adee742cbc539612c427b0ef9a9da1ea2e981485046ba0e7acb7b6991baaee4a63f2f539175fdeff05b05ca764c7b703853d34891cf424c7ea9623172e07d4445882f20a49616bfd3e6555a2fbbf6085b3cda5598a94eaef6771a0af25f5f07f3cb82c16b317102ab97274cd7b911b50bf1795bd00f1acd3b24fea8f73b47000d34ead1b7ba24cf941866a50bbe8809c53c69bd9f1e196b49b0646ba6d3a1df871d05a32ae993f2a78838a37a656aa66e7fac0c7738d8ef2e7a2761853e98416ee4041d0c5c6245c866d909b5684d929d175b3d04f861ce20dbead798fbcf638ac4c7a9a353d587cc04ff5f86c30981da89521b1494bac47b7e2bca558a9c412d89c3bfd7caf42b51c05a973f0158e404df0138b926850a1589abf1c93d6576386a74f9c48885b5a274386584b5c29eafa9bc5915d1c25fc36a8caeb8ef313e715cc7559c4968a94964f6171d392bb86fa225a88081810fde4947be40af5a5714f203ea50a3730edcafc70a0f81f217a3320d19ec37336a14f4c1c761cca68ed8121d186b113654b81f8d3f2e40b221c50f6d9083f27eeb729ae879b775aad919f6a39039d9ae9a1a52617b69a4ca446a6d1c048d9c1b41e51ed3a10cb11faf5b7762f23f53ba65d4337af804e5a554f6f5f6392461f6e724751ec57b8c558380f7901ecf0988552f90bcff6903976e0e42cbb4c555f169efb4f477b93566b21231b7eefeaab774867125e276cbe7974c38177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootyast2-installation-4.1.50-lp151.2.15.1.src.rpmapplication()application(YaST2/installation.desktop)application(YaST2/release_notes.desktop)application(YaST2/upgrade.desktop)yast2-installation@ @      /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/shaugeas-lensescoreutilscoreutilsdiffutilsfillupgrepgzipinitvioconsiproute2pciutilsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)systemdsystemdsystemdsystemdtaryast2yast2-countryyast2-country-datayast2-networkyast2-packageryast2-pkg-bindingsyast2-proxyyast2-ruby-bindingsyast2-services-manageryast2-storage-ngyast2-users3.0.4-14.6.0-14.0-15.2-14.1.423.3.12.16.114.0.134.1.273.1.334.0.63.2.14.1.873.2.8yast2yast2-bootloaderyast2-coreyast2-mouseyast2-pkg-bindingsyast2-registrationyast2-ycp-ui-bindings2.18.63.3.12.17.102.18.02.17.253.2.33.1.74.14.1^U@^^2@]@\g\\B@\@\Y@\\@\~d\~d\y\eX@\T4\-@\\@\ `\ @[=@[H[@[_[k@[<@[[@[Ѱ@[ @[[#@[#@[#@[[Q@[@[s["@[@[~[}P@[z@[b@[b@[Y[Y[<[4[3|@[d@[[[Z@Z@Z4@Z@ZZ@ZZZmZmZ@Z؄ZZԐ@ZԐ@Z̧@Za@Za@ZlZ@ZZ@Z@Z@ZkZ@ZH@ZH@Z@Z|;ZyZtRZtRZqZp^@Zk@Ze@ZaZ`@ZV@Z:PZ7Z7Z1@Z/Z.s@Z*~Z%8ZZYYY@Y+@Y@Y@YMYܶ@Y@YA@YA@YA@YY@YzYYY@@YKY@YYY@YYYYYYYYV@YaYYx@YTYTYP@YGY0Y.@Y.@Y, @Y"Y]YYXX@X@XXXXX~@X,X@XƉXCX@XO@XO@XBX@X@XpXX6@X6@XX@X@XX~@X|X|Xn5@XQ4@XGX43@X.@X-X)@X%X%X2@X@XWw@Ww@W@VɦV`Vy;@VwVjV^@VV@VUV<@V@V @UU6@UUXŬUUĝUU(U4@U@U@U3@U3@Ua@UmUg@U\w@U:0@U4@U/@U/@UUUF@T-@TTD@TԬT Tи@T T}T,@T,@TTTTT5TLTuTeTXTWn@TSyTR(@David Diaz Knut Anderssen Steffen Winterfeldt Steffen Winterfeldt schubi@suse.desnwint@suse.comsnwint@suse.comDavid Díaz José Iván López González Ladislav Slezák jreidinger@suse.comJosé Iván López González mvidner@suse.commvidner@suse.comlslezak@suse.czschubi@suse.dejreidinger@suse.comjlopez@suse.comJosef Reidinger lslezak@suse.czlslezak@suse.czStasiek Michalski Stefan Hundhammer igonzalezsosa@suse.comschubi@suse.deschubi@suse.deschubi@suse.dejreidinger@suse.comschubi@suse.delslezak@suse.czschubi@suse.deschubi@suse.dedgonzalez@suse.comdgonzalez@suse.comschubi@suse.dedgonzalez@suse.comlslezak@suse.czaschnell@suse.comdgonzalez@suse.comdgonzalez@suse.comjreidinger@suse.comdgonzalez@suse.comhellcp@opensuse.orgschubi@suse.deschubi@suse.deknut.anderssen@suse.comknut.anderssen@suse.comschubi@suse.deknut.anderssen@suse.comschubi@suse.deaschnell@suse.comknut.anderssen@suse.comlslezak@suse.czjreidinger@suse.comjreidinger@suse.comigonzalezsosa@suse.comjlopez@suse.comigonzalezsosa@suse.comaschnell@suse.comlslezak@suse.czshundhammer@suse.comigonzalezsosa@suse.comlslezak@suse.czjreidinger@suse.comigonzalezsosa@suse.commvidner@suse.comlslezak@suse.czigonzalezsosa@suse.commvidner@suse.comjreidinger@suse.comschubi@suse.dejlopez@suse.commvidner@suse.comjlopez@suse.commvidner@suse.commvidner@suse.comknut.anderssen@suse.comigonzalezsosa@suse.comschubi@suse.deigonzalezsosa@suse.comshundhammer@suse.comjreidinger@suse.comancor@suse.comjreidinger@suse.comknut.anderssen@suse.comschubi@suse.dejreidinger@suse.comigonzalezsosa@suse.comschubi@suse.delslezak@suse.czjreidinger@suse.comancor@suse.comjsrain@suse.czqzhao@suse.comigonzalezsosa@suse.comschubi@suse.deschubi@suse.degsouza@suse.comjreidinger@suse.comlslezak@suse.czknut.anderssen@suse.comgsouza@suse.comigonzalezsosa@suse.comigonzalezsosa@suse.comrbrown@suse.comknut.anderssen@suse.comlocilka@suse.comigonzalezsosa@suse.comlslezak@suse.czjsrain@suse.czjreidinger@suse.comknut.anderssen@suse.comjreidinger@suse.comschubi@suse.deigonzalezsosa@suse.comjreidinger@suse.comigonzalezsosa@suse.comancor@suse.comknut.anderssen@suse.comjreidinger@suse.comlslezak@suse.czigonzalezsosa@suse.comancor@suse.comigonzalezsosa@suse.comgsouza@suse.comgsouza@suse.comigonzalezsosa@suse.comigonzalezsosa@suse.comshundhammer@suse.deancor@suse.comaschnell@suse.comschubi@suse.deancor@suse.comancor@suse.comancor@suse.comjreidinger@suse.comlslezak@suse.comjreidinger@suse.comjreidinger@suse.comjreidinger@suse.comjreidinger@suse.comshundhammer@suse.delslezak@suse.czschubi@suse.deknut.anderssen@suse.comlslezak@suse.czknut.anderssen@suse.comlslezak@suse.czknut.anderssen@suse.comigonzalezsosa@suse.comgsouza@suse.comigonzalezsosa@suse.comjreidinger@suse.comschubi@suse.demvidner@suse.comigonzalezsosa@suse.comlslezak@suse.czancor@suse.commvidner@suse.comigonzalezsosa@suse.comigonzalezsosa@suse.comigonzalezsosa@suse.comjreidinger@suse.commvidner@suse.czmfilka@suse.commfilka@suse.comjreidinger@suse.comigonzalezsosa@suse.comkanderssen@suse.comjsrain@suse.czschubi@suse.dekanderssen@suse.comjreidinger@suse.comjreidinger@suse.commvidner@suse.comigonzalezsosa@suse.commfilka@suse.comigonzalezsosa@suse.comjreidinger@suse.commfilka@suse.comschubi@suse.dejreidinger@suse.comigonzalezsosa@suse.comjreidinger@suse.comjreidinger@suse.comshundhammer@suse.dejreidinger@suse.comschubi@suse.dejreidinger@suse.comlslezak@suse.czshundhammer@suse.dejreidinger@suse.comigonzalezsosa@suse.comigonzalezsosa@suse.comschubi@suse.deigonzalezsosa@suse.comschubi@suse.dejreidinger@suse.comjreidinger@suse.comlslezak@suse.czlslezak@suse.czcwh@suse.comjreidinger@suse.comjreidinger@suse.comkanderssen@suse.comlocilka@suse.comigonzalezsosa@suse.comigonzalezsosa@suse.comlocilka@suse.comancor@suse.comigonzalezsosa@suse.comjreidinger@suse.comlslezak@suse.czlslezak@suse.czschubi@suse.dejreidinger@suse.comlslezak@suse.czigonzalezsosa@suse.comsnwint@suse.deigonzalezsosa@suse.comschubi@suse.deigonzalezsosa@suse.comigonzalezsosa@suse.comlslezak@suse.czkanderssen@suse.comkanderssen@suse.comlslezak@suse.czancor@suse.comancor@suse.comlslezak@suse.czschubi@suse.dejsrain@suse.czancor@suse.comknut.anderssen@suse.comigonzalezsosa@suse.comlslezak@suse.czmfilka@suse.comjreidinger@suse.comigonzalezsosa@suse.comcwh@suse.comknut.anderssen@suse.commvidner@suse.comigonzalezsosa@suse.commvidner@suse.commfilka@suse.comancor@suse.commfilka@suse.comcwh@suse.comschubi@suse.dejsrain@suse.czjsrain@suse.czmvidner@suse.comjreidinger@suse.comlslezak@suse.czancor@suse.comancor@suse.comancor@suse.comjsrain@suse.czlocilka@suse.comigonzalezsosa@suse.comschubi@suse.deschubi@suse.deschubi@suse.deigonzalezsosa@suse.comjsrain@suse.czjsrain@suse.czmvidner@suse.comshundhammer@suse.delocilka@suse.comlslezak@suse.czjreidinger@suse.comlocilka@suse.comjreidinger@suse.comigonzalezsosa@suse.comlslezak@suse.czancor@suse.comschubi@suse.delocilka@suse.comjreidinger@suse.comjreidinger@suse.comjreidinger@suse.comjreidinger@suse.comaschnell@suse.decwh@suse.comlslezak@suse.czancor@suse.comlslezak@suse.czschubi@suse.dejsrain@suse.czjsuchome@suse.czjreidinger@suse.comjreidinger@suse.comjreidinger@suse.comjsrain@suse.czjreidinger@suse.comlslezak@suse.czaschnell@suse.dejreidinger@suse.comancor@suse.comancor@suse.comjreidinger@suse.comschubi@suse.dejreidinger@suse.comlslezak@suse.cz- Restore missing icons for ssh import and image deployment auto clients (bsc#1168123). - 4.1.50- Force the use of en_US.UTF-8 when running firstboot or the AutoYaST Second Stage with 'POSIX' or 'C as RC_LANG (bsc#1169017) - 4.1.49- don't start getty on hvc0 & ttyAMA0 before Yast2-Firstboot (bsc#1157233) - 4.1.48- do NOT remove /mnt/run, it's a mounted directory (bsc#1149011) - require yast2-storage-ng >= 4.1.87 (bsc#1136463) - 4.1.47- Downloading files: Remounting CD with bind option correctly if the CD has already been mounted (bsc#1132915). - 4.1.46- revert SSH textmode patches (bsc#1129375, bsc#1047470) - 4.1.45- ensure that installation with VNC + textmode still installs via VNC (bsc#1129073) - 4.1.44- Update the hard-coded fallback path for licenses directory (fate#324053, jsc#SLE-4173) - 4.1.43- Fix patterns and packages selection when going back to the system role selection (bsc#1126517). - 4.1.42- Retranslate also the side bar steps when changing the language (bsc#1128153) - 4.1.41- Do not change polkit default priviledges during upgrade (bsc#1120720) - 4.1.40- Do not write the displaymanager value (part of bsc#1125040). - 4.1.39- Respect Textmode=1 when installing over SSH with a DISPLAY (bsc#1047470) - 4.1.38- copy_files_finish: ensure that /mnt/etc/YaST2 exists (bsc#1127182). - 4.1.37- Save the used repositories at the end of installation to not offer the driver packages again (bsc#953522) - 4.1.36- Copying SSH keys from a privious installation into the new one: Set the right file permissions for the SSH deamon (bnc#1122303). - 4.1.35- remove no longer used SCR agents without replacement: sysconfig.boot, sysconfig.fam, etc.passwd and install_inf workarounds for aliases and options - remove no longer used clients: - inst_ask_online_update replaced by registration for SLE and online_repos for openSUSE. - inst_check_autoinst_mode dropped without replacement. Floppy support was dropped. - inst_scenarios replaced by system roles. - update_wizard_steps replaced by direct call of code without client- Hardening commands execution (part of bsc#1118291). - Replace backticks by Yast::Execute. - 4.1.34- always use absolute path to binaries (bsc#1118291) - properly escape shell arguments (bsc#1118291) - 4.1.33- More aggresive inst-sys cleaner, clean the libzypp cache when running in graphical mode with less than 1GB RAM (in text mode keep the current limit 640MB), this avoids crashes on low memory systems (bsc#1118643) - Also adapted the computing the default y2log size - use smaller size in low memory systems, on the other hand limit the maximum size to avoid huge log files - 4.1.32- Improved saving y2logs during installation to use the /mnt/tmp space instead of the RAM disk to avoid possible crash (out of memory) (bsc#1118643) - 4.1.31- Provide icon with module (boo#1109310) - 4.1.30- Documented new control.xml global parameter enable_local_users (Fate#326447) - Improved English in the documentation of control.xml - 4.1.29- Prefer fbiterm whenever is possible for textmode installation (fate#325746). - 4.1.28- Dialog complex_welcome: Translate the help button if the language has been changed (bsc#1098571). - 4.1.27- Moving driver_update2_finish call just before unmounting system. (bnc#967103). - 4.1.26- Writing security settings in first AY installation stage. So other modules (e.g. users) can rely on these settings now. (bnc#1112769) - 4.1.25- extra_urls: compare unexpanded urls, so two identical repositories with variables are detected (bsc#1090193) - 4.1.24- Added save_y2logs client. (fate#325737) - 4.1.23- Remember the selected role (related to FATE#325834) - 4.1.22- Saving y2logs after the installation has been finished. (fate#325737) - 4.1.21- Fixed path to license file. . Build error in fate#324713 - 4.1.20- Skip the roles' dialog selection when there is only one available (fate#324713) - 4.1.19- Fix syntax error (bsc#1109659) - 4.1.18- Updated docu for add_on_products.xml: Added tag "confirm_license" to handle Add-On-products licenses which will be added while installation. (bsc#1105758) - 4.1.17- Avoid to restore old backups when upgrade fails (bsc#1097297) - 4.1.16- Copy the selected packages from the self-update repository to an additional add-on repository, allow updating the installation workflow from the self-update repository (bsc#1101016) - 4.1.15- do not translate snapshot description (bsc#1092757) - 4.1.14- Use /media.1/media instead the /media.1/build (bsc#1062297) - 4.1.13- Add missing help for disks activation dialog (bsc#1098563) - 4.1.12- Improve help text for system roles (bsc#1046619) - 4.1.11- Update calls to YaST2 systemd classes (related to fate#319428) - 4.1.10- Add an option to have a sidebar (boo#1088785) - 4.1.9- Switched license in spec file from SPDX2 to SPDX3 format. - Changed dir of COPYING file.- Disable display of status messages on the console (bsc#1099505). - 4.1.8- Don not print errors if plymouth is not installed (bsc#1101879)- Do not crash if /etc/os-release is a directory (bsc#1097661) - 4.1.7- Delete unneeded content of /mnt/run after installation/update. (bsc#1071745) - 4.1.6- Fixed returned value calling copy_files_finish when some ssh file exist (bsc#1099104). - 4.1.5- Added additional searchkeys to desktop file (fate#321043). - 4.1.4- adapted testsuite to change in yast2-storage-ng (bsc#1073633) - 4.1.3- Firstboot.service: Shutdown on failure preventing the service to hang because of a systemd dependency when trying to call halt directly from the firsboot clients (bsc#1095253) - 4.1.2- Fixed possibly broken system after aborting upgrade running over SSH (caused by a partially finished rollback) (bsc#1089643)- fix calling copy_files_finish to not crash (related to bsc#1095323) - 4.1.1- Fix crash caused by previous fix when multipath is not available (bsc#1095323) - Copy active_devices.txt for s390 to prevent blocking of important devices when cio_ignore is active (bsc#1095033) - 4.1.0- Fix installation mode detection (related to bsc#1089547). - 4.0.61- Do not try to set read-only property to default BTRFS subvolume if the filesystem already existed on disk (needed for bsc#1091047). - 4.0.60- Log a warning when umounting a filesystem fails after installation/upgrade (related to bsc#1090018). - 4.0.59- disable mdadm auto assembly for installation (bsc#1090690) - 4.0.58- Keep the selected product in the desktop selection dialog (bsc#1088660) - 4.0.57- Copy new /var/log/YaST2/storage-inst/ subdir to target at the end of the installation (part of fate #318196) - 4.0.56- Do not warn too soon about missing disks during autoinstallation (bsc#1091033) - 4.0.55- Better handle the restore scripts when YaST is aborted or crashes (bsc#1089643) - Delete the .repo files accidentally saved into inst-sys (fixes problems when restarting YaST after abort or crash) - 4.0.54- fix regression to show again iscsi configuration for disk-less setup (bsc#1090753) - 4.0.53- Fix text direction for RTL languages in the installer settings screen (bsc#1089846). - 4.0.52- Fixed "vnc.sh: /root/.profile: No such file or directory" (bsc#1089623). - 4.0.51- Log more details when unmounting the target partition fails (to debug bsc#1090018) - 4.0.50- Installer Updates does not overwrite Driver Updates (bsc#1088685). - 4.0.49- Don't hard-code the role text color (bsc#1087399). - 4.0.48- Ensure proper patterns are selected when going back to system role and switch to different role (bsc#1088883) - 4.0.47- Set Add-On products for installation again after the base product has been selected (bnc#1086846). - 4.0.46- Use AbortException when user aborts (part of fate#318196). - 4.0.45- Start web VNC for the installation process (bsc#1078785) - 4.0.44- Fix tests to use correct storage instance (part of fate#318196). - 4.0.43- System roles: make the radio buttons match other dialogs, using images (bsc#1084674) - 4.0.42- Make many system roles fit in the dialog (using a RichText widget, bsc#1084674) - 4.0.41- Self-Update report errors when the self_update is enabled explicitly by linuxrc or using an AutoYaST profile. (bsc#1084820) - 4.0.40- Set the 'ro' property on Btrfs filesystem when using an AutoYaST profile which sets the 'ro' option explicitly (related to bsc#1079000). - 4.0.39- complex_welcome: Translate license text if the language has been changed (bnc#1077733). - 4.0.38- Set Btrfs 'ro' property at the end of the installation when needed (bsc#1079000) - 4.0.37- Pass args to parent class constructor (bsc#1083500) - 4.0.36- fix marking texts for translation (bsc#1081361, bsc#1083015) - 4.0.35- More gentle handling of aborts caused by hardware probing errors (bsc#1079228, bsc#1079817, bsc#1063059, bsc#1080554, bsc#1076776, bsc#1070459 and some others). - Re-enable the old fix for bsc#298049 (abort button during ongoing hardware probing). - Cleanup of dead code - 4.0.34- Ensure previous role selection is cleared when doing desktop selection (bsc#1078961) - 4.0.33- Startup scripts: Replaced xinetd by xvnc.socket (fate#323373) - Revert changes added in 4.0.29 bringing back the enablement of the xvnc.socket during the first stage if Linuxrc.vnc is set. (bnc#1077236) - 4.0.32- Added requirement iproute2 to spec file. This is needed by the VNC AutoYaST installation in the second stage. (Follow up of bnc#1077236) - 4.0.31- do not crash if no role is selected (bsc#1078809) - 4.0.30- Provides the current language when asking for the product's release notes to the yast2.rpm API (related to bsc#1079045). - 4.0.29- Do not enable xvnc.socket for second installation stage. Xvnc will be started by a direct call in vnc.sh. (bnc#1077236) - 4.0.28- Reimplemented finding package upgrades to require less memory (related to bsc#1076768) - 4.0.27- Start performing real installation with as much memory as possible (bsc#1076768) - 4.0.26- Read the root_subvolume_read_only setting from its new location (moved by libstorage-ng) in the control file (boo#1077047). - 4.0.25- save keyboard settings before console settings (bsc#1076798) - 4.0.24- Update YaST2-Firstboot.service: Depreciate plymouth --wait, add conflict to plymouth start service. - Update YaST2-Second-Stage.service: Depreciate plymouth deactivate command and add conflict to plymouth start service. For that will block TTY device activation(bsc#1042554). - 4.0.23- Fix initialization to copy the profile to /tmp/profile again (bsc#1075334) - 4.0.22- Fixed popup layout for bnc#1061754. - 4.0.21- Warn the user if the infrastructure is not available for running the second stage (bnc#1061754) - 4.0.20- Removal of SYSTEMCTL_OPTIONS environment variable (fate#323393) - 4.0.19- drop copy_to_system support (FATE#320873) - 4.0.18- Log the system name at start to see which system is running in the inst-sys (for easier debugging)- Replaced Remote module by the new y2remote/remote class (bsc#1070582) - Updated yast2-network dependency. - 4.0.17- Filter out modules extensions based on product, using white list approach (fate#324198) - 4.0.16- Break autoyast2 and yast2-installation dependency cycle (bsc#1070996) - 4.0.15- Do not ignore start_multipath setting (bsc#1070343). - 4.0.14- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468).- Unify firewall proposals and finish clients replacing firewall_stage1_finish by firewall_finish. (fate#323460) - 4.0.13- Cleanup old registration attempts before starting Installer. This is needed for restarted installation after it has been aborted earlier (bsc#1065167). - 4.0.12- Always show the license agreement on single product media, even during upgrade (bsc#1065172) - 4.0.11- Less eager inst-sys cleanup, libzypp actually needs some cached files during package installation, remove only the white listed known files (bsc#1063459) - 4.0.10- umount efivars properly (bsc#1063063) - 4.0.9- Write polkit settings even if no desktop is selected (bsc#1062788) - 4.0.8- Adapted complex welcome client allowing to continue with the installation when there are no products available. (bsc#1059070) - 4.0.7- Dropped call of dasd_reload which caused renumbering of disks and user got confused.(FATE#318138) - 4.0.6- AY: Warn the user if an remote installation is not completely possible because there are not all needed packages availble in the installed system. (bnc#1055279, bnc#1058071) - 4.0.5- Add support to read release notes from an RPM in the repository (fate#323273) - 4.0.4- Add support for system roles ordering (related to bsc#1049297)- Do not allow changing the selected base product on an already registered system (bsc#1060252)- Re-activated the step to search for system files (users and SSH keys) in existing systems. It was temporarily disabled during the migration to storage-ng (part of fate#323837). - 4.0.3- Removed obsolete inst_info client which is not used anymore. (bsc#1047060) - 4.0.2- Adapt to new yast2-country changes (needed for FATE#323837) - 4.0.1- Download release notes only for the selected products (if any product is already selected) (bsc#1056872) - 4.0.0- Fix license confirmation handling on single product medias (fate#322276) - 3.3.13- Configure Snapper at the end of installation if requested (part of fate#318196). - 3.3.12- On multi-product installation medias, the product selection happens in the welcome screen (fate#322276) - 3.3.11- Skip complex welcome module in auto mode. - 3.3.10- Show README.BETA if it exists (bsc#1047060) - 3.3.9- Show the product's license from libzypp in the welcome screen (FATE#322276) - 3.3.8- Replace Installation::Product and Installation::ProductReader classes by Y2Packager::Product and Y2Packager::ProductReader (related to FATE#322276) - 3.3.7- Merged storage-ng branch to master (fate#318196) - Note: all changes below with this date belong to the merge. - 3.3.6- storage-ng: adapted to the new Y2Storage::StorageManager API and improved probing and activation of storage devices.- adapted inst_disks_activate.rb to storage-ng- storage-ng: Taking /usr/bin/findmnt in order to evaluate mount points. Floppy support removed.- storage-ng: use the new library for storage hardware probing (devicegraph) instead of the old one (targetmap)- storage-ng: removed dependency from (old) yast2-storage, even if it breaks some functionality.- storage-ng: commented installation-related code relying on the old yast2-storage- Fix crash when going back from product selection (FATE#323450) - 3.3.5- Allow using base products from additional repositories (FATE#323450) - 3.3.4- New client for product selection (FATE#323450) - 3.3.3- drop reading /content (FATE#322386) - 3.3.2- openSUSE only: reword title of desktop selection dialog (boo#1045180) - 3.3.1- when custom role is selected in desktop selection keep default value in /etc/sysconfig/windowmanager (bsc#1030873) - 3.3.0- Allow different mount point for home partition (Fate#323532) - 3.2.46- install the yast2-registration package only in SLE (bsc#1043122) - 3.2.45- "custom" roles: Initialize pattern selection screen with settings defined in the control files. (bnc#1031295) - 3.2.44- Do not lose the desktop selection when the online repositories is pressed. (bsc#1033594) - Do not allow to continue without desktop selection. (bsc#1040884) - 3.2.43- Fixed path to the "adddir" command (it is /sbin instead of /etc) (bsc#1041882) - 3.2.42- Added requirement of 'cwm/widget' in hiding_place as consequence of changes made in CWM. (boo#1039901). - 3.2.41- Fixed push button label ("Configure Online Repositories") (bsc#1039988) - 3.2.40- Don't crash if the regurl provided by linuxrc is invalid using the one provided by the control file as fallback (bsc#1035908). - 3.2.39- Move CaaSP specific code to yast2-caasp package (bsc#1036838) - 3.2.38- bsc#1031840 - changed CheckFreeSpaceNow to use LANG=en_US.UTF-8- Add a NTP Servers settings to the overview dialog (FATE#323249)- Use y2start script instead of y2base (bsc#1027181) - 3.2.37- Added configuration-management to inst_finish. (FATE#319830) - 3.2.36- Renamed Controller Node to Administration Node (bsc#1032057). - 3.2.35- Move CaaSP specific code to yast2-caasp (bsc#1030874) - 3.2.34- Use the shared package download and extraction functionality from FATE#320772 - 3.2.33- Added some extra space to the openSUSE desktop/roles selection dialog (improvement on the fix for poo#14936, bsc#1025415). - 3.2.32- Allow proceeding with the installation after a blocking condition has been corrected in the overview dialog (bsc#1029291). - 3.2.31- Improve roles buttons distribution in textmode (related to FATE#320772) - 3.2.30- Fix desktop selection during installation (bsc#1029312) - 3.2.29- Support to add roles through addons (FATE#320772) - 3.2.28- fix crash when reading if desktop role should have default pre-selected (bsc#1025415) - 3.2.27- Really use the directory.yast file (fate#322372) - 3.2.26- fate#322328 - adapted all-in-one dialog according to comments from UX - 3.2.25- CaaSP: do not crash when used a dashed url for the controller node location (bsc#1024965) - CaaSP AY: Adapted requirements of yast2-services-manager. (FATE#321738) - bnc#1022546 - update all-in-one's subdialog (network/kdump/partitioning/...) overview when the dialog is closed and do not lose another content already entered by user. - 3.2.24- Add new desktop selection client for opensuse based on roles (poo#14936, bsc#1025415) - drop "inst_new_desktop" client which was replaced by new desktop selection one - 3.2.23- Self-Update only shows errors when a custom URL is used (bsc#1025251) - 3.2.22- CaaSP all-in-one-dialog: added validation to the controller node location field, modified label and write it to the minion master.conf file at the end of the installation (FATE#321738) - CaaSP: Display the Beta product warning at start when it is present (bsc#1016887) - Enable CaaSP specific services on the installed system (FATE#321738) - Do not crash if role contain own service to enable (bsc#1022762) - 3.2.21- Downloading release notes: Do not download them at all during AutoYaST (bsc#1009276) - Use the directory.yast file to check avilable translations (fate#322372) - 3.2.20- Downloading release notes: Do not try again if the host or the proxy cannot be resolved (bnc#1022784) - 3.2.19- Ask for installation confirmation in all-in-one dialog before proceed with it. (Fate#322328) - 3.2.18- Respect newly registered update repos in software proposal and do register. (FATE#322328)- handle proposal errors in all-in-one dialog (FATE#322328)- Added an all-in-one installation overview for CaaSP (FATE#322328)- Add an option to disable the self-update feature through the AutoYaST profile (FATE#319716) - 3.2.17- bnc#1017752 - do not show language change warning in software proposal incorrectly when language was not changed. - 3.2.16- Do not retry to download release notes if a previous attempt failed (bsc#1015794) - 3.2.15- add ability to roles to enable list of services when selected (FATE#321754)- fate#321739 - Made user's interaction possible in case of error in read-only proposal. - 3.2.14- AutoYaST after second stage: Initialize tty1 in order to remove old YaST output and to show the cursor again. (bnc#1018037) - 3.2.13Port changes from CASP1.0: - Change layout of new installation dialog according to UX team suggestion (FATE#321754) - Set root subvolume read-only if configured (Fate##321755) - Document new control.xml parameter root_subvolume_read_only - Add new installation dialog with keyboard layout and root password (FATE#321754) - Added worker role dialog (Fate#321754) - implement support for running additional dialogs for specific roles (FATE#321754) - Added description for readonly_timezone and clone_install_recommended_default flag in control-file documentation. (Fate#321754, Fate#321764) - 3.2.12- Do not crash when the proposal screen is configured through an AutoYaST profile and tabs are not being used (bsc#1013976) - 3.2.11- fix missing icon next to SSH Key Import in autoyast (bsc#988377)- add missing file causing crash (introduced with generic fix of bsc#1003682) (invisible in master since autotools support is dropped there) - 3.2.10- Documentation for new storage related parameters in control.xml (Fate#321736)- The user has to confirm when the configuration proposal contains a non-blocking error (generic fix for bsc#1003682) - 3.2.9- Fixed bug: AutoYaST hangs while running second stage. Removed network.service in the Before section of YaST2-Firstboot.service. (bnc#1007752) - 3.2.8- Do not crash if importing ssh config from system which /etc/os-release does not contain pretty name (bsc#1009492) - 3.2.7- Added support for read-only proposal modules (fate#321739) - 3.2.6- Documentation for subvolumes in control.xml (fate#321737)- more robust password filtering in y2start.log (bsc#798966) - 3.2.5- Set libyui-ncurses environment before starting the installer (related to bsc#780621) - 3.2.4- Bump version number to release fixes for bnc#999895, bsc#988700 and bnc#999953. - 3.2.3- AutoYaST upgrade: Do not override the Report module settings in the AutoYaST upgrade mode, keep the previous settings (bnc#999895).- Translate description of Snapper snapshots (bsc#988700) - 3.2.2- Fixed crash if one defined proposal module has not been found on system while switching back from "Expert" proposal. (bnc#999953) - 3.2.1- reduce time needed for building this package - 3.2.0- fix skipping of proposal returning empty hash otherwise it creates non sense proposal entry in UI (bnc#994127) - 3.1.215- Display a warning popup when the installer self-update uses the fallback URL instead of the selected SMT or the default SCC server (bsc#996179) - Do not contact the registration server in self-update when network is not running, skip self-update completely - 3.1.214- Move the installer self update step earlier in the workflow so the user entered values are not lost after restart and avoid repeating some steps again (bsc#985055) - This also fixes losing some values due to restaring YaST (bsc#993690), (bsc#992608) - Improved the self update URL handling - the boot parameter has the highest priority, always ask user when a SLP service is found, in AutoYaST mode SLP needs to be enabled in the profile - Display progress when downloading and applying the updates - 3.1.213- Replace unicode bullet char by asterisk for ncurses (bsc#995082) - 3.1.212- fix writing proposals (bnc#994127) - 3.1.211- filter out same repositories from extraurls if they differ only in trailing slash (bnc#970488) - 3.1.210- SSH Importer: Width fix to avoid cut of CheckBoxFrame Label (fate##319624) - 3.1.209- Fixed testsuite for inst_complex_welcome after implementing lazy loading in ProductLicense in yast2-packager (bsc#993285) - 3.1.208- Fix the registration screen initialization when SCC server is used during self-update (FATE#319716) - 3.1.207- Retrieve the self-update URL from the registration server (SCC/SMT) (FATE#319716) - 3.1.206- UI, UX and internal handling for the Welcome screen optimized to prevent from not showing that the license needs to be accepted (bsc#980374). - 3.1.205- If the user has skipped multipath activation, don't ask again after installer self-update (bsc#989770) - 3.1.204- Don't halt the installation if installer updates server cannot be reached when using AutoYaST (bsc#988949) - 3.1.203- simplify and speed up inst_finish client (bnc#986649) - add test suite for inst_finish client - 3.1.202- Run extra inst-sys cleanup to free more memory on systems with low memory (bsc#974601) - 3.1.201- Properly adjust the OOM killer (oom_score_adj has a different range than the original oom_adj) (bsc#974601) - 3.1.200- Added AutoYaST schema file "ssh_import". (fate#319624) - 3.1.199- Make writing of bootloader settings the last step so that other installation steps (kdump, cio-ignore) do not have to waste time repeating it (bnc#986649) - 3.1.198- Display more information in the error popup when downloading the optional installer updates fails (bsc#986091) - 3.1.197- Avoid restarting YaST when self-update repository exists but is empty (bsc#985113) - 3.1.196- call set_videomode to adjust video mode (bsc#974821) - 3.1.195- Fix architecture detection during self-update (bsc#984656) - 3.1.194- Adapt AutoYaST to support import of SSH server keys/configuration (fate#319624) - 3.1.193- Drop yast2-installation-devel-doc package (fate#320356) - 3.1.192- When importing SSH keys/configuration, only regular files will be considered (bsc#982522) - Force YaST2-Firstboot.service to run after YaST2-Second-Stage.service (bsc#980365) - 3.1.191- Move the debugger invocation code to yast2-ruby-bindings package to use the same implementation at run time (FATE#318421) - 3.1.190- System Role: centered dialog (ncurses).- More visual improvements in the SSH keys importing proposal summary based on blog entry feedback. (Fate#319624) - 3.1.189- Start the Ruby debugger at the beginning of installation when Y2DEBUGGER is set (FATE#318421) - 3.1.188- Visual improvement in the SSH keys importing proposal summary- The user is now informed about SSH keys to be reused (copied from a previous system) during system installation. - The user can select a different partition (or none) to read the keys from and whether to also copy config files. - SSH import functionality not longer depending from "copy_to_system" feature. - Fate#319624 - 3.1.187- SSH installation: handle closing the initial installation screen by the window manager close button (bsc#979499) - 3.1.186- Do not copy licenses from inst-sys to target system. Showing EULA location in the installed system. (fate#219341) - 3.1.185- get more texts for roles dialog from control file, allow a general label (bsc#974625) - 3.1.184- Always read the lists of local users in the previous system to have them available during user importing (part of fate#319624) - 3.1.183- Disk Activation step will be skipped in case of installer update success (bsc#974409) - License agreement will be remembered in case of going back after a installer update. - 3.1.182- Fix handling of license acceptance in welcome screen (bsc#975774) - 3.1.181- Run the automatic installer self update also in the AutoYaST mode, read the optional custom URL from the profile ("general" -> "self_update_url" node) (FATE#319716) - 3.1.180- bsc#956473 - improved formatting of network interfaces listing - 3.1.179- do not install perl-Bootloader-YAML on target system as it is no longer needed (FATE#317701) - 3.1.178- Automatic update during installation will use Zypper repositories instead of Driver Update Disks (FATE#319716). - 3.1.177- Moved proc_modules.scr to yast2.rpm to avoid that yast-sound depends on yast-installation (bsc#972310) - 3.1.176- Added automatic update during installation (FATE#319716) - 3.1.175- System Role: align labels (FATE#317481). - System Role: pop-up if changing the role to a different one. - 3.1.174- Moved Yast::Transfer::FileFromUrl here from yast2-update (FATE#319716). - 3.1.173- Added a System Role step in the installation (FATE#317481). - 3.1.172- bsc#956473 - network interfaces listing shows all IPv4 / IPv6 addresses per device - 3.1.171- Ensure plymouth does not interfere with X11 when executing yast2-firstboot (bsc#966874) - 3.1.170- bnc#960703 - network service setup moved into yast2-network package. - 3.1.169- Remove autoyast clone button (fate#317970) - 3.1.168- Removing network dependencies in the service files in order to prevent booting cycles in Tumbleweed. (bnc#954908) - 3.1.167- fixed function name to check zKVM hypervisor (bsc#956736) - 3.1.166- don't enforce the disk activation dialog on zKVM (bsc#956736) - 3.1.165- Ensure second stage and YaST-Firstboot don't get killed by getty when running over 2nd or 3rd serial console (bsc#935965) - 3.1.164- Do not crash in proposal client if zfcp proposal reports itself as unavailable (bnc#956745)- Save the software selection for using it later in AutoYaST when deploying installation images (bsc#956325, bsc#910728) - 3.1.163- Ensure second stage and YaST-Firstboot don't get killed by getty when running over serial console (bsc#935965) - 3.1.162- Language selection screen fixed to immediately apply the keyboard layout after changing it automatically (bsc#947969). - 3.1.161- Simplified second stage systemd unit to avoid dependencies cycles (bnc#947521 and bnc#931643). Logic moved to YaST startup scripts. - 3.1.160- fix bug preventing to finish proposal in some sutuations (bsc#944334) - 3.1.159- Fixed setting language / languages in the installation welcome screen (bsc#943746, bsc#944035) - 3.1.158- Move #second_stage_required? method to InstFunctions module to be used by AutoYaST (bnc#892091) - 3.1.157- fixed cio_ignore testcase This testcase is for bnc#941406 - 3.1.156- AutoYaST S390: handling cio_ignore Entry in order to set it (values: true/false). If it is not set cio_ignore is true. So it is backward compatible. (bnc#941406) - cio_ignore does not make sense for KVM or z/VM. So checking for KVM and z/VM and evtl. disabling cio_ignore (fate#317861). - 3.1.155- AutoYaST second stage: YaST2-Second-Stage.service Continue installation even if plymouth has returned an error. (bnc#940878) - 3.1.154- Fix release notes loading when network is not working (bsc#940648) - 3.1.153- store cio_ignore settings before installing bootloader (bsc#933177) - 3.1.152- avoid duplicating release notes for products (bsc#935599) - 3.1.151- Moved client code to lib/installation/clients to enable test coverage measurements. - 3.1.150- Cleanup for snapshots made during installation (bnc#935923) - 3.1.149- Fixed handling user request to change an installation proposal (bsc#936448) - 3.1.148- fixed menu button label in the proposal (bsc#936427) - 3.1.147- add ability to hide export button (fate#315161) - 3.1.146- Implemented triggers for installation proposal (FATE#317488). Any *_proposal client can define 'trigger' in 'MakeProposal' that defines in which circumstances it should be called again after all proposals have been called, e.g., if partitioning or software selection changes. - 3.1.145- fix crash in Upgrade when creating post upgrade snapshot (fate#317973) - 3.1.144- add a client to create a snapshot after installation/upgrade (fate#317973) - 3.1.143- set Xvnc server resolution to 96 dpi to fix broken layout in VNC installations (defaults to 75 dpi) (bsc#919456) - 3.1.142- Fixed an error preventing the VNC connection during second installation stage of AutoYaST when using VNC=1 (bnc#923901) - 3.1.141- Fixed differnt bugs in proposal overview with multiple tabs. - Checking if plymouth is available while starting second installation stage for AutoYaST. - 3.1.140- Always enable systemd startup services for Second Stage and Firstboot (bsc#924278) - 3.1.139- avoid endless loop when confirm update in proposal runner (FATE#315161) - 3.1.138- fix method missing error in proposal_runner (FATE#315161) - 3.1.137- fix dependencies in proposal_store (FATE#315161) - 3.1.136- allow proposal runner dialog to use different proposal store (FATE#315161) - 3.1.135- get list of mounts from /proc/mounts in umount_finish (for fate#318392) - 3.1.134- Delete or copy install.inf as applicable (bnc#897066) - 3.1.133- removed redundant initialization label (bnc#878538) - 3.1.132- The unit tests are now compatible with RSpec 3 (bnc#916364) - 3.1.131- support custom display number in "display_ip" boot option (bnc#913888) - 3.1.130- AutoYaST: If the system starts in multi-user mode plymouth will be quit while installation in order to ensure that installation will be finished on console 1 and the login prompt will be shown. (bnc#903682,889757,897956)- allow keyboard layout testing in language dialog (bsc#889549) - 3.1.129- explicitely set language packages for installation during the live install (bnc#904103) - 3.1.128- fix typo causing error in installation ( catched by openQA )- Properly install new Proposal* libs to fix installation- Refactored inst_proposal into Installation::ProposalRunner and Installation::ProposalStore. - 3.1.127- fixed progress bar during (live) image installation (bsc#854378)- do not stuck during copy of logs files (bnc#897091) - 3.1.126- Fix bashisms and shebangs in scripts (by "Ledest") - 3.1.125- drop check for Gtk since Gtk UI of YaST is no longer supported (bsc#908607) - 3.1.124- remove X-KDE-Library from desktop file (bnc#899104)- Added more debug information in order to track bnc#897091 - 3.1.122- Merging changes from 3.1.116.1 (SLE12 maintenance branch) - Fixed the "previously used repositories" step to work properly when reached using the back button (bnc#889791) - 3.1.121- Improve dialog asking if system should be cloned (bnc#900028) - 3.1.120- AutoYaST Second Stage: Fixed a crash in package management when running in Qt UI with libproxy1-config-kde4 package installed. (bnc#866692) - 3.1.119- do not write obsolete /etc/syconfig/boot RUN_PARALLEL key (bnc#896207) - 3.1.118- properly setup locale in installation start script to display texts and labels correctly in a texmode installation and also to translate all buttons in graphical mode (removed "testutf8" calls, it has been dropped, always set UTF-8 locale) (bnc#902411) - 3.1.117/bin/sh/bin/sh/bin/sh/bin/shyast2-installation-devel-docobs-arm-9 1590151499  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~     4.1.50-lp151.2.15.1   !"#$startupAUTHORFirst-StageF02-hwinfoF03-umountF04-languageF05-cmdlineF06-terminalF08-loggingF09-startF10-cleanupSecond-StageS02-loggingS03-autoconfS04-languageS05-configS06-servicesS07-mediumS08-startS09-cleanupYaST2.First-StageYaST2.Second-StageYaST2.callYaST2.sshcommonarch.shfunctions.shlanguage.shlogging.shmisc.shnetwork.shstage.shvnc.shhookspostFirstCallpostFirstCall.readmepostFirstStagepostFirstStage.readmepostSecondCallpostSecondCall.readmepostSecondStagepostSecondStage.readmepreFirstCallpreFirstCall.readmepreFirstStagepreFirstStage.readmepreSecondCallpreSecondCall.readmepreSecondStagepreSecondStage.readmerequiresYaST2-Firstboot.serviceYaST2-Second-Stage.servicecio_ignore_finish.rbcio_ignore_proposal.rbcomplete_workflow.rbcopy_files_finish.rbcopy_logs_finish.rbdeploy_image_auto.rbdeploying_proposal.rbdesktop_finish.rbdisintegrate_all_extensions.rbdriver_update1_finish.rbdriver_update2_finish.rbinst_addon_update_sources.rbinst_complex_welcome.rbinst_congratulate.rbinst_custom_patterns.rbinst_deploy_image.rbinst_desktop_roles.rbinst_disk_for_image.rbinst_disks_activate.rbinst_doit.rbinst_download_release_notes.rbinst_extrasources.rbinst_features.rbinst_finish.rbinst_initialization.rbinst_install_inf.rbinst_installation_options.rbinst_instsys_cleanup.rbinst_keyboard_root_password.rbinst_license.rbinst_modules_extensions.rbinst_network_check.rbinst_pre_install.rbinst_prepare_image.rbinst_prepareprogress.rbinst_product_selector.rbinst_proposal.rbinst_release_notes.rbinst_restore_settings.rbinst_rpmcopy_secondstage.rbinst_save_hardware_status.rbinst_ssh_import.rbinst_system_analysis.rbinst_system_role.rbinst_update_installer.rbinst_upgrade_urls.rbinst_welcome.rbinst_worker_continue.rbinst_worker_initial.rbinstallation.rbinstallation_settings_finish.rbkernel_finish.rbldconfig_finish.rbnetwork_finish.rbpre_umount_finish.rbprep_shrink_finish.rbproxy_finish.rbremote_finish.rbroles_finish.rbsave_config_finish.rbsave_hw_status_finish.rbsave_y2logs.rbservices_finish.rbsnapshots_finish.rbssh_import_auto.rbssh_import_proposal.rbssh_settings_finish.rbstroj-casu.rbswitch_scr_finish.rbtest_inst_client.rbtest_proposal.rbumount_finish.rbx11_finish.rbyast_inf_finish.rbinstallationinst_inc_all.rbinst_inc_first.rbinst_inc_second.rbmisc.rbinstallationcio_ignore.rbclientscopy_files_finish.rbdeploy_image_auto.rbdeploying_proposal.rbdesktop_finish.rbdisintegrate_all_extensions.rbdriver_update1_finish.rbdriver_update2_finish.rbinst_addon_update_sources.rbinst_complex_welcome.rbinst_congratulate.rbinst_deploy_image.rbinst_disk_for_image.rbinst_disks_activate.rbinst_doit.rbinst_download_release_notes.rbinst_extrasources.rbinst_features.rbinst_finish.rbinst_initialization.rbinst_install_inf.rbinst_installation_options.rbinst_instsys_cleanup_client.rbinst_keyboard_root_password.rbinst_license.rbinst_modules_extensions.rbinst_network_check.rbinst_pre_install.rbinst_prepare_image.rbinst_prepareprogress.rbinst_release_notes.rbinst_restore_settings.rbinst_rpmcopy_secondstage.rbinst_save_hardware_status.rbinst_system_analysis.rbinst_update_installer.rbinst_upgrade_urls.rbinst_welcome.rbinst_worker_continue.rbinst_worker_initial.rbinstallation.rbinstallation_settings_finish.rbkernel_finish.rbldconfig_finish.rbnetwork_finish.rbpre_umount_finish.rbproxy_finish.rbroles_finish.rbsave_config_finish.rbsave_hw_status_finish.rbsave_y2logs.rbservices_finish.rbssh_import_auto.rbssh_import_proposal.rbssh_settings_finish.rbstroj-casu.rbswitch_scr_finish.rbtest_inst_client.rbtest_proposal.rbumount_finish.rbx11_finish.rbyast_inf_finish.rbcopy_logs_finish.rbcustom_patterns.rbdialogscomplex_welcome.rbdesktop_roles.rbproduct_selection.rbregistration_url_dialog.rbssh_import.rburl_dialog.rbdriver_update.rbinstsys_cleaner.rbminimal_installation.rbprep_shrink.rbproposal_errors.rbproposal_runner.rbproposal_store.rbremote_finish_client.rbselect_system_role.rbservices.rbsnapshots_finish.rbssh_config.rbssh_config_file.rbssh_importer.rbssh_importer_presenter.rbssh_key.rbsystem_role.rbsystem_role_handlers_runner.rbsystem_role_reader.rbupdate_repositories_finder.rbupdate_repository.rbupdates_manager.rbwidgetshiding_place.rbonline_repos.rbproduct_selector.rbsystem_role_reader.rbsystem_roles_radio_buttons.rbtransferfile_from_url.rbImageInstallation.rbInstData.rbInstFunctions.rbSystemFilesCopy.rbVendor.rbdeploy_image.rncssh_import.rnccfg_windowmanager.scretc_install_inf.scrrun_df.scrinstallation.desktoprelease_notes.desktopupgrade.desktopautoinstallmodulesdeploy_image.desktopssh_import.desktopyast2-installationCONTRIBUTING.mdREADME.mdsysconfig.security-checksigiconshicolorscalableappsyast-image-deployment.svgyast-installation.svgyast-release-notes.svgyast-ssh-import.svgyast-upgrade.svgsymbolicappsyast-installation-symbolic.svgyast-release-notes-symbolic.svgyast-upgrade-symbolic.svgyast2-installationCOPYINGhooksinstallation/usr/lib/YaST2//usr/lib/YaST2/startup//usr/lib/YaST2/startup/First-Stage//usr/lib/YaST2/startup/Second-Stage//usr/lib/YaST2/startup/common//usr/lib/YaST2/startup/hooks//usr/lib/systemd/system//usr/share/YaST2/clients//usr/share/YaST2/include//usr/share/YaST2/include/installation//usr/share/YaST2/lib//usr/share/YaST2/lib/installation//usr/share/YaST2/lib/installation/clients//usr/share/YaST2/lib/installation/dialogs//usr/share/YaST2/lib/installation/widgets//usr/share/YaST2/lib/transfer//usr/share/YaST2/modules//usr/share/YaST2/schema/autoyast/rnc//usr/share/YaST2/scrconf//usr/share/applications/YaST2//usr/share//usr/share/autoinstall//usr/share/autoinstall/modules//usr/share/doc/packages//usr/share/doc/packages/yast2-installation//usr/share/fillup-templates//usr/share//usr/share/icons//usr/share/icons/hicolor//usr/share/icons/hicolor/scalable//usr/share/icons/hicolor/scalable/apps//usr/share/icons/hicolor/symbolic//usr/share/icons/hicolor/symbolic/apps//usr/share/licenses//usr/share/licenses/yast2-installation//var/lib/YaST2//var/lib/YaST2/hooks/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Maintenance:12687/openSUSE_Leap_15.1_Update_ports/5791820f0fd9f200221d44cb4f2ddcc0-yast2-installation.openSUSE_Leap_15.1_Updatedrpmxz5noarch-suse-linuxdirectoryUTF-8 Unicode textPOSIX shell script, ASCII text executableBourne-Again shell script, ASCII text executableASCII textRuby script, ASCII textRuby script, UTF-8 Unicode textSVG Scalable Vector Graphics image RRRRRRRRRRRRRRRRRRRRRPPPPPPR|ۧZ.curlrelease-notesyast2-add-onyast2-firewallyast2-online-updateyast2-updateutf-8545c5c6836bce2b1dcd04b4e522153b4d7b992e55cef45d1022bd753cef6f3f3?7zXZ !t/9 ]"k%)%Kg/9KBgxm~Q~y-ygip> lE;+Ğu|`ڄb\{u ja&dRFG`Y`}#Y'C479yvG*[th2Ub􊮳OLo}.O6pu'~#3?Wxw#i+:RY_l"gOAІl\9RR |q.uf>=mfMBɉ nũ_lWvs/&yƧ8v4 *xc:C&h$'k'3`zjn29k>K6.4o &p {C$3ƣ Z?J'|ް<:Zhu$F.Oâ%fR<%^`}@xں?Kuw@*c%-y d#udLa`PUӓ5kmdsEPvVޔIԲ\<8pn*.ڃ͈jl.G!;K}K @+}aWg­i #> k Dfp$z| _J9o}tS΀0z{~K7=蹷ob%ᅧmDP`PZ#ndңrgf6L.ԃG{0}GaC.?!;ׄXT[,S 7! Sss둙UaLqՀ%?Oܾ*5޶0[uu"3D=]NQ͹_*{o k.mFݔ#qԤ4](d2;rƢCJڿ1q](n:CNsukIpe`֔ C0J_@ }iClqcj#:4]0} HD4ѕ\ FG y i,Hg9bΙ*p+ɝz8>7$ITD)Sg*Ayjx2ľ$*$]ָ7r9`!}:Mpv++Ԭ=N*>" {[$!bU{+t5[`4YDpLǻy0}Jh5ipj³K$= {at>AĘ/U遹묰Pjo`ka%f@RHlewW}EhAaf.V¡vP%4_fW9B2Vw4ZhA=xм܌#cYl 3D ̙@J&\˅[E$%CXwwEhT󺘃5t¶dO=Qp}ÍqȔ34 "d QօmXM'=wI5Q(^= rJ]=*!T_pVPrkoD5T*WC-bɢ[:Ե3|ٱ毅=Ѱ񶊀R? &> %E! l3ϰ'!I"\:,ݬc{k1EGz0N#mZ3q|Lzz@M/D ^amķvL?Zf$e3<1QsX tLku.5575ݬ⚈TbH-:}ovtX`h-گ("s(g&Q6}Ɉ#2ί 5cm֏937{ A>vς&]YZ[f&=IXL_ Yhb`~R>(+6[6묯yX܏„S.7# r_6Bk{̸Y|+EJ6qؗTZ}n':4(1dXoo/[s)d_&aK6[jQ7և5p }/[' 3x"u\1x9ۡ x,El"Ν!@&_S\:udhz7]%Qg2a̠hF(:YN^$E/: zYI"죆[*/JQ9:Rpxz*&ԕݻdW﨑^v2o]e.Ex&jUNjt7:O#Fjߐ Nm2e2i2u- W-AMQҟ6