diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-30 23:35:47 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-30 23:35:47 -0300 |
commit | 96fa19991d4810590b71db73b5c6e5f2c69d9fbc (patch) | |
tree | 6d6cf13e800481b6b4320673a43c544526ac6f57 /lib | |
parent | 50d116ff974376404526097d6e996f6b1c9755de (diff) | |
download | hydra-96fa19991d4810590b71db73b5c6e5f2c69d9fbc.tar.gz hydra-96fa19991d4810590b71db73b5c6e5f2c69d9fbc.tar.bz2 |
Facts: filter transient states such as uptime
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hydra/deploy | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/hydra/deploy b/lib/hydra/deploy index 4c67cf8..3ef1dc0 100644 --- a/lib/hydra/deploy +++ b/lib/hydra/deploy @@ -244,7 +244,10 @@ function hydra_deploy_facts_collect { if [ "$1" == "local" ]; then $SUDO facter --yaml > $HYDRA_FOLDER/puppet/config/facts/$FQDN.yaml elif [ "$1" == "remote" ]; then - $HYDRA_CONNECT $FQDN sudo facter --yaml > $HYDRA_FOLDER/puppet/config/facts/$FQDN.yaml + $HYDRA_CONNECT $FQDN sudo facter --yaml | \ + grep -v -e "^ seconds" -e "^ hours" -e "^ days" -e "^ uptime" \ + -e "^ uptime" -e "^ system_uptime" -e "^ memoryfree" -e "^ swapfree_mb" \ + > $HYDRA_FOLDER/puppet/config/facts/$FQDN.yaml # Check result if [ "$?" != "0" ]; then |