mirror of https://github.com/tteck/Proxmox.git
Compare commits
2 Commits
77cb0b356d
...
bc98c1ed80
Author | SHA1 | Date |
---|---|---|
|
bc98c1ed80 | |
|
0b5d71b841 |
|
@ -4,6 +4,12 @@
|
||||||
|
|
||||||
- All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment.
|
- All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment.
|
||||||
|
|
||||||
|
## 2023-07-05
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- There have been more than 110 commits since June 18th, although not all of them are significant, with a majority focused on ensuring compatibility with Proxmox VE 8 and Debian 12.
|
||||||
|
|
||||||
## 2023-06-18
|
## 2023-06-18
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -27,16 +27,16 @@ apt-get -y install libnet-ssleay-perl libauthen-pam-perl libio-pty-perl unzip sh
|
||||||
echo -e "${CM}${CL} \r"
|
echo -e "${CM}${CL} \r"
|
||||||
|
|
||||||
echo -en "${GN} Downloading Webmin... "
|
echo -en "${GN} Downloading Webmin... "
|
||||||
wget http://prdownloads.sourceforge.net/webadmin/webmin_2.000_all.deb &>/dev/null
|
wget http://prdownloads.sourceforge.net/webadmin/webmin_2.021_all.deb &>/dev/null
|
||||||
echo -e "${CM}${CL} \r"
|
echo -e "${CM}${CL} \r"
|
||||||
|
|
||||||
echo -en "${GN} Installing Webmin... "
|
echo -en "${GN} Installing Webmin... "
|
||||||
dpkg --install webmin_2.000_all.deb &>/dev/null
|
dpkg --install webmin_2.021_all.deb &>/dev/null
|
||||||
echo -e "${CM}${CL} \r"
|
echo -e "${CM}${CL} \r"
|
||||||
|
|
||||||
echo -en "${GN} Setting Default Webmin usermame & password to root... "
|
echo -en "${GN} Setting Default Webmin usermame & password to root... "
|
||||||
/usr/share/webmin/changepass.pl /etc/webmin root root &>/dev/null
|
/usr/share/webmin/changepass.pl /etc/webmin root root &>/dev/null
|
||||||
rm -rf /root/webmin_2.000_all.deb
|
rm -rf /root/webmin_2.021_all.deb
|
||||||
echo -e "${CM}${CL} \r"
|
echo -e "${CM}${CL} \r"
|
||||||
IP=$(hostname -I | cut -f1 -d ' ')
|
IP=$(hostname -I | cut -f1 -d ' ')
|
||||||
echo -e "Successfully Installed!! Webmin should be reachable by going to https://${IP}:10000"
|
echo -e "Successfully Installed!! Webmin should be reachable by going to https://${IP}:10000"
|
||||||
|
|
Loading…
Reference in New Issue