From 386650726a11763ef4bfcc955f8c0ba1b75cfb7d Mon Sep 17 00:00:00 2001 From: N Date: Wed, 17 Jul 2019 15:33:42 -0600 Subject: [PATCH] feat(formula): add metastate per community convention --- docs/README.rst | 8 ++++++++ salt/init.sls | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100755 salt/init.sls diff --git a/docs/README.rst b/docs/README.rst index 958ef0a50..14fc9eab7 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -45,6 +45,14 @@ Available states .. contents:: :local: +``salt`` +^^^^^^^^ + +*Meta-state (This is a state that includes other states)*. + +This sets up a pkg repo (some OSes), and will run the +minion, master, ssh, and formulas states. + ``salt.minion`` ^^^^^^^^^^^^^^^ diff --git a/salt/init.sls b/salt/init.sls new file mode 100755 index 000000000..b918ef9de --- /dev/null +++ b/salt/init.sls @@ -0,0 +1,7 @@ +base: + '*': + - salt.pkgrepo + - salt.minio + - salt.master + - salt.ssh + - salt.formulas