- Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathgenericSetupScript
More file actions
Latest commit
executable file
·23 lines (18 loc) · 768 Bytes
/
Copy pathgenericSetupScript
File metadata and controls
executable file
·23 lines (18 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
# this script will install any package that can use
# the automated install and uninstall mechanisms provided by SetupHelper
# that is, no custom prompting for command line exection
# and no custom installation such as editing replacement files
#
# link the package's setup script to this one:
# ln -s /data/SetupHelper/genericSetupScript /data/<package name>/setup
# tell CommonResources to:
# prompt for install/uninstall
# auto install or auto uninstall
# then exit
# CommonResources will NOT return here !
standardPromptAndActions='yes'
#### following line incorporates helper resources into this script
source"/data/SetupHelper/HelperResources/IncludeHelpers"
#### end of lines to include helper resources
# never returns from CommonResources !