Skip to content

Commit

Permalink
Merge pull request #1 from saltstack-formulas/master
Browse files Browse the repository at this point in the history
Syncing fork to the original repository
  • Loading branch information
jdkelleher authored May 4, 2019
2 parents 2893b0d + aaa1f5b commit 64285d4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ Available states
``apt.dist_upgrade``
--------------------

Runs ``apt-get dist-upgrade``.
Runs ``apt-get -y dist-upgrade``.

``apt.update``
--------------

Runs ``apt-get update``.
Runs ``apt-get -y update``.

``apt.upgrade``
---------------

Runs ``apt-get upgrade``.
Runs ``apt-get -y upgrade``.

``apt.repositories``
--------------------
Expand Down
2 changes: 1 addition & 1 deletion apt/dist_upgrade.sls
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apt-get dist-upgrade:
apt-get -y dist-upgrade:
cmd.wait:
- watch:
- file: /etc/apt/sources.list
Expand Down
2 changes: 1 addition & 1 deletion apt/update.sls
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apt-get update:
apt-get -y update:
cmd.wait:
- watch:
- file: /etc/apt/sources.list
Expand Down
2 changes: 1 addition & 1 deletion apt/upgrade.sls
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apt-get upgrade:
apt-get -y upgrade:
cmd.wait:
- watch:
- file: /etc/apt/sources.list
Expand Down

0 comments on commit 64285d4

Please sign in to comment.