forked from ohhdemgirls/PlexInTheCloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0-sample-script-structure.sh
executable file
·60 lines (47 loc) · 1.12 KB
/
0-sample-script-structure.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
source vars
## INFO
# In general, this info spot is used to breifly describe the script.
#
# This script is simple a 'skel' used when writing new scripts.
# We try to stay to this structure to encourage uniform scripts.
# This uniformity makes it easier to modify, use, and share the scripts.
#
# In general, aim for ease of understanding and human readability over cleverness.
##
#######################
# Pre-Install
#######################
#######################
# Dependencies
#######################
#######################
# Setup
#######################
#######################
# Install
#######################
#######################
# Configure
#######################
#######################
# Structure
#######################
#######################
# Helper Scripts
#######################
#######################
# Systemd Service File
#######################
#######################
# Permissions
#######################
#######################
# Autostart
#######################
#######################
# Remote Access
#######################
#######################
# Misc.
#######################