dump-config.inc 197 B

123456789
  1. #!/bin/bash
  2. hestia_setup_dump-config() {
  3. if [ -f $HESTIA/conf/hestia.conf ]; then
  4. cat $HESTIA/conf/hestia.conf
  5. else
  6. echo "No config found. Use 'hestia setup init'"
  7. fi
  8. }