PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # recover-workflow.sh # # recover workflow for Relax-and-Recover # # This file is part of Relax-and-Recover, licensed under the GNU General # Public License. Refer to the included COPYING for full text of license. WORKFLOW_recover_DESCRIPTION="recover the system" WORKFLOWS+=( recover ) function WORKFLOW_recover () { # Adapt /etc/motd in the ReaR recovery system when 'rear recover' is running # to avoid the additional 'Run "rear recover" to restore your system !' message # that only makes sense as long as 'rear recover' was not ever started, # see https://github.com/rear/rear/issues/1433 # but do not (over)-write /etc/motd on the original system # which could happen in simulation mode via 'rear -s recover' # that simulates sourcing scripts in the Source function # but this WORKFLOW_recover function call is not simulated (cf. usr/sbin/rear) # see https://github.com/rear/rear/issues/1670 # and do not (over)-write /etc/motd in the recovery system in simulation mode # which results with the above to never (over)-write /etc/motd in simulation mode: if ! is_true "$SIMULATE" ; then # In the recovery system /etc/rear-release is unique (it does not exist otherwise) # cf. init/default/050_check_rear_recover_mode.sh test -f /etc/rear-release -a -w /etc/motd && echo -e '\nWelcome to Relax-and-Recover.\n' >/etc/motd fi SourceStage "setup" SourceStage "verify" SourceStage "layout/prepare" SourceStage "layout/recreate" SourceStage "restore" SourceStage "finalize" SourceStage "wrapup" }