mirror of https://github.com/tteck/Proxmox.git
Compare commits
No commits in common. "b4ad53a9b97c945b36d2eb85d4176dd5b3d3475e" and "222a23c618fa35122ac6bad9ce154ada2527a729" have entirely different histories.
b4ad53a9b9
...
222a23c618
|
@ -10,6 +10,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.
|
||||||
- 🚨 **The scripts in the repository will no longer provide support for Proxmox VE 7 starting from July 2024 (scripts will not execute on PVE7). Subsequent <a href='https://forum.proxmox.com/threads/proxmox-ve-support-lifecycle.35755/' target='_blank' rel='noopener noreferrer'>Proxmox VE - Support Lifecycle</a>**
|
- 🚨 **The scripts in the repository will no longer provide support for Proxmox VE 7 starting from July 2024 (scripts will not execute on PVE7). Subsequent <a href='https://forum.proxmox.com/threads/proxmox-ve-support-lifecycle.35755/' target='_blank' rel='noopener noreferrer'>Proxmox VE - Support Lifecycle</a>**
|
||||||
|
|
||||||
|
## 2024-04-02
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- **LazyLibrarian LXC**
|
||||||
|
- NEW Script
|
||||||
|
|
||||||
## 2024-04-01
|
## 2024-04-01
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
|
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2024 tteck
|
# Copyright (c) 2021-2024 tteck
|
||||||
# Author: tteck
|
# Author: MountyMapleSyrup (MountyMapleSyrup)
|
||||||
# Co-Author: MountyMapleSyrup (MountyMapleSyrup)
|
|
||||||
# License: MIT
|
# License: MIT
|
||||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||||
|
|
||||||
function header_info {
|
function header_info {
|
||||||
clear
|
clear
|
||||||
cat <<"EOF"
|
cat <<"EOF"
|
||||||
__ __ _ __ _
|
_ _ _ _ _
|
||||||
/ / ____ _____ __ __/ / (_) /_ _________ ______(_)___ _____
|
| | __ _ _____ _| | (_) |__ _ __ __ _ _ __(_) __ _ _ __
|
||||||
/ / / __ `/_ / / / / / / / / __ \/ ___/ __ `/ ___/ / __ `/ __ \
|
| | / _` |_ / | | | | | | '_ \| '__/ _` | '__| |/ _` | '_ \
|
||||||
/ /___/ /_/ / / /_/ /_/ / /___/ / /_/ / / / /_/ / / / / /_/ / / / /
|
| |__| (_| |/ /| |_| | |___| | |_) | | | (_| | | | | (_| | | | |
|
||||||
/_____/\__,_/ /___/\__, /_____/_/_.___/_/ \__,_/_/ /_/\__,_/_/ /_/
|
|_____\__,_/___|\__, |_____|_|_.__/|_| \__,_|_| |_|\__,_|_| |_|
|
||||||
/____/
|
|___/
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
header_info
|
header_info
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Copyright (c) 2021-2024 tteck
|
# Copyright (c) 2021-2024 tteck
|
||||||
# Author: tteck
|
# Author: MountyMapleSyrup (MountyMapleSyrup)
|
||||||
# Co-Author: MountyMapleSyrup (MountyMapleSyrup)
|
|
||||||
# License: MIT
|
# License: MIT
|
||||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||||
|
|
||||||
|
@ -19,15 +18,13 @@ $STD apt-get install -y curl
|
||||||
$STD apt-get install -y sudo
|
$STD apt-get install -y sudo
|
||||||
$STD apt-get install -y mc
|
$STD apt-get install -y mc
|
||||||
$STD apt-get install -y git
|
$STD apt-get install -y git
|
||||||
msg_ok "Installed Dependencies"
|
$STD apt-get install -y python3
|
||||||
|
|
||||||
msg_info "Installing Python3 Dependencies"
|
|
||||||
$STD apt-get install -y pip
|
$STD apt-get install -y pip
|
||||||
$STD apt-get install -y python3-irc
|
$STD apt-get install -y python3-irc
|
||||||
$STD pip install jaraco.stream
|
$STD pip install jaraco.stream
|
||||||
$STD pip install python-Levenshtein
|
$STD pip install python-Levenshtein
|
||||||
$STD pip install soupsieve
|
$STD pip install soupsieve
|
||||||
msg_ok "Installed Python3 Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
msg_info "Installing LazyLibrarian"
|
msg_info "Installing LazyLibrarian"
|
||||||
mkdir -p /opt/LazyLibrarian/
|
mkdir -p /opt/LazyLibrarian/
|
||||||
|
@ -50,6 +47,7 @@ Restart=on-failure
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
EOF
|
EOF
|
||||||
|
systemctl -q daemon-reload
|
||||||
systemctl enable --now -q lazylibrarian
|
systemctl enable --now -q lazylibrarian
|
||||||
msg_ok "Created Service"
|
msg_ok "Created Service"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue