mirror of https://github.com/tteck/Proxmox.git
Compare commits
8 Commits
222a23c618
...
b4ad53a9b9
Author | SHA1 | Date |
---|---|---|
|
b4ad53a9b9 | |
|
7ea506f221 | |
|
e79fca16ba | |
|
c81004cda3 | |
|
97fbea35c9 | |
|
1323542b95 | |
|
9a9bc560b5 | |
|
14187a7767 |
|
@ -10,13 +10,6 @@
|
|||
- 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>**
|
||||
|
||||
## 2024-04-02
|
||||
|
||||
### Changed
|
||||
|
||||
- **LazyLibrarian LXC**
|
||||
- NEW Script
|
||||
|
||||
## 2024-04-01
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
#!/usr/bin/env bash
|
||||
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: MountyMapleSyrup (MountyMapleSyrup)
|
||||
# Author: tteck
|
||||
# Co-Author: MountyMapleSyrup (MountyMapleSyrup)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
|
||||
function header_info {
|
||||
clear
|
||||
cat <<"EOF"
|
||||
_ _ _ _ _
|
||||
| | __ _ _____ _| | (_) |__ _ __ __ _ _ __(_) __ _ _ __
|
||||
| | / _` |_ / | | | | | | '_ \| '__/ _` | '__| |/ _` | '_ \
|
||||
| |__| (_| |/ /| |_| | |___| | |_) | | | (_| | | | | (_| | | | |
|
||||
|_____\__,_/___|\__, |_____|_|_.__/|_| \__,_|_| |_|\__,_|_| |_|
|
||||
|___/
|
||||
|
||||
__ __ _ __ _
|
||||
/ / ____ _____ __ __/ / (_) /_ _________ ______(_)___ _____
|
||||
/ / / __ `/_ / / / / / / / / __ \/ ___/ __ `/ ___/ / __ `/ __ \
|
||||
/ /___/ /_/ / / /_/ /_/ / /___/ / /_/ / / / /_/ / / / / /_/ / / / /
|
||||
/_____/\__,_/ /___/\__, /_____/_/_.___/_/ \__,_/_/ /_/\__,_/_/ /_/
|
||||
/____/
|
||||
EOF
|
||||
}
|
||||
header_info
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: MountyMapleSyrup (MountyMapleSyrup)
|
||||
# Author: tteck
|
||||
# Co-Author: MountyMapleSyrup (MountyMapleSyrup)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
|
||||
|
@ -18,13 +19,15 @@ $STD apt-get install -y curl
|
|||
$STD apt-get install -y sudo
|
||||
$STD apt-get install -y mc
|
||||
$STD apt-get install -y git
|
||||
$STD apt-get install -y python3
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
msg_info "Installing Python3 Dependencies"
|
||||
$STD apt-get install -y pip
|
||||
$STD apt-get install -y python3-irc
|
||||
$STD pip install jaraco.stream
|
||||
$STD pip install python-Levenshtein
|
||||
$STD pip install soupsieve
|
||||
msg_ok "Installed Dependencies"
|
||||
msg_ok "Installed Python3 Dependencies"
|
||||
|
||||
msg_info "Installing LazyLibrarian"
|
||||
mkdir -p /opt/LazyLibrarian/
|
||||
|
@ -47,7 +50,6 @@ Restart=on-failure
|
|||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
systemctl -q daemon-reload
|
||||
systemctl enable --now -q lazylibrarian
|
||||
msg_ok "Created Service"
|
||||
|
||||
|
|
Loading…
Reference in New Issue