Compare commits

..

5 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] 3b2b0c6440 fix(passwordpusher): dynamically read Ruby version in CT update_script too 2026-08-03 19:24:04 +00:00
copilot-swe-agent[bot] 12d40e309f fix(passwordpusher): dynamically read Ruby version from .ruby-version file 2026-08-03 19:20:51 +00:00
copilot-swe-agent[bot] dce2ebd712 Initial plan 2026-08-03 19:18:49 +00:00
community-scripts-pr-app[bot] 268a6957a7 Update CHANGELOG.md (#16236)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-08-03 14:58:21 +00:00
CanbiZ (MickLesk) e21a11c190 misc: read all interactive prompts from /dev/tty, drain leftover input on read failure (#16235) 2026-08-03 16:57:55 +02:00
3 changed files with 10 additions and 2 deletions
+6
View File
@@ -526,6 +526,12 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
- fix restore env in split pro [@johanngrobe](https://github.com/johanngrobe) ([#16228](https://github.com/community-scripts/ProxmoxVE/pull/16228))
### 💾 Core
- #### 🔧 Refactor
- core: read all interactive prompts from /dev/tty, drain leftover input on read failure (hotfix) [@MickLesk](https://github.com/MickLesk) ([#16235](https://github.com/community-scripts/ProxmoxVE/pull/16235))
## 2026-08-02
### 🆕 New Scripts
+1
View File
@@ -38,6 +38,7 @@ function update_script() {
create_backup /opt/passwordpusher/storage /opt/passwordpusher/.env.production
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "passwordpusher" "pglombardo/PasswordPusher" "tarball"
RUBY_VERSION="$(cat /opt/passwordpusher/.ruby-version)" RUBY_INSTALL_RAILS="false" setup_ruby
msg_info "Installing Gem Dependencies"
cd /opt/passwordpusher
+3 -2
View File
@@ -22,12 +22,13 @@ $STD apt install -y \
pkg-config
msg_ok "Installed Dependencies"
RUBY_VERSION="4.0.5" RUBY_INSTALL_RAILS="false" setup_ruby
NODE_VERSION="22" NODE_MODULE="yarn" setup_nodejs
export PATH="$HOME/.rbenv/shims:$HOME/.rbenv/bin:$PATH"
fetch_and_deploy_gh_release "passwordpusher" "pglombardo/PasswordPusher" "tarball"
RUBY_VERSION="$(cat /opt/passwordpusher/.ruby-version)" RUBY_INSTALL_RAILS="false" setup_ruby
export PATH="$HOME/.rbenv/shims:$HOME/.rbenv/bin:$PATH"
msg_info "Installing Gem Dependencies"
cd /opt/passwordpusher
$STD bundle config set --local without 'development test'