| 1234567891011121314151617181920212223242526272829303132333435363738 |
- #!/bin/bash
- # info: command function
- # options: REQUIRED_ARGUMENT [OPTIONAL_ARGUMENT]
- #
- # example: v-new-command user dosomething
- #
- # Add detailed comments about what the function does and how
- # to use it here.
- #----------------------------------------------------------#
- # Variables & Functions #
- #----------------------------------------------------------#
- # Argument definition
- # Includes - Call any necessary libraries from $HESTIA/func/
- # Remember to add shellcheck headers!
- #----------------------------------------------------------#
- # Verifications #
- #----------------------------------------------------------#
- # Insert any necessary verification steps here
- # Perform verification if read-only mode is enabled
- # check_hestia_demo_mode
- #----------------------------------------------------------#
- # Action #
- #----------------------------------------------------------#
- # Insert action steps here
- #----------------------------------------------------------#
- # Hestia #
- #----------------------------------------------------------#
- # Insert logging or last stage service restarts here
|