Skip to content

Commit ce610d2

Browse files
committed
Added start up message
1 parent f527bfb commit ce610d2

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/entrypoint.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
11
#!/bin/sh
2+
3+
4+
# Display a fun and helpful startup message
5+
cat << "EOF"
6+
____________________
7+
< Certbot, activate! >
8+
--------------------
9+
\ ^__^
10+
\ (oo)\_______
11+
(__)\ )\/\
12+
||----w |
13+
|| ||
14+
EOF
15+
16+
echo "🚀 Let's Get Encrypted! 🚀"
17+
echo "🌐 Domain: $CERTBOT_DOMAIN"
18+
echo "📧 Email: $CERTBOT_EMAIL"
19+
echo "🔑 Key Type: $CERTBOT_KEY_TYPE"
20+
echo "⏰ Renewal Interval: $RENEWAL_INTERVAL seconds"
21+
echo "Let's Encrypt, shall we?"
22+
echo "-----------------------------------------------------------"
23+
224
# Validate required environment variables
325
for var in CLOUDFLARE_API_TOKEN CERTBOT_DOMAIN CERTBOT_EMAIL CERTBOT_KEY_TYPE; do
426
if [ -z "$(eval echo \$$var)" ]; then

0 commit comments

Comments
 (0)