You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This version of Debian does not have a version >= 2.0.16, therefore AutoUpdate is not available for it. The output from the above command will show you if the package is up-to-date.
113
-
114
-
### Debian 8 “Jessie” / Debian 9 “Stretch”
115
-
116
-
#### Check your current package version
117
-
118
-
```bash
119
-
apt list --installed | grep waagent
120
-
```
121
-
122
-
#### Update package cache
123
-
124
-
```bash
125
-
sudo apt-get -qq update
126
-
```
127
-
128
-
#### Install the latest package version
129
-
130
-
```bash
131
-
sudo apt-get install waagent
132
-
```
133
-
#### Ensure auto update is enabled
134
-
135
-
First, check to see if it is enabled:
136
-
137
-
```bash
138
-
cat /etc/waagent.conf
139
-
```
140
-
141
-
Find 'AutoUpdate.Enabled'. If you see this output, it is enabled:
142
-
143
-
```bash
144
-
# AutoUpdate.Enabled=y
145
-
AutoUpdate.Enabled=y
146
-
```
147
-
148
-
To enable run:
149
-
150
-
```bash
151
-
sudo sed -i 's/# AutoUpdate.Enabled=n/AutoUpdate.Enabled=y/g' /etc/waagent.conf
0 commit comments