enable rsyslog

This commit is contained in:
Dario B 2023-11-14 14:09:08 +01:00
parent 3ee1a13cfa
commit afa718eed9
2 changed files with 4 additions and 3 deletions

View file

@ -73,7 +73,8 @@ RUN sed -i '/imklog/s/^/#/' /etc/rsyslog.conf && \
chmod +x /entrypoint.sh chmod +x /entrypoint.sh
RUN systemctl disable pvestatd pvefw-logger corosync spiceproxy getty@tty1 postfix ssh.service pve-ha-lrm.service pve-ha-crm.service && \ RUN systemctl disable pvestatd pvefw-logger corosync spiceproxy getty@tty1 postfix ssh.service pve-ha-lrm.service pve-ha-crm.service && \
systemctl disable pve-firewall.service pvescheduler.service spiceproxy.service || echo ok systemctl disable pve-firewall.service pvescheduler.service spiceproxy.service || echo ok && \
systemctl enable rsyslog
#use setup.sh to start proxmox service #use setup.sh to start proxmox service
STOPSIGNAL SIGINT STOPSIGNAL SIGINT

4
run.sh
View file

@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
# shell vars set here will be overridden by same shell vars set in $BASE_PATH/.shell-vars file # shell vars set here will be overridden by same shell vars set in $BASE_PATH/.shell-vars file
BASE_PATH="/srv/pve" BASE_PATH="/srv/pve"
#IMAGE="neomediatech/pve:latest" IMAGE="neomediatech/pve:latest"
IMAGE="pve" #IMAGE="pve"
NAME="pve" NAME="pve"
VOLUMES="" # volumes set here will be added to volumes found in $BASE_PATH/.volumes file (if it exists) VOLUMES="" # volumes set here will be added to volumes found in $BASE_PATH/.volumes file (if it exists)
PORTS="-p 8006:8006" PORTS="-p 8006:8006"