mirror of https://github.com/tteck/Proxmox.git
Compare commits
3 Commits
4280da6c42
...
3678d28151
Author | SHA1 | Date |
---|---|---|
|
3678d28151 | |
|
45067cfdd1 | |
|
0e60f4ac4b |
|
@ -4,6 +4,13 @@
|
||||||
|
|
||||||
- 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-09-30
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- **All Templates**
|
||||||
|
- NEW Script
|
||||||
|
|
||||||
## 2023-09-28
|
## 2023-09-28
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -23,7 +23,7 @@ var_disk="8"
|
||||||
var_cpu="2"
|
var_cpu="2"
|
||||||
var_ram="2048"
|
var_ram="2048"
|
||||||
var_os="debian"
|
var_os="debian"
|
||||||
var_version="11"
|
var_version="12"
|
||||||
variables
|
variables
|
||||||
color
|
color
|
||||||
catch_errors
|
catch_errors
|
||||||
|
|
|
@ -54,7 +54,7 @@ function update_script() {
|
||||||
header_info
|
header_info
|
||||||
if [[ ! -d /usr/lib/unifi ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
if [[ ! -d /usr/lib/unifi ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
||||||
msg_info "Updating ${APP}"
|
msg_info "Updating ${APP}"
|
||||||
apt-get update
|
apt-get update --allow-releaseinfo-change
|
||||||
apt-get install -y unifi
|
apt-get install -y unifi
|
||||||
msg_ok "Updated Successfully"
|
msg_ok "Updated Successfully"
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Reference in New Issue