├── .gitignore ├── LICENSE ├── LaunchDaemons └── com.corp.swiftdeploy.plist ├── README.md ├── main script └── swiftdeploy.sh └── pkg install scripts ├── postinstall.sh └── preinstall.sh /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franton/SwiftDeploy/HEAD/LICENSE -------------------------------------------------------------------------------- /LaunchDaemons/com.corp.swiftdeploy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franton/SwiftDeploy/HEAD/LaunchDaemons/com.corp.swiftdeploy.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franton/SwiftDeploy/HEAD/README.md -------------------------------------------------------------------------------- /main script/swiftdeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franton/SwiftDeploy/HEAD/main script/swiftdeploy.sh -------------------------------------------------------------------------------- /pkg install scripts/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franton/SwiftDeploy/HEAD/pkg install scripts/postinstall.sh -------------------------------------------------------------------------------- /pkg install scripts/preinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franton/SwiftDeploy/HEAD/pkg install scripts/preinstall.sh --------------------------------------------------------------------------------