File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
support/system-center/scom Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -143,23 +143,23 @@ Use one of the following methods to configure the certificate on the the Unix/Li
143143 exit 1
144144 fi
145145
146- echo "🔐 Extracting private key..."
146+ echo "Extracting private key..."
147147 openssl pkcs12 -in "$PFX_FILE" -nocerts -out "$KEY_FILE" -nodes -passin pass:"$PFX_PASS"
148148
149- echo "📄 Extracting certificate..."
149+ echo "Extracting certificate..."
150150 openssl pkcs12 -in "$PFX_FILE" -clcerts -nokeys -out "$CERT_FILE" -passin pass:"$PFX_PASS"
151151
152- echo "🔗 Creating symbolic link..."
152+ echo "Creating symbolic link..."
153153 rm -f "$SYMLINK_FILE"
154154 ln -s "$CERT_FILE" "$SYMLINK_FILE"
155155
156- echo "🔧 Setting permissions..."
156+ echo "Setting permissions..."
157157 chmod 600 "$KEY_FILE"
158158 chmod 640 "$CERT_FILE" "$SYMLINK_FILE"
159159 chown root:omi "$CERT_FILE" "$SYMLINK_FILE"
160160 chown omi:omi "$KEY_FILE"
161161
162- echo "🔄 Restarting omid service..."
162+ echo "Restarting omid service..."
163163 systemctl restart omid
164164 ```
165165
You can’t perform that action at this time.
0 commit comments