File tree 5 files changed +15
-8
lines changed
5 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -32,18 +32,18 @@ Now there will be at least one update:
32
32
```
33
33
auter --prep
34
34
prints "INFO: Running with: ./auter --prep Updates downloaded", /var/lib/auter/last-prep-auter
35
- /var/lib/auter/last-prep-auter contains update info
35
+ /var/lib/auter/last-prep-default contains update info
36
36
37
37
auter --apply
38
38
prints "INFO: Running with: /usr/bin/auter --apply; Applying updates; Updates complete, you may need to reboot for some updates to take effect
39
39
Run 'yum history info' or 'dnf history info' and verify that update was applied
40
- /var/lib/auter/last-update-auter contains update info
40
+ /var/lib/auter/last-update-default contains update info
41
41
42
42
auter --reboot
43
43
prints "INFO: Running with: ./auter --reboot; Rebooting server" followed by shutdown message
44
44
tail /var/log/messages should include text "root: custom pre reboot script ran"
45
45
cat /etc/cron.d/auter-postreboot-auter should show "@reboot root /usr/bin/auter --postreboot --config auter"
46
- After the reboot, tail /var/log/messages should include text "root: custom post reboot script ran"
46
+ 5 mins after the reboot, tail /var/log/messages should include text "root: custom post reboot script ran"
47
47
```
48
48
49
49
** Documentation**
Original file line number Diff line number Diff line change 1
1
Auter NEWS
2
2
3
+ 0.8
4
+ * Added ONLYINSTALLFROMPREP option
5
+
3
6
0.7
4
7
* Updated the .spec file according to Fedora's guidelines
5
8
* Moved scriptdir from /var/lib/auter to /etc/auter
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
#
3
- # auter is a yum-cron type package which will implement automatic updates on an
4
- # individual server with features such as predownloading packages & reboots.
3
+ # auter is a yum-cron type package which implements automatic updates on an
4
+ # individual server with features such as predownloading packages and reboots.
5
5
#
6
6
#
7
7
# Copyright 2016 Rackspace, Inc.
19
19
#
20
20
21
21
22
- readonly AUTERVERSION=" 0.7 "
22
+ readonly AUTERVERSION=" 0.8 "
23
23
readonly SCRIPTDIR=" /etc/auter"
24
24
readonly DATADIR=" /var/lib/auter"
25
25
readonly LOCKFILE=" ${DATADIR} /enabled"
Original file line number Diff line number Diff line change 2
2
3
3
# Set a tag which will be used for files related to this configuration.
4
4
# Log files and postreboot jobs will both be named using this tag.
5
- # IMPORTANT: This tag MUST BE UNIQUE on a system to avoid collusions .
5
+ # IMPORTANT: This tag MUST BE UNIQUE on a system.
6
6
CONFIGSET="default"
7
7
8
8
# Set whether server will reboot automatically after --apply. A warning
Original file line number Diff line number Diff line change 1
1
Name: auter
2
- Version: 0.7
2
+ Version: 0.8
3
3
Release: 1%{?dist }
4
4
Summary: Prepare and apply updates
5
5
License: ASL 2.0
@@ -95,6 +95,10 @@ exit 0
95
95
%endif
96
96
97
97
%changelog
98
+ *
Mon Nov 14 2016 Piers Cornwell <[email protected] > 0.8-1
99
+ - Release version 0.8
100
+ - Added ONLYINSTALLFROMPREP option
101
+
98
102
*
Thu Aug 04 2016 Piers Cornwell <[email protected] > 0.7-1
99
103
- Release version 0.7
100
104
- Updated the .spec file according to Fedora's guidelines
You can’t perform that action at this time.
0 commit comments