diff options
author | Surojit Pathak <suro@yahoo-inc.com> | 2015-04-08 15:40:33 +0000 |
---|---|---|
committer | Surojit Pathak <suro@yahoo-inc.com> | 2015-04-08 15:40:33 +0000 |
commit | 5dcb0669e85fbd933d1f98602932a6e253bab7c9 (patch) | |
tree | ab94cceecacd93d94bafd90d7a50c8cc7d6856a8 | |
parent | 7ac709c4674e3db7ed7cc6c89765263e69d98dc0 (diff) | |
download | vyos-cloud-init-5dcb0669e85fbd933d1f98602932a6e253bab7c9.tar.gz vyos-cloud-init-5dcb0669e85fbd933d1f98602932a6e253bab7c9.zip |
Ensure cloud-local-init comes up before network
This is to prevent network service use residual config, if available,
viz. booting from snapshot image etc.
Removing the dependency on remote_fs service.
-rwxr-xr-x | sysvinit/redhat/cloud-init-local | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysvinit/redhat/cloud-init-local b/sysvinit/redhat/cloud-init-local index b53e0db2..b9caedbd 100755 --- a/sysvinit/redhat/cloud-init-local +++ b/sysvinit/redhat/cloud-init-local @@ -23,9 +23,12 @@ # See: http://www.novell.com/coolsolutions/feature/15380.html # Also based on dhcpd in RHEL (for comparison) +# Bring this up before network, S10 +#chkconfig: 2345 09 91 + ### BEGIN INIT INFO # Provides: cloud-init-local -# Required-Start: $local_fs $remote_fs +# Required-Start: $local_fs # Should-Start: $time # Required-Stop: # Should-Stop: |