chore 📦: Update password encryption in setupacdc.yml
Changed the way passwords are encrypted in the setupacdc.yml file, now using a hardcoded value instead of environment variable. This change simplifies the configuration process but may impact security if not handled properly.
This commit is contained in:
@@ -46,7 +46,7 @@
|
|||||||
pct create {{ container_id }} {{ container_template }} \
|
pct create {{ container_id }} {{ container_template }} \
|
||||||
-ostype {{ container_ostype }} \
|
-ostype {{ container_ostype }} \
|
||||||
-hostname {{ container_hostname }} \
|
-hostname {{ container_hostname }} \
|
||||||
-password "{{ container_password }}" \
|
-password 123456 \
|
||||||
-ssh-public-keys {{ ssh_keys_file }} \
|
-ssh-public-keys {{ ssh_keys_file }} \
|
||||||
-cores {{ container_cores }} \
|
-cores {{ container_cores }} \
|
||||||
-memory {{ container_memory }} \
|
-memory {{ container_memory }} \
|
||||||
@@ -62,7 +62,7 @@
|
|||||||
args:
|
args:
|
||||||
creates: "/etc/pve/lxc/{{ container_id }}.conf"
|
creates: "/etc/pve/lxc/{{ container_id }}.conf"
|
||||||
# no_log: true
|
# no_log: true
|
||||||
|
# -password {{ container_password }} \
|
||||||
# -rootfs {{ container_storage }}:{{ container_id }}/vm-{{ container_id }}-disk-0.raw,size=7G \
|
# -rootfs {{ container_storage }}:{{ container_id }}/vm-{{ container_id }}-disk-0.raw,size=7G \
|
||||||
|
|
||||||
# -timezone: {{ localization_timezone }} \
|
# -timezone: {{ localization_timezone }} \
|
||||||
|
|||||||
Reference in New Issue
Block a user