diff options
author | Ben Howard <ben.howard@ubuntu.com> | 2015-10-09 13:23:39 -0600 |
---|---|---|
committer | usd-importer <ubuntu-server@lists.ubuntu.com> | 2015-10-11 21:39:02 +0000 |
commit | df6eef3405edf6eb5e643e1336d88dbc6a76e51e (patch) | |
tree | 33ff6d49184226e0c4a09699387c1ede9f4d552d | |
parent | 709a33c9857e05c76e7aba008a537253e282d742 (diff) | |
download | vyos-walinuxagent-df6eef3405edf6eb5e643e1336d88dbc6a76e51e.tar.gz vyos-walinuxagent-df6eef3405edf6eb5e643e1336d88dbc6a76e51e.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__() |