diff options
author | Ben Howard <ben.howard@ubuntu.com> | 2015-11-09 11:38:11 -0700 |
---|---|---|
committer | usd-importer <ubuntu-server@lists.ubuntu.com> | 2015-11-09 19:14:12 +0000 |
commit | ced1ac39333918fc659953c490a50a4a0db61507 (patch) | |
tree | 8de01945f4325ab519c3be5420beb028a160dde3 | |
parent | 4b56bc7b4fef93a98da0385ba54ced0248e1ea61 (diff) | |
download | vyos-walinuxagent-ced1ac39333918fc659953c490a50a4a0db61507.tar.gz vyos-walinuxagent-ced1ac39333918fc659953c490a50a4a0db61507.zip |
disable-udev-rules-removal.patch
No DEP3 Subject or Description header found
Gbp-Pq: disable-udev-rules-removal.patch.
-rw-r--r-- | azurelinuxagent/distro/ubuntu/osutil.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/azurelinuxagent/distro/ubuntu/osutil.py b/azurelinuxagent/distro/ubuntu/osutil.py index 1e51c2a..dcd730c 100644 --- a/azurelinuxagent/distro/ubuntu/osutil.py +++ b/azurelinuxagent/distro/ubuntu/osutil.py @@ -44,6 +44,9 @@ class Ubuntu14xOSUtil(DefaultOSUtil): def start_agent_service(self): return shellutil.run("service walinuxagent start", chk_err=False) + def remove_rules_files(self, *args): + return + class Ubuntu1204OSUtil(Ubuntu14xOSUtil): def __init__(self): super(Ubuntu1204OSUtil, self).__init__() |