diff options
author | Ben Howard <ben.howard@ubuntu.com> | 2015-11-09 08:38:28 -0700 |
---|---|---|
committer | usd-importer <ubuntu-server@lists.ubuntu.com> | 2015-11-09 16:53:49 +0000 |
commit | 76afc31d4b16bea44b318cf2bb9355520e977817 (patch) | |
tree | 8b7f102151e9028c9db5336653bdcc5323d2e0cc /azurelinuxagent | |
parent | 044da46bfa995ba424abc007b5b4c8dfe447f5a6 (diff) | |
download | vyos-walinuxagent-76afc31d4b16bea44b318cf2bb9355520e977817.tar.gz vyos-walinuxagent-76afc31d4b16bea44b318cf2bb9355520e977817.zip |
disable-udev-rules-removal.patch
No DEP3 Subject or Description header found
Gbp-Pq: disable-udev-rules-removal.patch.
Diffstat (limited to 'azurelinuxagent')
-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__() |