mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-07 21:16:57 +02:00
The previous CL r137 did not make the trick. Review URL: http://chromereview.prom.corp.google.com/1181012 git-svn-id: svn://chrome-svn/chromeos/trunk@138 06c00378-0e64-4dae-be16-12b19f9950a1
13 lines
312 B
Bash
Executable File
13 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# start sshd at os init time.
|
|
|
|
cp -pf sshd.conf /etc/init/sshd.conf
|
|
chmod 644 /etc/init/sshd.conf
|
|
chown 0:0 /etc/init/sshd.conf
|
|
|