Skip to content

Commit 7e99de6

Browse files
authored
Refine echo statements in certificate extraction script
Updated echo statements in the script to remove emojis for clarity.
1 parent 5c42c80 commit 7e99de6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

support/system-center/scom/use-ca-certificate-on-scx-agent.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)