-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure-details.sh
43 lines (29 loc) · 923 Bytes
/
configure-details.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
CONFIG_FILE="config.conf"
# Prompt for MySQL root password
read -sp "Enter MySQL root password: " mysql_root_password
echo ""
# Prompt for default admin email
read -p "Enter the default admin email of the system: " admin_email
# Prompt for user's name
read -p "Enter your name: " user_name
# Prompt for user's email ID
read -p "Enter your email ID: " user_email
# Prompt for system's root password
read -sp "Enter the system's root password: " system_root_password
echo ""
# Append the content to the config file
cat >> "$CONFIG_FILE" <<EOL
# Configuration File (appended on $(date))
# MySQL Root Password
mysql_root_password="$mysql_root_password"
# Default Admin Email
admin_email="$admin_email"
# User's Name
user_name="$user_name"
# User's Email ID
user_email="$user_email"
# System Root Password
system_root_password="$system_root_password"
EOL
echo "Configuration appended to $CONFIG_FILE."