diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-03 20:11:04 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-03 20:11:04 +0000 |
commit | 62bf2925283a349c8abd23f549acc5ec3027e452 (patch) | |
tree | c9519c056a69ff53a2860436c0ea06842fe18623 /chrome/installer/linux/common | |
parent | 37a682d9b3b5b77595f9dc61b5108a4a1af995b5 (diff) | |
download | chromium_src-62bf2925283a349c8abd23f549acc5ec3027e452.zip chromium_src-62bf2925283a349c8abd23f549acc5ec3027e452.tar.gz chromium_src-62bf2925283a349c8abd23f549acc5ec3027e452.tar.bz2 |
Linux: remove unused chrome/installer/linux/common/updater
BUG=none
R=mmoss@chromium.org
Review URL: https://codereview.chromium.org/25555004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226828 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/linux/common')
-rwxr-xr-x | chrome/installer/linux/common/updater | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/chrome/installer/linux/common/updater b/chrome/installer/linux/common/updater deleted file mode 100755 index 53a8a80..0000000 --- a/chrome/installer/linux/common/updater +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2009 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -# TODO -# - handle other distros (e.g. non-apt). - -@@include@@apt.include - -if [ -x "$APT_GET" ]; then - update_sources_lists - # If the repo was just added, force a cache update. - if [ $? -eq 1 ]; then - install_key - "$APT_GET" -qq update - fi - - # TODO(mmoss) detect if apt cache is stale (> 1 day) and force update? - - # Just try to install the packge. If it's already installed, apt-get won't do - # anything. - "$APT_GET" install -y -q @@PACKAGE@@ -fi - |