Skip to content

Commit c0087bf

Browse files
authored
Fix interactive (#8622)
1 parent 691fc48 commit c0087bf

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

frontend/public/json/urbackupserver.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@
3535
{
3636
"text": "You probably want to drastically extend the storage space to fit whatever clients you want to back up",
3737
"type": "info"
38+
},
39+
{
40+
"text": "Directory `/opt/urbackup/backups` is set as initial backup path. Change it to your liking",
41+
"type": "info"
3842
}
3943
]
4044
}

install/urbackupserver-install.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ network_check
1414
update_os
1515

1616
msg_info "Installing Dependencies"
17-
$STD apt install -y coreutils
17+
$STD apt install -y \
18+
coreutils \
19+
debconf-utils
1820
msg_ok "Installed Dependencies"
1921

22+
2023
msg_info "Installing UrBackup Server"
2124
curl -fsSL https://download.opensuse.org/repositories/home:uroni/Debian_12/Release.key | gpg --dearmor -o /usr/share/keyrings/home-uroni.gpg
2225
cat <<EOF | sudo tee /etc/apt/sources.list.d/home-uroni.sources >/dev/null
@@ -27,6 +30,8 @@ Components:
2730
Signed-By: /usr/share/keyrings/home-uroni.gpg
2831
EOF
2932
$STD apt update
33+
mkdir -p /opt/urbackup/backups
34+
echo "urbackup-server urbackup/backuppath string /opt/urbackup/backups" | debconf-set-selections
3035
$STD apt install -y urbackup-server
3136
msg_ok "Installed UrBackup Server"
3237

0 commit comments

Comments
 (0)