mirror of https://github.com/tteck/Proxmox.git
Compare commits
No commits in common. "ab40267e90f8309d79e2165fb219ec8877e8010a" and "ac837891e057ea19c2a9196e62aed4f1f121c1ea" have entirely different histories.
ab40267e90
...
ac837891e0
|
@ -2,15 +2,6 @@
|
|||
# Change Log
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## 2023-03-25
|
||||
|
||||
### Changed
|
||||
|
||||
- **Alpine-ESPHome LXC**
|
||||
- NEW Script
|
||||
- **Alpine-Whoogle LXC**
|
||||
- NEW Script
|
||||
|
||||
## 2023-03-22
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -52,10 +52,7 @@ function default_settings() {
|
|||
}
|
||||
|
||||
function update_script() {
|
||||
if [[ ! -f /usr/bin/esphome ]]; then
|
||||
msg_error "No ${APP} Installation Found!"
|
||||
exit
|
||||
fi
|
||||
if [[ ! -f /usr/bin/esphome ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
||||
while true; do
|
||||
CHOICE=$(
|
||||
whiptail --title "SUPPORT" --menu "Select option" 11 58 1 \
|
||||
|
|
|
@ -52,10 +52,7 @@ function default_settings() {
|
|||
}
|
||||
|
||||
function update_script() {
|
||||
if [[ ! -f /usr/bin/whoogle-search ]]; then
|
||||
msg_error "No ${APP} Installation Found!"
|
||||
exit
|
||||
fi
|
||||
if [[ ! -f /usr/bin/whoogle-search ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
||||
while true; do
|
||||
CHOICE=$(
|
||||
whiptail --title "SUPPORT" --menu "Select option" 11 58 1 \
|
||||
|
|
|
@ -111,7 +111,6 @@ motd_ssh() {
|
|||
echo -e "$APPLICATION LXC provided by https://tteck.github.io/Proxmox/\n" >/etc/motd
|
||||
if [[ "${SSH_ROOT}" == "yes" ]]; then
|
||||
$STD rc-update add sshd
|
||||
sed -i "s/#PermitRootLogin prohibit-password/PermitRootLogin yes/g" /etc/ssh/sshd_config
|
||||
$STD /etc/init.d/sshd start
|
||||
fi
|
||||
}
|
||||
|
|
|
@ -452,7 +452,7 @@ EOF
|
|||
pct start "$CTID"
|
||||
msg_ok "Started LXC Container"
|
||||
if [ "$var_os" == "alpine" ]; then
|
||||
sleep 2
|
||||
sleep 5
|
||||
pct exec "$CTID" -- ash -c "apk add bash >/dev/null"
|
||||
fi
|
||||
lxc-attach -n "$CTID" -- bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/install/$var_install.sh)" || exit
|
||||
|
|
Loading…
Reference in New Issue