forked from cloudfoundry/guardian
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support 'standalone' mode for gdn command
* Makes use of go-bindata for packaged assets (e.g. iptables, runc, etc.) * Extract and use packaged assets (only if they are provided!) * Add an 'empty' bindata.go for use in bosh-deployed environments [#138031889] Signed-off-by: Konstantinos Karampogias <[email protected]>
- Loading branch information
Showing
4 changed files
with
106 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package bindata | ||
|
||
// NB: This file will be overwritten when building an all-in-one gdn binary | ||
|
||
func AssetNames() []string { | ||
return nil | ||
} | ||
|
||
func RestoreAssets(dir, name string) error { | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.