Compare commits

..

8 Commits

Author SHA1 Message Date
MountyMapleSyrup b4ad53a9b9
Updating formatting for dependencies in lazylibrarian-install.sh 2024-04-03 12:04:29 -04:00
MountyMapleSyrup 7ea506f221
Update Author/Co-AUthor lazylibrarian-install.sh 2024-04-03 10:44:47 -04:00
MountyMapleSyrup e79fca16ba
Update lazylibrarian.sh 2024-04-03 10:44:24 -04:00
MountyMapleSyrup c81004cda3
Update Author for lazylibrarian.sh 2024-04-03 10:43:45 -04:00
MountyMapleSyrup 97fbea35c9
Update Author for lazylibrarian-install.sh 2024-04-03 10:43:08 -04:00
MountyMapleSyrup 1323542b95
Update lazylibrarian-install.sh to remove daemon-reload. it is not needed 2024-04-03 10:26:06 -04:00
MountyMapleSyrup 9a9bc560b5
Update Ascii art for lazylibrarian.sh 2024-04-03 10:24:21 -04:00
MountyMapleSyrup 14187a7767
undo previous CHANGELOG.md changes 2024-04-03 10:20:50 -04:00
3 changed files with 14 additions and 19 deletions

View File

@ -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. - 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

View File

@ -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: MountyMapleSyrup (MountyMapleSyrup) # Author: tteck
# 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

View File

@ -1,7 +1,8 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Copyright (c) 2021-2024 tteck # Copyright (c) 2021-2024 tteck
# Author: MountyMapleSyrup (MountyMapleSyrup) # Author: tteck
# Co-Author: MountyMapleSyrup (MountyMapleSyrup)
# License: MIT # License: MIT
# https://github.com/tteck/Proxmox/raw/main/LICENSE # 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 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
$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 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 Dependencies" msg_ok "Installed Python3 Dependencies"
msg_info "Installing LazyLibrarian" msg_info "Installing LazyLibrarian"
mkdir -p /opt/LazyLibrarian/ mkdir -p /opt/LazyLibrarian/
@ -47,7 +50,6 @@ 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"