Compare commits

..

2 Commits

Author SHA1 Message Date
tteckster 9f32d30f6b
Update hyperion.sh
default Debian 12
2024-03-22 00:02:32 -04:00
tteckster 59dfb89db7
Update hyperion-install.sh
update install to utilize Debian 12
2024-03-22 00:01:39 -04:00
2 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ var_disk="2"
var_cpu="1" var_cpu="1"
var_ram="512" var_ram="512"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -20,13 +20,13 @@ $STD apt-get install -y mc
$STD apt-get install -y lsb-release $STD apt-get install -y lsb-release
$STD apt-get install -y gpg $STD apt-get install -y gpg
$STD apt-get install -y apt-transport-https $STD apt-get install -y apt-transport-https
$STD apt-get install -y libpython3.9 $STD apt-get install -y libpython3.11
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing Hyperion" msg_info "Installing Hyperion"
wget -qO- https://apt.hyperion-project.org/hyperion.pub.key | gpg --dearmor -o /usr/share/keyrings/hyperion.pub.gpg wget -qO- https://releases.hyperion-project.org/hyperion.pub.key | gpg --dearmor -o /usr/share/keyrings/hyperion.pub.gpg
sh -c 'echo "deb [signed-by=/usr/share/keyrings/hyperion.pub.gpg] https://apt.hyperion-project.org/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/hyperion.list' echo "deb [signed-by=/usr/share/keyrings/hyperion.pub.gpg] https://apt.releases.hyperion-project.org/ $(lsb_release -cs) main" >/etc/apt/sources.list.d/hyperion.list
$STD apt-get update $STD apt-get update
$STD apt-get install -y hyperion $STD apt-get install -y hyperion
$STD systemctl enable --now hyperion@root.service $STD systemctl enable --now hyperion@root.service