先帝创业未半而中道崩殂,今天下三分,益州疲弊,此诚危急存亡之秋也。然侍卫之臣不懈于内,忠志之士忘身于外者,盖追先帝之殊遇,欲报之于陛下也。诚宜开张圣听,以光先帝遗德,恢弘志士之气,不宜妄自菲薄,引喻失义,以塞忠谏之路也先帝は天下を興す志半ばにして志半ばにして崩御されました。今、天下は三つに分かれ、益州は疲弊しており、まさに存亡の危機に瀕しております。しかしながら、宮中で職務に励む臣下や、外地で身を顧みず尽力する志士たちがいるのは、ひとえに先帝から受けた格別な恩義を思い、陛下に報いようとする志があるからです。今こそ陛下には広く臣下の意見に耳を傾け、先帝の遺徳を輝かせ、志士たちの士気を高めるべきです。決して自らを卑下したり、不適切な例えを用いて忠言の道を閉ざしたりしてはなりません。鍏堝笣鍒涗笟鏈崐鑰屼腑閬撳穿娈傦紝浠婂ぉ涓嬩笁鍒嗭紝鐩婂窞鐤插紛锛屾璇氬嵄鎬ュ瓨浜′箣绉嬩篃銆傜劧渚嶅崼涔嬭嚕涓嶆噲浜庡唴锛屽繝蹇椾箣澹繕韬簬澶栬€咃紝鐩栬拷鍏堝笣涔嬫畩閬囷紝娆叉姤涔嬩簬闄涗笅涔熴€傝瘹瀹滃紑寮犲湥鍚紝浠ュ厜鍏堝笣閬楀痉锛屾仮寮樺織澹箣姘旓紝涓嶅疁濡勮嚜鑿茶杽锛屽紩鍠诲け涔夛紝浠ュ蹇犺皬涔嬭矾涔
Current path: usr/local/cpanel/scripts/
#!/usr/local/cpanel/3rdparty/bin/perl
# Copyright 2024 WebPros International, LLC
# All rights reserved.
# copyright@cpanel.net http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited.
package scripts::post_snapshot;
use cPstrict;
use Cpanel::Imports;
use Cpanel::ImagePrep ();
use Cpanel::ImagePrep::Common ();
use Cpanel::ImagePrep::Output ();
use base 'Cpanel::HelpfulScript';
use constant _OPTIONS => ('yes');
=head1 NAME
scripts/post_snapshot
=head1 SYNOPSIS
/usr/local/cpanel/scripts/post_snapshot [--yes]
B<WARNING>: This is a destructive action. If you run this script on a production
server, data loss will occur. Pass the --yes option to acknowledge that you
understand this warning. If any cPanel users are detected, further confirmation
will be required.
Updates the running system with changes needed after it starts from a snapshot,
presumably to be a different IP address and hostname.
This script will abort and exit non-zero if one or more operations attempted
during post_snapshot fail.
If this script exits nonzero when used according to the documentation, you
should consider the server potentially damaged and unusable.
=cut
exit( __PACKAGE__->new(@ARGV)->run // 0 ) unless caller;
sub run ($self) { # returns exit code, not boolean
my $common = Cpanel::ImagePrep::Common->new();
if ( !$self->getopt('yes') ) {
die $self->help('Please read the warning in the usage output before using this script.');
}
local $| = 1; # helps the test suite stream_cmd method
my ( $table, $cb ) = Cpanel::ImagePrep::Output->get_status_output_callback();
my ( $ok, $reason ) = Cpanel::ImagePrep::post_snapshot(
output_callback => $cb,
);
$common->raw_logmsg( $table->draw );
$common->regular_logmsg($reason);
if ( !$ok ) {
$common->regular_logmsg('See the output before the summary table for more detail about the failure(s).');
}
return $ok ? 0 : 1;
}
1;