Compare commits

...

8 Commits

Author SHA1 Message Date
tteckster 5e26055264
Update alpine-vaultwarden-install.sh 2023-06-14 15:04:38 -04:00
tteckster 3acae959c6
Update alpine-vaultwarden-install.sh
fix `/etc/conf.d/vaultwarden`
2023-06-14 15:01:56 -04:00
tteckster 9a99cb6827
Update alpine-vaultwarden-install.sh
comment `/etc/conf.d/vaultwarden`
2023-06-14 14:44:28 -04:00
tteckster 46b8a2c529
Update alpine-vaultwarden.sh
3.18
2023-06-14 13:58:32 -04:00
tteckster e1037834d7
Update alpine-vaultwarden-install.sh
https://git.alpinelinux.org/aports/tree/testing/vaultwarden/vaultwarden.post-upgrade
2023-06-14 13:58:00 -04:00
tteckster a7157c64da
Update alpine-vaultwarden.sh
revert to 3.17
2023-06-14 13:31:55 -04:00
tteckster 3b7c98b0ce
Update bug_report.yaml 2023-06-14 13:12:21 -04:00
tteckster f791577124
Update README.md 2023-06-14 13:03:40 -04:00
3 changed files with 4 additions and 7 deletions

View File

@ -8,7 +8,7 @@ body:
- Prior to submitting, kindly search the closed issues to check if the problem you are reporting has already been addressed and resolved. If you come across a closed issue that pertains to your problem, please leave a comment on that issue instead of creating a new one. - Prior to submitting, kindly search the closed issues to check if the problem you are reporting has already been addressed and resolved. If you come across a closed issue that pertains to your problem, please leave a comment on that issue instead of creating a new one.
- Changing Linux distributions without confirming the proper functioning of default settings. - Changing Linux distributions without confirming the proper functioning of default settings.
- When encountering the error message `[ERROR] in line 24: exit code *: while executing command "$@" > /dev/null 2>&1`, make sure to run the script in verbose mode to accurately determine the underlying issue. - When encountering the error message `[ERROR] in line 24: exit code *: while executing command "$@" > /dev/null 2>&1`, make sure to run the script in verbose mode to accurately determine the underlying issue.
- For questions or feature/script requests, please share them in the [Discussions section.](https://github.com/tteck/Proxmox/discussions) - For suggestions, questions or feature/script requests, please share them in the [Discussions section.](https://github.com/tteck/Proxmox/discussions)
- type: textarea - type: textarea
id: bug id: bug
attributes: attributes:

View File

@ -1,6 +1,6 @@
<h3><p align="center"><a href="https://github.com/tteck/Proxmox/blob/main/.github/CONTRIBUTING.md">Contributing to Proxmox VE Helper Scripts</a></p></h3> <h3><p align="center"><a href="https://github.com/tteck/Proxmox/blob/main/.github/CONTRIBUTING.md">Contributing to Proxmox VE Helper Scripts</a></p></h3>
<sub>These scripts allow for the creation of a Linux container or virtual machine in an interactive manner, with options for both basic and advanced configurations. The basic setup uses default settings, while the advanced setup offers the possibility to modify the default settings. Using the whiptail command, the options are displayed in a dialog box format. The script then gathers and verifies the user's input in order to generate the final configuration of the container or virtual machine.</sub> <sub>These scripts enable users to build a Linux container or virtual machine in an interactive manner, offering options for both basic and advanced configurations. The basic setup utilizes default settings, whereas the advanced setup empowers users to alter these default settings. Through the use of the whiptail command, options are presented to users in a dialog box format. After the user makes their selections, the script collects and verifies the user's input in order to generate the final configuration for the container or virtual machine.</sub>
<h1><p align="center"><a href="https://tteck.github.io/Proxmox/">Proxmox VE Helper Scripts</a></p></h1> <h1><p align="center"><a href="https://tteck.github.io/Proxmox/">Proxmox VE Helper Scripts</a></p></h1>
<sub><div align="center"> Be cautious and thoroughly evaluate scripts and automation tasks obtained from external sources. </div></sub> <sub><div align="center"> Be cautious and thoroughly evaluate scripts and automation tasks obtained from external sources. </div></sub>

View File

@ -25,10 +25,7 @@ msg_ok "Installed Dependencies"
msg_info "Installing Alpine-Vaultwarden" msg_info "Installing Alpine-Vaultwarden"
$STD apk add vaultwarden $STD apk add vaultwarden
cat <<EOF >/etc/conf.d/vaultwarden cat <<EOF >>/etc/conf.d/vaultwarden
export DATA_FOLDER=/var/lib/vaultwarden
export WEB_VAULT_FOLDER=/var/lib/vaultwarden/web-vault
export WEB_VAULT_ENABLED=true
export ADMIN_TOKEN='' export ADMIN_TOKEN=''
export ROCKET_ADDRESS=0.0.0.0 export ROCKET_ADDRESS=0.0.0.0
EOF EOF